Fancy
2024-06-25 7165632fcb7b3b782b8959cfe1e7e1c51872e228
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
package com.dy.pmsGlobal.daoSta;
 
import com.dy.pmsGlobal.pojoSta.StaDeviceLife;
import org.apache.ibatis.annotations.Mapper;
 
/**
* @author User
* @description 针对表【sta_device_life(设备生命周期表)】的数据库操作Mapper
* @createDate 2024-06-22 11:43:04
* @Entity com.dy.pmsGlobal.pojoSta.StaDeviceLife
*/
@Mapper
public interface StaDeviceLifeMapper {
 
    int deleteByPrimaryKey(Long id);
 
    int insert(StaDeviceLife record);
 
    int insertSelective(StaDeviceLife record);
 
    StaDeviceLife selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(StaDeviceLife record);
 
    int updateByPrimaryKey(StaDeviceLife record);
 
}