zhanghua
2022-11-16 ef5d28c21618b6fcd3cae08004b15570169dbb0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import http from "@/http";
 
export function deleteMessage(params) {
    return http.post('/sccg/message/delete', params);
}
 
export function getMessageById(id) {
    return http.get('/sccg/message/getMessage/' + id);
}
 
export function getMessageList(params) {
    return http.get('/sccg/message/list', params);
}
 
export function sendMessage(params) {
    return http.post('/sccg/message/sendMessage', params);
}
 
export function updateMessage(id, params) {
    return http.post('/sccg/message/update/' + id, params);
}