Fancy
2024-06-19 c3d68f210192e2ec5bd06e4d21ede0bd8305fd63
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.dy.pmsGlobal.daoPlt;
 
import com.dy.pmsGlobal.pojoPlt.PltProductFile;
import org.apache.ibatis.annotations.Mapper;
 
@Mapper
public interface PltProductFileMapper {
 
    int deleteByPrimaryKey(Long id);
 
    int insertSelective(PltProductFile record);
 
    PltProductFile selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(PltProductFile record);
 
    int updateByPrimaryKey(PltProductFile record);
 
    void deleteByProId(Long proId);
 
}