Fancy
2024-09-14 8d9286db8d1388019ffd326fc17f36f78080b594
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package com.dy.pmsGlobal.daoPr;
 
import cn.hutool.json.JSONObject;
import com.dy.pmsGlobal.pojoPr.PrAssemblyPlan;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
import java.util.Map;
 
/**
* @author 小明
* @description 针对表【pr_assembly_plan(组装生产任务计划)】的数据库操作Mapper
* @createDate 2024-05-29 15:53:10
* @Entity com.dy.pmsGlobal.pojoPr.PrAssemblyPlan
*/
@Mapper
public interface PrAssemblyPlanMapper {
 
    int deleteByPrimaryKey(Long id);
 
    int insert(PrAssemblyPlan record);
 
    int insertSelective(PrAssemblyPlan record);
 
    PrAssemblyPlan selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(PrAssemblyPlan record);
 
    int updateByPrimaryKey(PrAssemblyPlan record);
 
    Long selectSomeCount(Map<String,Object> params);
 
    List<PrAssemblyPlan> selectSome(Map<String,Object> params);
 
    int deleteLogicById(Long id);
 
    boolean exists(@Param("name") String name, @Param("id") Long id);
 
    PrAssemblyPlan selectByDeviceNo(@Param("proCode") String proCode,@Param("batchNumber") String batchNumber);
 
    Long countByPlanIdAndNodeId(@Param("planId") Long planId,@Param("nodeId") Long nodeId);
 
    List<JSONObject> selectByPlanName(@Param("planName") String planName);
 
    PrAssemblyPlan selectByBatchId(@Param("batchId") Long batchId);
 
    List<JSONObject> queryPlanList();
 
    List<PrAssemblyPlan> selectAssyPlanList(PrAssemblyPlan params);
 
    List<PrAssemblyPlan> selectAssyPlanSimplify(PrAssemblyPlan params);
}