吉安感知网项目-后端
rain
2026-01-08 f5102f40da5f125985ecb7955bd1471040296f72
drone-service/drone-fw/src/main/java/org/sxkj/fw/detection/entity/FwDeviceConfigEntity.java
@@ -17,6 +17,7 @@
package org.sxkj.fw.detection.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@@ -38,26 +39,31 @@
   /**
    * 设备ID(tz_device_deploy.id)
    */
   @TableField("device_id")
   @ApiModelProperty(value = "设备ID(tz_device_deploy.id)")
   private Long deviceId;
   /**
    * 配置版本号
    */
   @TableField("config_version")
   @ApiModelProperty(value = "配置版本号")
   private Integer configVersion;
   /**
    * 是否最新 1最新 0历史
    */
   @TableField("is_latest")
   @ApiModelProperty(value = "是否最新 1最新 0历史")
   private Byte isLatest;
   /**
    * 全部参数(JSON)
    */
   @TableField("config_json")
   @ApiModelProperty(value = "全部参数(JSON)")
   private String configJson;
   /**
    * 区域编码
    */
   @TableField("area_code")
   @ApiModelProperty(value = "区域编码")
   private String areaCode;