刘小明
2024-09-24 2331d50cf12f0b8c882e6850d3a6a11baf4985e6
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
26
27
28
29
30
31
32
33
34
35
36
package com.dy.pmsGlobal.daoPlt;
 
import com.dy.pmsGlobal.pojoPlt.PltMaterial;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
import java.util.Map;
 
/**
* @author 小明
* @description 针对表【plt_material(物料表)】的数据库操作Mapper
* @createDate 2024-05-08 14:16:19
* @Entity com.dy.pmsGlobal.pojoPlt.PltMaterial
*/
@Mapper
public interface PltMaterialMapper {
 
    int deleteByPrimaryKey(Long id);
 
    int insert(PltMaterial record);
 
    int insertSelective(PltMaterial record);
 
    PltMaterial selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(PltMaterial record);
 
    int updateByPrimaryKey(PltMaterial record);
 
    Long selectSomeCount(Map<String,Object> params);
 
    List<PltMaterial> selectSome(Map<String,Object> params);
 
    int deleteLogicById(Long id);
 
}