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.
16 lines
286 B
16 lines
286 B
3 years ago
|
package com.epmet.constant;
|
||
|
|
||
|
public interface EpidemicConstant {
|
||
|
|
||
|
/**
|
||
|
* 数据配置的dataCode
|
||
|
* 核酸检测
|
||
|
* 残疾人
|
||
|
* 死亡
|
||
|
*/
|
||
|
String DATA_CODE_NAT = "hesuan";
|
||
|
String DATA_CODE_DISABILITY = "canji";
|
||
|
String DATA_CODE_DEATH = "siwang";
|
||
|
|
||
|
}
|