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.
59 lines
1.1 KiB
59 lines
1.1 KiB
package com.epmet.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
import com.epmet.commons.mybatis.entity.BaseEpmetEntity;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* 同步任务表
|
|
*
|
|
* @author generator generator@elink-cn.com
|
|
* @since v1.0.0 2022-11-08
|
|
*/
|
|
@Data
|
|
@EqualsAndHashCode(callSuper=false)
|
|
@TableName("ic_sync_job")
|
|
public class IcSyncJobEntity extends BaseEpmetEntity {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/**
|
|
* 客户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;
|
|
|
|
}
|
|
|