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

This commit is contained in:
gyb 2026-03-04 16:41:03 +08:00
parent a61ea65bff
commit 93129f4956
1 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,28 @@
package com.ruoyi.device.api.domain;
import lombok.Data;
import java.io.Serializable;
/**
* 无人机负载类型VO
*
* @author 拓恒
* @date 2026-03-04
*/
@Data
public class AirLoadTypeVO implements Serializable {
private static final long serialVersionUID = 1L;
/** 负载名称 */
private String loadName;
/** 负载系列 */
private String loadSeries;
/** 负载分类0-负载1-配件 */
private Integer loadCategory;
/** 槽1、2 或者-1-1代表全部槽位可用 */
private Integer slot;
}