package com.dy.pmsGlobal.daoPlt; import com.dy.pmsGlobal.pojoPlt.PltProductTestInspectionItems; import org.apache.ibatis.annotations.Mapper; import java.util.List; import java.util.Map; /** * @description 针对表【plt_product_test_inspection_items(产品测试检查项目表)】的数据库操作Mapper * @createDate 2024-06-19 09:05:53 * @Entity com.dy.pmsGlobal.pojoPlt.PltProductTestInspectionItems */ @Mapper public interface PltProductTestInspectionItemsMapper { int deleteByPrimaryKey(Long id); int insert(PltProductTestInspectionItems record); int insertSelective(PltProductTestInspectionItems record); PltProductTestInspectionItems selectByPrimaryKey(Long id); int updateByPrimaryKeySelective(PltProductTestInspectionItems record); int updateByPrimaryKey(PltProductTestInspectionItems record); Long selectSomeCount(Map params); List selectSome(Map params); int deleteLogicById(Long id); }