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 UPDATE_APPLICATIONKEY = "applicationKey.updateApplicationKey";
|
/**
|
* 删除 钥匙申请
|
*/
|
public static final String DELETE_APPLICATIONKEY = "applicationKey.deleteApplicationKey";
|
|
|
/**
|
* 查询 钥匙申请
|
*/
|
public static final String LIST_APPLICATIONKEYS = "applicationKey.listApplicationKeys";
|
|
|
}
|