| | |
| | | */ |
| | | package org.sxkj.fw.area.vo; |
| | | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import org.sxkj.fw.area.entity.FwDefenseSceneEntity; |
| | | import org.springblade.core.tool.node.INode; |
| | | import lombok.Data; |
| | |
| | | * 防控场景表 视图实体类 |
| | | * |
| | | * @author lw |
| | | * @since 2026-01-07 |
| | | * @since 2026-01-08 |
| | | */ |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = true) |
| | | public class FwDefenseSceneVO extends FwDefenseSceneEntity { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @ApiModelProperty(value = "区域数量") |
| | | private Integer areaCount; |
| | | |
| | | @ApiModelProperty(value = "探测设备数量") |
| | | private Integer detectDeviceCount; |
| | | |
| | | @ApiModelProperty(value = "反制设备数量") |
| | | private Integer counterDeviceCount; |
| | | |
| | | } |