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 selectByDeviceNo(String deviceNo); int updateByPrimaryKeySelective(StaDeviceLifeLast record); int updateByPrimaryKey(StaDeviceLifeLast record); int updateByDeviceNo(StaDeviceLifeLast lastLife); }