/*
|
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
|
*
|
* Redistribution and use in source and binary forms, with or without
|
* modification, are permitted provided that the following conditions are met:
|
*
|
* Redistributions of source code must retain the above copyright notice,
|
* this list of conditions and the following disclaimer.
|
* Redistributions in binary form must reproduce the above copyright
|
* notice, this list of conditions and the following disclaimer in the
|
* documentation and/or other materials provided with the distribution.
|
* Neither the name of the dreamlu.net developer nor the names of its
|
* contributors may be used to endorse or promote products derived from
|
* this software without specific prior written permission.
|
* Author: Chill 庄骞 (smallchill@163.com)
|
*/
|
package org.sxkj.gd.workorder.dto;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* 星图接口-设备列表(无人机)数据对象
|
*/
|
@Data
|
public class GdXingtuPilotListDTO implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@ApiModelProperty("主键id")
|
private String id;
|
|
@ApiModelProperty("删除标记")
|
private String delFlag;
|
|
@ApiModelProperty("名称")
|
private String name;
|
|
@ApiModelProperty("型号")
|
private String type;
|
|
@ApiModelProperty("区域编码")
|
private String regionCode;
|
|
@ApiModelProperty("部门id")
|
private String deptId;
|
|
@ApiModelProperty("部门名称")
|
private String deptName;
|
|
@ApiModelProperty("设备序列号")
|
private String snCode;
|
|
@ApiModelProperty("经度")
|
private String longitude;
|
|
@ApiModelProperty("纬度")
|
private String latitude;
|
|
@ApiModelProperty("固件版本")
|
private String firmwareVersion;
|
|
@ApiModelProperty("购买时间")
|
private String buyTime;
|
|
@ApiModelProperty("使用人id")
|
private String userId;
|
|
@ApiModelProperty("使用人名称")
|
private String userName;
|
|
@ApiModelProperty("保管人")
|
private String keeper;
|
|
@ApiModelProperty("保管人电话")
|
private String keeperMobile;
|
|
@ApiModelProperty("负载序列号")
|
private String loadSnCode;
|
|
@ApiModelProperty("负载类型")
|
private String loadType;
|
|
@ApiModelProperty("负载设备集合")
|
private List<GdXingtuPayloadListDTO> loadList;
|
|
@ApiModelProperty("是否喷涂")
|
private Integer isPainting;
|
|
@ApiModelProperty("是否四合一模块")
|
private Integer isFourModule;
|
|
@ApiModelProperty("资质文件id")
|
private String certificateFileId;
|
|
@ApiModelProperty("资质文件地址")
|
private String certificateFileUrl;
|
|
@ApiModelProperty("附件id")
|
private String fileId;
|
|
@ApiModelProperty("附件地址")
|
private String fileUrl;
|
|
@ApiModelProperty("备注")
|
private String remark;
|
|
@ApiModelProperty("是否保险")
|
private Integer isInsurance;
|
|
@ApiModelProperty("保险信息")
|
private String insuranceInfo;
|
|
@ApiModelProperty("直播类型")
|
private String liveType;
|
|
@ApiModelProperty("直播地址")
|
private String liveUrl;
|
|
@ApiModelProperty("AI直播地址")
|
private String liveUrlAi;
|
|
@ApiModelProperty("机巢卡号")
|
private String airportSimCardNumber;
|
|
@ApiModelProperty("机巢流量包")
|
private String airportDataPackage;
|
|
@ApiModelProperty("流量包开始时间")
|
private String dataPackageValidityBegin;
|
|
@ApiModelProperty("流量包结束时间")
|
private String dataPackageValidityEnd;
|
|
@ApiModelProperty("工作空间id")
|
private String workspaceId;
|
|
@ApiModelProperty("状态")
|
private String status;
|
|
@ApiModelProperty("是否带机巢")
|
private Integer isWithDock;
|
|
@ApiModelProperty("父级序列号")
|
private String parentSn;
|
|
@ApiModelProperty("负载序号")
|
private String loadIndex;
|
|
@ApiModelProperty("可控范围")
|
private Integer controlledScope;
|
|
@ApiModelProperty("清晰度")
|
private Integer liveClarity;
|
}
|