88e030b7
王彪总
init project
|
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
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";
/**
* 查询 业主欠费
*/
public static final String LIST_OWNER_OWE_FEE = "fee.listOwnerOweFee";
/**
* 查询 账单信息
*/
public static final String LIST_BILL = "fee.listBill";
/**
* 查询 账单信息
*/
public static final String LIST_BILL_OWE_FEE = "fee.listBillOweFee";
}
|