fit:设备分类接口增加,分类分组

This commit is contained in:
gyb 2026-02-09 13:44:02 +08:00
parent 1de86e9dc0
commit ed04b6c4c0
3 changed files with 41 additions and 2 deletions

View File

@ -0,0 +1,31 @@
package com.ruoyi.device.api.domain;
import com.ruoyi.common.core.web.domain.BaseEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.util.List;
/**
* 无人机分类分组VO
*
* @author ruoyi
* @date 2026-02-09
*/
@EqualsAndHashCode(callSuper = true)
@Data
public class AirTypeCategoryGroupVO extends BaseEntity {
private static final long serialVersionUID = 1L;
/**
* 分类标签
*/
private String category;
/**
* 无人机类型列表
*/
private List<AirTypeGeneralEnumVO> airTypeList;
}

View File

@ -36,4 +36,10 @@ public class AirTypeGeneralEnumVO implements Serializable
/** 图标 */
private String icon;
/** 分类 */
private String category;
/** 是否生效0-失效1-生效 */
private Integer enabled;
}

View File

@ -28,8 +28,10 @@ public class AirTypeVendorGroupVO extends BaseEntity {
private String value;
/**
* 无人机类型列表
* 无人机分类分组列表
*/
private List<AirTypeGeneralEnumVO> airTypeList;
private List<AirTypeCategoryGroupVO> categoryGroups;
}