liuxm
2024-06-04 eeee3d8fa04aff41db6ee2418468e7371ecad57d
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.daoPr;
 
import com.dy.pmsGlobal.pojoPr.PrProductionProcess;
import org.apache.ibatis.annotations.MapKey;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
import java.util.Map;
 
/**
* @author 小明
* @description 针对表【pr_production_process(生产流程表)】的数据库操作Mapper
* @createDate 2024-05-25 09:22:03
* @Entity com.dy.pmsGlobal.pojoPr.PrProductionProcess
*/
@Mapper
public interface PrProductionProcessMapper {
 
    int deleteByPrimaryKey(Long id);
 
    int insertSelective(PrProductionProcess record);
 
    PrProductionProcess selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(PrProductionProcess record);
 
    Long selectSomeCount(Map<String,Object> params);
 
    List<PrProductionProcess> selectSome(Map<String,Object> params);
 
    int deleteLogicById(Long id);
 
    @MapKey("id")
    List<Map<String,String>> queryAll(Long proId);
 
    boolean exists(String name, Long id);
}