package com.dy.pmsGlobal.daoWo; import com.dy.pmsGlobal.pojoWo.WoDeviceLast; /** * @description 针对表【wo_device_last(设备最新状态表)】的数据库操作Mapper * @createDate 2024-06-19 10:21:40 * @Entity com.dy.pmsGlobal.pojoWo.WoDeviceLast */ public interface WoDeviceLastMapper { int deleteByPrimaryKey(Long id); int insert(WoDeviceLast record); int insertSelective(WoDeviceLast record); WoDeviceLast selectByPrimaryKey(Long id); int updateByPrimaryKeySelective(WoDeviceLast record); int updateByPrimaryKey(WoDeviceLast record); }