package com.dy.pmsGlobal.daoPlt; import com.dy.pmsGlobal.pojoPlt.PltProductQualityInspectionItems; import org.apache.ibatis.annotations.Mapper; import java.util.List; import java.util.Map; /** * @author 小明 * @description 针对表【plt_product_quality_inspection_items(产品品质检查项目表)】的数据库操作Mapper * @createDate 2024-05-07 13:46:45 * @Entity com.dy.pmsGlobal.pojoPlt.PltProductQualityInspectionItems */ @Mapper public interface PltProductQualityInspectionItemsMapper { int deleteByPrimaryKey(Long id); int insert(PltProductQualityInspectionItems record); int insertSelective(PltProductQualityInspectionItems record); PltProductQualityInspectionItems selectByPrimaryKey(Long id); int updateByPrimaryKeySelective(PltProductQualityInspectionItems record); int updateByPrimaryKey(PltProductQualityInspectionItems record); Long selectSomeCount(Map params); List selectSome(Map params); int deleteLogicById(Long id); }