Fancy
2024-07-04 ddd56a8f37eb47d933a7064be9341feb8dbd8165
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.dy.pmsGlobal.daoPlt;
 
import com.dy.pmsGlobal.pojoPlt.PltProductFile;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
@Mapper
public interface PltProductFileMapper {
 
    int deleteByPrimaryKey(Long id);
 
    int insertSelective(PltProductFile record);
 
    PltProductFile selectByPrimaryKey(Long id);
 
    List<PltProductFile> selectDocuments(Long proId);
 
    int updateByPrimaryKeySelective(PltProductFile record);
 
    int updateByPrimaryKey(PltProductFile record);
 
    void deleteByProId(Long proId);
 
}