18 lines
323 B
Java
18 lines
323 B
Java
|
package cn.com.tenlion.usercenter.consts;
|
||
|
|
||
|
/**
|
||
|
* @ClassName: ISmartCityUserCenterConts
|
||
|
* @Description: 常量
|
||
|
* @Author: wanggeng
|
||
|
* @Date: 2021/12/7 11:00 AM
|
||
|
* @Version: 1.0
|
||
|
*/
|
||
|
public interface ISmartCityUserCenterConsts {
|
||
|
|
||
|
/**
|
||
|
* APP客户端名称
|
||
|
*/
|
||
|
String APP_CLIENT_NAME = "city-governance";
|
||
|
|
||
|
}
|