| package com.dy.pmsGlobal.daoPlt; | 
|   | 
| import com.dy.pmsGlobal.pojoPlt.PltMaterial; | 
| import org.apache.ibatis.annotations.Mapper; | 
|   | 
| import java.util.List; | 
| import java.util.Map; | 
|   | 
| /** | 
| * @author 小明 | 
| * @description 针对表【plt_material(物料表)】的数据库操作Mapper | 
| * @createDate 2024-05-08 14:16:19 | 
| * @Entity com.dy.pmsGlobal.pojoPlt.PltMaterial | 
| */ | 
| @Mapper | 
| public interface PltMaterialMapper { | 
|   | 
|     int deleteByPrimaryKey(Long id); | 
|   | 
|     int insert(PltMaterial record); | 
|   | 
|     int insertSelective(PltMaterial record); | 
|   | 
|     PltMaterial selectByPrimaryKey(Long id); | 
|   | 
|     int updateByPrimaryKeySelective(PltMaterial record); | 
|   | 
|     int updateByPrimaryKey(PltMaterial record); | 
|   | 
|     Long selectSomeCount(Map<String,Object> params); | 
|   | 
|     List<PltMaterial> selectSome(Map<String,Object> params); | 
|   | 
|     int deleteLogicById(Long id); | 
|   | 
| } |