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
733 B
37 lines
733 B
/**
|
|
* Copyright (c) 2018 人人开源 All rights reserved.
|
|
* <p>
|
|
* https://www.renren.io
|
|
* <p>
|
|
* 版权所有,侵权必究!
|
|
*/
|
|
|
|
package com.epmet.constant;
|
|
|
|
/**
|
|
* 常量
|
|
* @author sun
|
|
* @since 1.0.0
|
|
*/
|
|
public interface GridVisitedConstant {
|
|
|
|
/**
|
|
* 查询异常
|
|
*/
|
|
String QUERY_EXCEPTION = "查询客户网格表数据失败";
|
|
|
|
/**
|
|
* 网格访问记录表新增数据失败
|
|
*/
|
|
String SAVE_VISITED = "网格访问记录表新增数据失败";
|
|
|
|
/**
|
|
* 最近访问网格表新增数据失败
|
|
*/
|
|
String SAVE_LATEST = "最近访问网格表新增数据失败";
|
|
|
|
/**
|
|
* tokenDto中的userId不能为空
|
|
*/
|
|
String USER_ID_NOTNULL="用户id不能为空";
|
|
}
|
|
|