Fancy
2024-06-25 0d89ea0d2632abe27c00dfc88943476f00e8804d
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);
 
}