DeviceAttributeMapper.java 511 B

1234567891011121314151617181920
  1. package com.bizmatics.persistence.mapper;
  2. import com.bizmatics.common.mvc.base.CrudMapper;
  3. import com.bizmatics.model.DeviceAttribute;
  4. import com.bizmatics.model.vo.MonitorDeviceListVO;
  5. import org.apache.ibatis.annotations.Param;
  6. import java.util.List;
  7. /**
  8. * <p>
  9. * 设备属性 Mapper 接口
  10. * </p>
  11. *
  12. * @author ya
  13. * @since 2021-09-24
  14. */
  15. public interface DeviceAttributeMapper extends CrudMapper<DeviceAttribute> {
  16. List<MonitorDeviceListVO> monitorDeviceList(@Param("siteName") String siteName);
  17. }