Fancy
2025-01-07 36fdd5fcdd57dc67c7728c572b8423bc0d3c9c88
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
package com.dy.pmsGlobal.daoSta;
 
import com.dy.pmsGlobal.pojoSta.StaDeviceLifeLast;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
/**
* @author User
* @description 针对表【sta_device_life_last(最新设备生命周期表)】的数据库操作Mapper
* @createDate 2024-07-06 10:41:09
* @Entity com.dy.pmsGlobal.pojoSta.StaDeviceLifeLast
*/
@Mapper
public interface StaDeviceLifeLastMapper {
 
    int deleteByPrimaryKey(Long id);
 
    int insert(StaDeviceLifeLast record);
 
    int insertSelective(StaDeviceLifeLast record);
 
    StaDeviceLifeLast selectByPrimaryKey(Long id);
 
    List<StaDeviceLifeLast> selectByDeviceNo(String deviceNo);
 
    int updateByPrimaryKeySelective(StaDeviceLifeLast record);
 
    int updateByPrimaryKey(StaDeviceLifeLast record);
 
    int updateByDeviceNo(StaDeviceLifeLast lastLife);
}