88e030b7
王彪总
init project
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
package com.java110.utils.constant;
/**
* 钥匙申请常量类
* Created by wuxw on 2017/5/20.
*/
public class ServiceCodeApplicationKeyConstant {
/**
* 添加 钥匙申请
*/
public static final String ADD_APPLICATIONKEY = "applicationKey.saveApplicationKey";
/**
* 钥匙申请
*/
public static final String APPLY_APPLICATIONKEY = "applicationKey.applyApplicationKey";
/**
* 访客钥匙申请
*/
public static final String APPLY_VISITOR_APPLICATION_KEY = "applicationKey.applyVisitorApplicationKey";
/**
* 修改 钥匙申请
*/
public static final String UPDATE_APPLICATIONKEY = "applicationKey.updateApplicationKey";
/**
* 删除 钥匙申请
*/
public static final String DELETE_APPLICATIONKEY = "applicationKey.deleteApplicationKey";
/**
* 查询 钥匙申请
*/
public static final String LIST_APPLICATIONKEYS = "applicationKey.listApplicationKeys";
/**
* 查询 钥匙申请
*/
public static final String AUTH_APPLICATIONKEYS = "applicationKey.authApplicationKeys";
/**
* 审核 钥匙申请
*/
public static final String AUDIT_APPLICATIONKEY = "applicationKey.auditApplicationKey";
}
|