package com.java110.utils.constant;
|
|
/**
|
* 仓库常量类
|
* Created by wuxw on 2017/5/20.
|
*/
|
public class ServiceCodeStorehouseConstant {
|
|
/**
|
* 添加 仓库
|
*/
|
public static final String ADD_STOREHOUSE = "resourceStore.saveStorehouse";
|
|
|
/**
|
* 修改 仓库
|
*/
|
public static final String UPDATE_STOREHOUSE = "resourceStore.updateStorehouse";
|
/**
|
* 删除 仓库
|
*/
|
public static final String DELETE_STOREHOUSE = "resourceStore.deleteStorehouse";
|
|
|
/**
|
* 查询 仓库
|
*/
|
public static final String LIST_STOREHOUSES = "resourceStore.listStorehouses";
|
|
|
}
|