mrzcc
2020-02-10 958fd245e5b322630d00a90bcaf824225ce480d1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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";
 
 
    /**
     * 查询  需要设置费用房屋
     */
    public static final String LIST_PARKING_SPACE_WHERE_FEE_SET = "fee.listParkingSpacesWhereFeeSet";
 
    /**
     * 查询 费用项
     */
    public static final String LIST_FEE = "fee.listFee";
 
 
}