feat:增加无人机类型负载属性

This commit is contained in:
gyb 2026-03-04 13:49:11 +08:00
parent 1bd4e7e902
commit 9905d91ea2
1 changed files with 14 additions and 0 deletions

View File

@ -3,6 +3,8 @@ package com.ruoyi.device.api.domain;
import lombok.Data;
import java.io.Serializable;
import java.util.List;
import java.util.Map;
/**
* 无人机类型通用枚举VO
@ -46,6 +48,18 @@ public class AirTypeGeneralEnumVO implements Serializable
/** 是否生效0-失效1-生效 */
private Integer enabled;
/** 槽位数 */
private Integer slotCount;
/** 负载数量限制 */
private Integer loadLimit;
/** 配件限制数量 */
private Integer accessoryLimit;
/** 可用负载列表(按系列分组) */
private Map<String, List<AirLoadTypeVO>> loadList;
/**
* 生成类型编码domain-type-subType
*/