forked from rongchao/epmet-cloud-rizhao
5 changed files with 56 additions and 0 deletions
@ -0,0 +1,8 @@ |
|||
package com.epmet.dataaggre.constant; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2020/12/25 上午10:55 |
|||
*/ |
|||
public interface GroupConstant { |
|||
} |
@ -0,0 +1,8 @@ |
|||
package com.epmet.dataaggre.constant; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2020/12/25 上午10:54 |
|||
*/ |
|||
public interface IssueConstant { |
|||
} |
@ -0,0 +1,8 @@ |
|||
package com.epmet.dataaggre.constant; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2020/12/25 上午10:55 |
|||
*/ |
|||
public interface OrgConstant { |
|||
} |
@ -0,0 +1,24 @@ |
|||
package com.epmet.dataaggre.constant; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2020/12/25 上午10:47 |
|||
*/ |
|||
public interface ProjectConstant { |
|||
|
|||
/** |
|||
* 排序类型(创建时间:create 更新时间:update 涉及部门最多:department 耗时最长:date 处理次数最多:count) |
|||
*/ |
|||
String CREATE_TIME = "create"; |
|||
String UPDATE_TIME = "update"; |
|||
String REFER_DEPT = "department"; |
|||
String ELAPSED_TIME = "date"; |
|||
String DISPOSE_COUNT = "count"; |
|||
|
|||
/** |
|||
* 项目状态(处理中:pending 已结案:closed) |
|||
*/ |
|||
String PROJECT_STATUS_PENDING = "pending"; |
|||
String PROJECT_STATUS_CLOSED = "closed"; |
|||
|
|||
} |
@ -0,0 +1,8 @@ |
|||
package com.epmet.dataaggre.constant; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2020/12/25 上午10:54 |
|||
*/ |
|||
public interface UserConstant { |
|||
} |
Loading…
Reference in new issue