预警信息处置功能开发
This commit is contained in:
parent
a2570a7cb1
commit
164a4af7a1
|
|
@ -0,0 +1,76 @@
|
||||||
|
package com.dkl.large.domain;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableField;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableId;
|
||||||
|
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_handle
|
||||||
|
*
|
||||||
|
* @author Dkl
|
||||||
|
* @date 2025-06-16
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class DklWarningInformationHandle extends BaseEntity
|
||||||
|
{
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
/** id */
|
||||||
|
@TableId(type = IdType.AUTO)
|
||||||
|
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;
|
||||||
|
|
||||||
|
/** 规则名称 */
|
||||||
|
@TableField(exist = false)
|
||||||
|
private int rulesId;
|
||||||
|
|
||||||
|
/** 预警id */
|
||||||
|
private int warningId;
|
||||||
|
|
||||||
|
/** 用户名称 */
|
||||||
|
@TableField(exist = false)
|
||||||
|
private String nickName;
|
||||||
|
|
||||||
|
/** 部门名称 */
|
||||||
|
@TableField(exist = false)
|
||||||
|
private String deptName;
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue