刘小明
2024-07-26 9b63b9770cd02ca73c20196a3e02f971bc6e70e8
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.dy.pmsGlobal.daoPr;
 
import com.dy.pmsGlobal.pojoPr.PrDevice;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
import java.util.Map;
 
/**
* @author 小明
* @description 针对表【pr_device(设备表)】的数据库操作Mapper
* @createDate 2024-05-29 15:53:10
* @Entity com.dy.pmsGlobal.pojoPr.PrDevice
*/
@Mapper
public interface PrDeviceMapper {
 
    int deleteByPrimaryKey(Long id);
 
    int insert(PrDevice record);
 
    int insertSelective(PrDevice record);
 
    PrDevice selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(PrDevice record);
 
    int updateByPrimaryKey(PrDevice record);
 
    Long selectSomeCount(Map<String,Object> params);
 
    List<PrDevice> selectSome(Map<String,Object> params);
 
    int insertBatch(List<PrDevice> list);
 
    List<PrDevice> selectByBatchId(Long batchId);
 
    void deleteByBatchId(Long batchId);
 
}