forked from rongchao/epmet-cloud-rizhao
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
1.3 KiB
89 lines
1.3 KiB
package com.epmet.dto;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.Date;
|
|
import lombok.Data;
|
|
|
|
|
|
/**
|
|
* 同步任务表
|
|
*
|
|
* @author generator generator@elink-cn.com
|
|
* @since v1.0.0 2022-11-08
|
|
*/
|
|
@Data
|
|
public class IcSyncJobDTO implements Serializable {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/**
|
|
* ID
|
|
*/
|
|
private String id;
|
|
|
|
/**
|
|
* 客户ID
|
|
*/
|
|
private String customerId;
|
|
|
|
/**
|
|
* 组织ID
|
|
*/
|
|
private String orgId;
|
|
|
|
/**
|
|
* 组织ID的上级
|
|
*/
|
|
private String pid;
|
|
|
|
/**
|
|
* 组织ID的所有上级,包括org_id
|
|
*/
|
|
private String orgIdPath;
|
|
|
|
/**
|
|
* 任务类型,残疾:disability;死亡:death;核酸:nat;
|
|
*/
|
|
private String jobType;
|
|
|
|
/**
|
|
* 操作员ID【staffId】
|
|
*/
|
|
private String operatorId;
|
|
|
|
/**
|
|
* 操作状态,等待中:waiting;进行中:processing;结束:finish
|
|
*/
|
|
private String operationStatus;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private Integer delFlag;
|
|
|
|
/**
|
|
* 乐观锁
|
|
*/
|
|
private Integer revision;
|
|
|
|
/**
|
|
* 创建人
|
|
*/
|
|
private String createdBy;
|
|
|
|
/**
|
|
* 创建时间
|
|
*/
|
|
private Date createdTime;
|
|
|
|
/**
|
|
* 更新人
|
|
*/
|
|
private String updatedBy;
|
|
|
|
/**
|
|
* 更新时间
|
|
*/
|
|
private Date updatedTime;
|
|
|
|
}
|