package com.ruoyi.dataInterchange.model;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import lombok.Data;
|
|
/**
|
* 上报报警督办请求
|
* @author zhibing.pu
|
* @Date 2025/3/3 15:52
|
*/
|
@Data
|
public class UPWarnMsgUrgeTodoReqInfo {
|
/**
|
* 子业务类型标识
|
*/
|
@JsonProperty("DATA_TYPE")
|
private String dataType;
|
/**
|
* 后续数据长度
|
*/
|
@JsonProperty("DATA_LENGTH")
|
private String dataLength;
|
/**
|
* 发起报警平台唯一编码
|
*/
|
@JsonProperty("PLATFORM_ID")
|
private String platformId;
|
/**
|
* 报警时间
|
*/
|
@JsonProperty("WARN_TIME")
|
private String warnTime;
|
/**
|
* 对应报警消息源子业务类型标识
|
*/
|
@JsonProperty("SOURCE_DATA_TYPE")
|
private String sourceDataType;
|
/**
|
* 对应报警督办请求消息源报文序号
|
*/
|
@JsonProperty("SOURCE_MSG_SN")
|
private String sourceMsgSn;
|
/**
|
* 督办截止时间
|
*/
|
@JsonProperty("SUPERVISION_ENDTIME")
|
private String supervisionEndTime;
|
/**
|
* 督办级别
|
* 0x00: 紧急
|
* 0x01: 一般
|
*/
|
@JsonProperty("SUPERVISION_LEVEL")
|
private String supervisionLevel;
|
/**
|
* 督办人
|
*/
|
@JsonProperty("SUPERVISOR")
|
private String supervisor;
|
/**
|
* 督办联系电话
|
*/
|
@JsonProperty("SUPERVISOR_TEL")
|
private String supervisorTel;
|
/**
|
* 督办联系电子邮件
|
*/
|
@JsonProperty("SUPERVISOR_EMAIL")
|
private String supervisorEmail;
|
|
}
|