liuxm
2024-04-29 b8646a66b432920ba9c6b21964d0f132973b7dfc
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);
}