package com.java110.common.constant;
|
|
/**
|
* 应用常量类
|
* Created by wuxw on 2017/5/20.
|
*/
|
public class ServiceCodeAppConstant {
|
|
/**
|
* 添加 应用
|
*/
|
public static final String ADD_APP = "app.saveApp";
|
|
|
/**
|
* 修改 应用
|
*/
|
public static final String UPDATE_APP = "app.updateApp";
|
/**
|
* 删除 应用
|
*/
|
public static final String DELETE_APP = "app.deleteApp";
|
|
|
/**
|
* 查询 应用
|
*/
|
public static final String LIST_APPS = "app.listApps";
|
|
|
}
|