| | |
| | | */ |
| | | package org.sxkj.fw.detection.vo; |
| | | |
| | | import org.sxkj.fw.detection.entity.FwDeviceConfigEntity; |
| | | import org.springblade.core.tool.node.INode; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * 设备配置表 视图实体类 |
| | |
| | | * @since 2026-01-08 |
| | | */ |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = true) |
| | | public class FwDeviceConfigVO extends FwDeviceConfigEntity { |
| | | public class FwDeviceConfigVO { |
| | | private static final long serialVersionUID = 1L; |
| | | @ApiModelProperty("主键id") |
| | | private Long id; |
| | | /** |
| | | * 设备ID(tz_device_deploy.id) |
| | | */ |
| | | @ApiModelProperty(value = "设备ID(tz_device_deploy.id)") |
| | | private Long deviceId; |
| | | /** |
| | | * 配置版本号 |
| | | */ |
| | | @ApiModelProperty(value = "配置版本号") |
| | | private Integer configVersion; |
| | | /** |
| | | * 是否最新 1最新 0历史 |
| | | */ |
| | | @ApiModelProperty(value = "是否最新 1最新 0历史") |
| | | private Byte isLatest; |
| | | /** |
| | | * 全部参数(JSON) |
| | | */ |
| | | @ApiModelProperty(value = "全部参数(JSON)") |
| | | private String configJson; |
| | | /** |
| | | * 区域编码 |
| | | */ |
| | | @ApiModelProperty(value = "区域编码") |
| | | private String areaCode; |
| | | /** |
| | | * 创建人 |
| | | */ |
| | | @ApiModelProperty(value = "创建人") |
| | | private Long createUser; |
| | | /** |
| | | * 创建部门 |
| | | */ |
| | | @ApiModelProperty(value = "创建部门") |
| | | private Long createDept; |
| | | /** |
| | | * 创建时间 |
| | | */ |
| | | @ApiModelProperty(value = "创建时间") |
| | | private Date createTime; |
| | | /** |
| | | * 更新人 |
| | | */ |
| | | @ApiModelProperty(value = "更新人") |
| | | private Long updateUser; |
| | | /** |
| | | * 更新时间 |
| | | */ |
| | | @ApiModelProperty(value = "更新时间") |
| | | private Date updateTime; |
| | | /** |
| | | * 状态(0正常 1停用) |
| | | */ |
| | | @ApiModelProperty(value = "状态(0正常 1停用)") |
| | | private Integer status; |
| | | /** |
| | | * 删除标志(0存在 1删除) |
| | | */ |
| | | @ApiModelProperty(value = "删除标志(0存在 1删除)") |
| | | private Integer isDeleted; |
| | | |
| | | } |