| | |
| | | |
| | | 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; |
| | |
| | | |
| | | int deleteLogicById(Long id); |
| | | |
| | | boolean exists(String name, 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<Map<String,Object>> selectByPlanName(@Param("planName") String planName); |
| | | |
| | | List<PrAssemblyPlan> selectAssyPlanList(PrAssemblyPlan params); |
| | | |
| | | List<PrAssemblyPlan> selectAssyPlanSimplify(PrAssemblyPlan params); |
| | | } |