package com.dy.pmsGlobal.daoPlt;
|
|
import com.dy.pmsGlobal.pojoPlt.PltProductScrappingReason;
|
import org.apache.ibatis.annotations.Mapper;
|
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* @author 小明
|
* @description 针对表【plt_product_scrapping_reason(产品设备报废原因表)】的数据库操作Mapper
|
* @createDate 2024-05-07 13:46:45
|
* @Entity com.dy.pmsGlobal.pojoPlt.PltProductScrappingReason
|
*/
|
@Mapper
|
public interface PltProductScrappingReasonMapper {
|
|
int insertSelective(PltProductScrappingReason record);
|
|
PltProductScrappingReason selectByPrimaryKey(Long id);
|
|
int updateByPrimaryKeySelective(PltProductScrappingReason record);
|
|
|
Long selectSomeCount(Map<String,Object> params);
|
|
List<PltProductScrappingReason> selectSome(Map<String,Object> params);
|
|
int deleteLogicById(Long id);
|
|
}
|