Your Name
2023-08-06 144c48fc3c0b3d00db9cf4a28dd2b6a6e0093cde
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.job.msgNotify;
 
import com.alibaba.fastjson.JSONObject;
import com.java110.vo.ResultVo;
 
/**
 * 消息通知 接口类
 */
public interface IMsgNotify {
 
    /**
     * 发送退费申请 消息
     *
     * @param userId
     * @param content
     * @return
     */
    ResultVo sendApplyReturnFeeMsg(String communityId, String userId, JSONObject content);
 
    /**
     * 发送欠费 账单信息
     *
     * @param communityId 小区
     * @param userId 用户
     * @param content {
     *                    "feeTypeName",
     *                     "payerObjName",
     *                     "billAmountOwed",
     *                     "date",
     *                url
     * }
     * @return
     */
    ResultVo sendOweFeeMsg(String communityId, String userId, JSONObject content);
 
    /**
     * 发送缴费成功提醒
     *
     * @param communityId 小区
     * @param userId 用户
     * @param content {
     *                    "payFeeRoom",
     *                     "feeTypeCdName",
     *                     "payFeeTime",
     *                     "receivedAmount",
     *                url
     * }
     */
    ResultVo sendPayFeeMsg(String communityId, String userId, JSONObject content,String role);
 
    /**
     * 业主报修时
     * @param communityId 小区
     * @param userId 用户
     * @param content {
     *                repairTypeName,
     *                repairObjName,
     *                repairName,
     *                url
     * }
     * @return
     */
    ResultVo sendAddOwnerRepairMsg(String communityId, String userId, JSONObject content);
}