package com.java110.utils.constant;
|
|
/**
|
* 费用项常量类
|
* Created by wuxw on 2017/5/20.
|
*/
|
public class ServiceCodeFeeConfigConstant {
|
|
/**
|
* 添加 费用项
|
*/
|
public static final String ADD_FEECONFIG = "feeConfig.saveFeeConfig";
|
|
|
/**
|
* 修改 费用项
|
*/
|
public static final String UPDATE_FEECONFIG = "feeConfig.updateFeeConfig";
|
/**
|
* 删除 费用项
|
*/
|
public static final String DELETE_FEECONFIG = "feeConfig.deleteFeeConfig";
|
|
|
/**
|
* 查询 费用项
|
*/
|
public static final String LIST_FEECONFIGS = "feeConfig.listFeeConfigs";
|
|
|
/**
|
* 查询 需要设置费用房屋
|
*/
|
public static final String LIST_ROOMS_WHERE_FEE_SET = "fee.listRoomsWhereFeeSet";
|
|
|
}
|