feat:增加无人机类型负载属性
This commit is contained in:
parent
1bd4e7e902
commit
9905d91ea2
|
|
@ -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)
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in New Issue