forked from luyan/epmet-cloud-lingshan
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.
27 lines
631 B
27 lines
631 B
package com.epmet.constant;
|
|
|
|
/**
|
|
* @author zhaoqifeng
|
|
* @dscription
|
|
* @date 2021/6/8 15:28
|
|
*/
|
|
public interface IcResiUserConstant {
|
|
|
|
String IC_RESI_USER = "ic_resi_user";
|
|
/**
|
|
* 居民端小程序的人:resi;数字社区的居民:icresi;单独录入:input; 导入:import
|
|
*/
|
|
String USER_TYPE_RESI="resi";
|
|
String USER_TYPE_IC_RESI="icresi";
|
|
String USER_TYPE_INPUT="input";
|
|
String USER_TYPE_IMPORT="import";
|
|
|
|
|
|
// origin:变动:change; 迁出:out; 死亡:died; 出生birth; 迁入:in
|
|
String CHANGE = "change";
|
|
String OUT = "out";
|
|
String DIED = "died";
|
|
String BIRTH = "birth";
|
|
String IN = "in";
|
|
|
|
}
|
|
|