17 lines
472 B
Java
Raw Normal View History

2024-05-25 15:56:29 +08:00
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";
2024-05-27 18:25:07 +08:00
String PROJECT_SN = "projectSn";
String EXPIRED = "expired";
String ID = "id";
2024-05-25 15:56:29 +08:00
}