liuxm
2024-05-23 fd3819392c0c3fafc4f1d7d254b952207ddca3b5
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);
 
}