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.

37 lines
487 B

package com.epmet.constant;
/**
* @Description
* @IntefaceName UserConstant
* @Author wangc
* @date 2020.03.28 16:51
*/
public interface UserConstant {
/**
* 政府端
* */
String APP_GOV = "gov";
/**
* 居民端
* */
String APP_RESI = "resi";
/**
* 运营端
* */
String APP_OPER = "oper";
/**
* PC端
* */
String CLIENT_WEB = "web";
/**
* 微信端
* */
String CLIENT_WX = "wxmp";
}