package com.java110.utils.constant;
|
|
/**
|
* 商户属性常量类
|
* Created by wuxw on 2017/5/20.
|
*/
|
public class ServiceCodeStoreAttrConstant {
|
|
/**
|
* 添加 商户属性
|
*/
|
public static final String ADD_STOREATTR = "storeAttr.saveStoreAttr";
|
|
|
/**
|
* 修改 商户属性
|
*/
|
public static final String UPDATE_STOREATTR = "storeAttr.updateStoreAttr";
|
/**
|
* 删除 商户属性
|
*/
|
public static final String DELETE_STOREATTR = "storeAttr.deleteStoreAttr";
|
|
|
/**
|
* 查询 商户属性
|
*/
|
public static final String LIST_STOREATTRS = "storeAttr.listStoreAttrs";
|
|
|
}
|