Your Name
2023-08-07 36c4a77dee07f6d77a66e86da0132ff21e17ca0a
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
package com.java110.job.msgNotify.ali;
 
import com.alibaba.fastjson.JSONObject;
import com.java110.job.msgNotify.IMsgNotify;
import com.java110.vo.ResultVo;
import org.springframework.stereotype.Service;
 
@Service("aliMsgNotifyImpl")
public class AliMsgNotifyImpl implements IMsgNotify {
    @Override
    public ResultVo sendApplyReturnFeeMsg(String communityId,String userId, JSONObject content) {
        return null;
    }
 
    @Override
    public ResultVo sendOweFeeMsg(String communityId, String userId, JSONObject content) {
        return null;
    }
 
    @Override
    public ResultVo sendPayFeeMsg(String communityId, String userId, JSONObject content,String role) {
        return null;
    }
 
    @Override
    public ResultVo sendAddOwnerRepairMsg(String communityId, String userId, JSONObject content) {
        return null;
    }
 
    @Override
    public ResultVo sendDistributeRepairStaffMsg(String communityId, String userId, JSONObject content) {
        return null;
    }
 
    @Override
    public ResultVo sendDistributeRepairOwnerMsg(String communityId, String userId, JSONObject content) {
        return null;
    }
}