DeviceAttributeMapper.java 779 B

1234567891011121314151617181920212223242526
  1. package com.bizmatics.persistence.mapper;
  2. import com.bizmatics.model.Device;
  3. import com.bizmatics.model.DeviceAttribute;
  4. import com.bizmatics.common.mvc.base.CrudMapper;
  5. import com.bizmatics.model.vo.DeviceAttributeVo;
  6. import org.apache.ibatis.annotations.Param;
  7. import java.util.Date;
  8. import java.util.List;
  9. /**
  10. * <p>
  11. * 设备属性 Mapper 接口
  12. * </p>
  13. *
  14. * @author ya
  15. * @since 2021-09-24
  16. */
  17. public interface DeviceAttributeMapper extends CrudMapper<DeviceAttribute> {
  18. List<DeviceAttributeVo> deviceList(@Param("deviceCode") String deviceCode,
  19. @Param("id") Integer id,
  20. @Param("siteId") Integer siteId,
  21. @Param("deviceType") Integer deviceType);
  22. }