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.
33 lines
822 B
33 lines
822 B
package com.epmet.constant;
|
|
|
|
public interface EpidemicConstant {
|
|
|
|
/**
|
|
* 数据配置的dataCode
|
|
* 核酸检测
|
|
* 残疾人
|
|
* 死亡
|
|
* 疫苗接种
|
|
*/
|
|
String DATA_CODE_NAT = "hesuan";
|
|
String DATA_CODE_DISABILITY = "canji";
|
|
String DATA_CODE_DEATH = "siwang";
|
|
String DATA_CODE_VACCINE = "yimiaojiezhong";
|
|
|
|
/**
|
|
* ic_sync_job 任务类型
|
|
* 核酸检测
|
|
* 疫苗接种
|
|
* 行程上报
|
|
*/
|
|
String JOB_TYPE_NAT = "nat";
|
|
String JOB_TYPE_VACCINE = "vaccine";
|
|
String JOB_TYPE_TRIP_REPORT = "trip_report";
|
|
// 居民信息对比
|
|
String JOB_TYPE_COMPARISON_RESI = "comparison_resi";
|
|
|
|
String OPERATION_STATUS_WAITING = "waiting";
|
|
String OPERATION_STATUS_PROCESSING = "processing";
|
|
String OPERATION_STATUS_FINISH = "finish";
|
|
|
|
}
|
|
|