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.
13 lines
263 B
13 lines
263 B
package com.epmet.constant;
|
|
|
|
/**
|
|
* @author zhaoqifeng
|
|
* @dscription
|
|
* @date 2021/6/8 15:28
|
|
*/
|
|
public interface PatrolConstant {
|
|
String PATROLLING = "patrolling";
|
|
String END = "end";
|
|
|
|
String NOT_END_MSG = "%s巡查尚未结束,请切换至%s查看。";
|
|
}
|
|
|