大客流安保信息功能测试

This commit is contained in:
chenll 2025-06-06 21:49:28 +08:00
parent ae89bf37bc
commit f043d6f72f
6 changed files with 299 additions and 0 deletions

View File

@ -0,0 +1,62 @@
package com.dkl.large.domain;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.dkl.common.annotation.Excel;
import com.dkl.common.core.domain.BaseEntity;
/**
* 预警信息处置流程对象 dkl_warning_information_process
*
* @author Dkl
* @date 2025-06-17
*/
@Data
public class DklWarningInformationProcess extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** id */
private Long id;
/** 预警唯一标识符 */
@Excel(name = "预警唯一标识符")
private String warningSigns;
/** 委派人 */
@Excel(name = "委派人")
private Long delegatePersonnel;
/** 委派时间 */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "委派时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date delegationTime;
/** 委派部门 */
@Excel(name = "委派部门")
private Long delegationDept;
/** 处置措施 */
@Excel(name = "处置措施")
private String disposalMeasures;
/** 处置结果 */
@Excel(name = "处置结果")
private String disposalResults;
/** 处理状态 */
@Excel(name = "处理状态")
private String disposalStatus;
/** 删除标志0代表存在 2代表删除 */
private String delFlag;
/** 处置id */
@Excel(name = "处置id")
private Long handleId;
}

View File

@ -0,0 +1,42 @@
package com.dkl.large.domain.vo;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import java.util.Date;
/**
* 热力图数据返回实体类
*
* @author Falling
* @date 2025-06-17
*/
@Data
public class DeptWwsVo {
private static final long serialVersionUID = 1L;
/** 名称 */
private String deptname;
/** ID */
private Long deptid;
/** 地址 */
private String depturl;
/** 统一码 */
private String code;
/** 类型 0 /4 1/9*/
private String type;
/** 名称 */
private String name;
}

View File

@ -0,0 +1,42 @@
package com.dkl.large.domain.vo;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.dkl.common.annotation.Excel;
import com.dkl.common.core.domain.BaseEntity;
import lombok.Data;
import java.util.Date;
/**
* 监控点摄像头数据信息对象VO dkl_monitoring_camera_data
*
* @author Dkl
* @date 2025-06-10
*/
@Data
public class DklMonitoringCameraDataVo extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** 开始时间 */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date startTime;
/** 结束时间 */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date endTime;
/** 人数 */
private String numberPeople;
/** 数据条数 */
private String numberItems;
/** 标题 */
private String title;
/** 发生时间 */
private String acquisitionTime;
}

View File

@ -0,0 +1,54 @@
package com.dkl.large.domain.vo;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.dkl.common.annotation.Excel;
import lombok.Data;
import java.util.Date;
/**
* 热力图数据返回实体类
*
* @author Falling
* @date 2025-06-17
*/
@Data
public class HeatVo {
private static final long serialVersionUID = 1L;
/** 开始时间 */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date startTime;
/** 结束时间 */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date endTime;
/** 数量 */
private String numberPeople;
/** 等级 */
private String capacityFactor;
/** 经纬度 */
private String lng;
/** 经纬度 */
private String lat;
/** 监控点ID */
private String id;
/** 监控点类型 */
private String monitoringType;
/** 名称 */
private String pointName;
/** 地址 */
private String pointAddress;
/** 日期 */
private String dayTime;
}

View File

@ -0,0 +1,40 @@
package com.dkl.large.domain.vo;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import java.util.Date;
/**
* 大客流总数区域数据返回实体类
*
* @author Falling
* @date 2025-06-18
*/
@Data
public class RegionalVo {
private static final long serialVersionUID = 1L;
/** 开始时间 */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date startTime;
/** 结束时间 */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date endTime;
/** 数量 */
private String loadBearingMax;
/** 区域 */
private String regionname;
/** 类型 */
private String typename;
private String typeinfo;
private String regioninfo;
}

View File

@ -0,0 +1,59 @@
package com.dkl.large.domain.vo;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import java.util.Date;
/**
* 热力图数据返回实体类
*
* @author Falling
* @date 2025-06-17
*/
@Data
public class RiskVo {
private static final long serialVersionUID = 1L;
/** 开始时间 */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date startTime;
/** 结束时间 */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date endTime;
/** 名称 */
private String pointName;
/** 最大承载量 */
private String loadBearingMax;
/** 数量 */
private String numberPeople;
/** 等级 */
private String capacityFactor;
/** 监控点ID */
private String id;
/** 监控点类型 */
private String monitoringType;
/** 地址 */
private String pointAddress;
/** icon */
private String icon;
/** 名称 */
private String regionname;
/** 名称 */
private String pointRegion;
}