liuxm
2024-04-29 115c5ebd7b020eda6185b92b2eb84377a2a6ea7a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 insert(PltProductFile record);
 
    int insertSelective(PltProductFile record);
 
    PltProductFile selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(PltProductFile record);
 
    int updateByPrimaryKey(PltProductFile record);
}