刘小明
2024-09-24 2331d50cf12f0b8c882e6850d3a6a11baf4985e6
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
package com.dy.pmsGlobal.daoSta;
 
import com.dy.pmsGlobal.pojoSta.StaRepairInfo;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
/**
* @author User
* @description 针对表【sta_repair_info】的数据库操作Mapper
* @createDate 2024-06-20 11:31:20
* @Entity com.dy.pmsGlobal.pojoSta.StaRepairInfo
*/
@Mapper
public interface StaRepairInfoMapper {
 
    int deleteByPrimaryKey(Long id);
 
    int insert(StaRepairInfo record);
 
    int insertSelective(StaRepairInfo record);
 
    StaRepairInfo selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(StaRepairInfo record);
 
    int updateByPrimaryKey(StaRepairInfo record);
 
    List<StaRepairInfo> selectByDeviceNo(String deviceNo);
}