package com.dy.pmsGlobal.daoPr; 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 params); List selectSome(Map 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); List selectAssyPlanList(PrAssemblyPlan params); List selectAssyPlanSimplify(PrAssemblyPlan params); }