吴学文
2019-06-08 60b967625557ef260952eb9a3493158be05b69eb
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
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> 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);
 
 
 
}