14 lines
381 B
Java
14 lines
381 B
Java
|
|
package com.zhgd.xmgl.constant;
|
||
|
|
|
||
|
|
public interface Cts {
|
||
|
|
String ASC = "asc";
|
||
|
|
String DESC = "desc";
|
||
|
|
String ORDER = "order";
|
||
|
|
String DEFAULT_PASSWORD = "a!12345678";
|
||
|
|
String QUERY_TYPE = "queryType";
|
||
|
|
String DEFAULT = "default";
|
||
|
|
String SN = "sn";
|
||
|
|
String PROJECT_LEVEL_AND_CHILDREN = "projectLevelAndChildren";
|
||
|
|
String PROJECT_LEVEL = "projectLevel";
|
||
|
|
}
|