- package com.bizmatics.service;
- import com.bizmatics.model.DeviceAttribute;
- import com.bizmatics.common.mvc.base.CrudService;
- /**
- * <p>
- * 设备属性 服务类
- * </p>
- *
- * @author ya
- * @since 2021-09-23
- */
- public interface DeviceAttributeService extends CrudService<DeviceAttribute> {
- }
|