package com.dy.pmsGlobal.daoPr; import com.dy.pmsGlobal.pojoPr.PrEquip; import org.apache.ibatis.annotations.Mapper; import java.util.List; import java.util.Map; /** * @author 小明 * @description 针对表【pr_equip(设备表)】的数据库操作Mapper * @createDate 2024-05-29 15:53:10 * @Entity com.dy.pmsGlobal.pojoPr.PrEquip */ @Mapper public interface PrEquipMapper { int deleteByPrimaryKey(Long id); int insert(PrEquip record); int insertSelective(PrEquip record); PrEquip selectByPrimaryKey(Long id); int updateByPrimaryKeySelective(PrEquip record); int updateByPrimaryKey(PrEquip record); Long selectSomeCount(Map params); List selectSome(Map params); int insertBatch(List list); List selectByBatchId(Long batchId); void deleteByBatchId(Long batchId); }