liuxm
2024-05-15 c5f04d7720063b4f7e9e8af1d8bf2c98d69417df
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
37
package com.dy.pmsGlobal.daoPlt;
 
import com.dy.pmsGlobal.pojoPlt.PltProductionLine;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
import java.util.Map;
 
/**
* @author 小明
* @description 针对表【plt_production_line(生产线表)】的数据库操作Mapper
* @createDate 2024-05-09 19:27:38
* @Entity com.dy.pmsGlobal.pojoPlt.PltProductionLine
*/
@Mapper
public interface PltProductionLineMapper {
 
    int deleteByPrimaryKey(Long id);
 
    int insert(PltProductionLine record);
 
    int insertSelective(PltProductionLine record);
 
    PltProductionLine selectByPrimaryKey(Long id);
    Long selectByNameId(Long id,String name);
 
    int updateByPrimaryKeySelective(PltProductionLine record);
 
    int updateByPrimaryKey(PltProductionLine record);
 
    Long selectSomeCount(Map<String,Object> params);
 
    List<PltProductionLine> selectSome(Map<String,Object> params);
 
    int deleteLogicById(Long id);
 
}