package com.dy.pmsGlobal.daoPr; import com.dy.pmsGlobal.pojoPr.PrDevOpsTaskClaimInfo; import org.apache.ibatis.annotations.Mapper; import java.util.List; import java.util.Map; /** * @author 小明 * @description 针对表【pr_dev_ops_task_claim_info(安装运维任务认领表)】的数据库操作Mapper * @createDate 2024-05-29 15:53:10 * @Entity com.dy.pmsGlobal.pojoPr.PrDevOpsTaskClaimInfo */ @Mapper public interface PrDevOpsTaskClaimInfoMapper { int deleteByPrimaryKey(Long id); int insert(PrDevOpsTaskClaimInfo record); int insertSelective(PrDevOpsTaskClaimInfo record); PrDevOpsTaskClaimInfo selectByPrimaryKey(Long id); int updateByPrimaryKeySelective(PrDevOpsTaskClaimInfo record); int updateByPrimaryKey(PrDevOpsTaskClaimInfo record); Long selectSomeCount(Map params); List selectSome(Map params); int deleteLogicById(Long id); }