package com.dy.pmsGlobal.daoSta; import com.dy.pmsGlobal.pojoSta.StaDeviceLast; import org.apache.ibatis.annotations.Mapper; /** * @author User * @description 针对表【sta_device_last(设备最新状态表)】的数据库操作Mapper * @createDate 2024-06-22 11:43:04 * @Entity com.dy.pmsGlobal.pojoSta.StaDeviceLast */ @Mapper public interface StaDeviceLastMapper { int deleteByPrimaryKey(Long id); int insert(StaDeviceLast record); int insertSelective(StaDeviceLast record); StaDeviceLast selectByPrimaryKey(Long id); int updateByPrimaryKeySelective(StaDeviceLast record); int updateByPrimaryKey(StaDeviceLast record); StaDeviceLast selectByDeviceNo(String s); }