DeviceAttributeService.java 296 B

12345678910111213141516
  1. package com.bizmatics.service;
  2. import com.bizmatics.model.DeviceAttribute;
  3. import com.bizmatics.common.mvc.base.CrudService;
  4. /**
  5. * <p>
  6. * 设备属性 服务类
  7. * </p>
  8. *
  9. * @author ya
  10. * @since 2021-09-23
  11. */
  12. public interface DeviceAttributeService extends CrudService<DeviceAttribute> {
  13. }