package com.dy.pmsGlobal.daoPr; import com.dy.pmsGlobal.pojoPr.PrEquipLifeCycle; import org.apache.ibatis.annotations.Mapper; import java.util.List; import java.util.Map; /** * @author 小明 * @description 针对表【pr_equip_life_cycle(设备生命周期表)】的数据库操作Mapper * @createDate 2024-05-29 15:53:10 * @Entity com.dy.pmsGlobal.pojoPr.PrEquipLifeCycle */ @Mapper public interface PrEquipLifeCycleMapper { int deleteByPrimaryKey(Long id); int insert(PrEquipLifeCycle record); int insertSelective(PrEquipLifeCycle record); PrEquipLifeCycle selectByPrimaryKey(Long id); int updateByPrimaryKeySelective(PrEquipLifeCycle record); int updateByPrimaryKey(PrEquipLifeCycle record); Long selectSomeCount(Map params); List selectSome(Map params); int deleteLogicById(Long id); }