吴学文
2019-06-12 c0eaeb45dcb4858a3dced5950823597f932c20e6
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
65
66
67
68
69
package com.java110.web.smo;
 
import com.java110.core.context.IPageData;
import org.springframework.http.ResponseEntity;
 
/**
 * 费用服务类
 */
public interface IFeeServiceSMO {
 
    /**
     * 物业配置费
     *
     * @param pd 页面数据封装对象
     * @param feeTypeCd 费用类型
     * @return 返回 ResponseEntity对象包含 http状态 信息 body信息
     */
    ResponseEntity<String> loadPropertyConfigFee(IPageData pd, String feeTypeCd);
 
 
    /**
     * 停车配置费
     *
     * @param pd 页面数据封装对象
     * @return 返回 ResponseEntity对象包含 http状态 信息 body信息
     */
    ResponseEntity<String> loadParkingSpaceConfigFee(IPageData pd);
 
    /**
     * 缴费
     *
     * @param pd 页面数据封装对象
     * @return 返回 ResponseEntity对象包含 http状态 信息 body信息
     */
    ResponseEntity<String> payFee(IPageData pd);
 
    /**
     * 查询主费用
     *
     * @param pd 页面数据封装对象
     * @return 返回 ResponseEntity对象包含 http状态 信息 body信息
     */
    ResponseEntity<String> loadFeeByRoomId(IPageData pd);
 
    /**
     * 查询费用明细
     *
     * @param pd 页面数据封装对象
     * @return 返回 ResponseEntity对象包含 http状态 信息 body信息
     */
    ResponseEntity<String> loadFeeDetail(IPageData pd);
 
    /**
     * 保存或修改物业费配置
     * @param pd 页面数据封装对象
     * @return 返回 ResponseEntity对象包含 http状态 信息 body信息
     */
    ResponseEntity<String> saveOrUpdatePropertyFeeConfig(IPageData pd);
 
    /**
     * 保存或修改停车费配置
     * @param pd 页面数据封装对象
     * @return 返回 ResponseEntity对象包含 http状态 信息 body信息
     */
    ResponseEntity<String> saveOrUpdateParkingSpaceFeeConfig(IPageData pd);
 
 
 
}