package com.dy.pmsGlobal.daoWo;
|
|
import com.dy.pmsGlobal.pojoWo.WoDeviceLife;
|
|
/**
|
|
* @description 针对表【wo_device_life(设备生命周期表)】的数据库操作Mapper
|
* @createDate 2024-06-19 10:21:40
|
* @Entity com.dy.pmsGlobal.pojoWo.WoDeviceLife
|
*/
|
public interface WoDeviceLifeMapper {
|
|
int deleteByPrimaryKey(Long id);
|
|
int insert(WoDeviceLife record);
|
|
int insertSelective(WoDeviceLife record);
|
|
WoDeviceLife selectByPrimaryKey(Long id);
|
|
int updateByPrimaryKeySelective(WoDeviceLife record);
|
|
int updateByPrimaryKey(WoDeviceLife record);
|
|
}
|