刘小明
2024-06-19 0d9f926ceac74c9fba899f4b76d113fd281579a5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.dy.pmsGlobal.daoWo;
 
import com.dy.pmsGlobal.pojoWo.WoDevOpsTaskClaimInfo;
 
/**
 
* @description 针对表【wo_dev_ops_task_claim_info(安装运维任务认领表)】的数据库操作Mapper
* @createDate 2024-06-19 10:21:40
* @Entity com.dy.pmsGlobal.pojoWo.WoDevOpsTaskClaimInfo
*/
public interface WoDevOpsTaskClaimInfoMapper {
 
    int deleteByPrimaryKey(Long id);
 
    int insert(WoDevOpsTaskClaimInfo record);
 
    int insertSelective(WoDevOpsTaskClaimInfo record);
 
    WoDevOpsTaskClaimInfo selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(WoDevOpsTaskClaimInfo record);
 
    int updateByPrimaryKey(WoDevOpsTaskClaimInfo record);
 
}