package org.sxkj.fw.cockpit.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* 场景管理统计视图对象
|
*
|
* @author lw
|
* @since 2026-02-06
|
*/
|
@Data
|
public class SceneManageStatisticsVO implements Serializable {
|
|
/**
|
* 场景管理数量
|
*/
|
@ApiModelProperty(value = "场景管理数量")
|
private Integer sceneManageCount;
|
|
/**
|
* 区域数量
|
*/
|
@ApiModelProperty(value = "区域数量")
|
private Integer areaCount;
|
}
|