61 lines
1.3 KiB
TypeScript
61 lines
1.3 KiB
TypeScript
import type { PageParam, PageResult } from '@vben/request';
|
|
|
|
import { MessageType } from '@vben/constants';
|
|
|
|
import { requestClient } from '#/api/request';
|
|
|
|
export namespace MpMessageApi {
|
|
/** 消息信息 */
|
|
export interface Message {
|
|
id?: number;
|
|
accountId: number;
|
|
type: MessageType | string;
|
|
openid: string;
|
|
content: string;
|
|
mediaId?: string;
|
|
status: number;
|
|
remark?: string;
|
|
createTime?: Date;
|
|
sendFrom?: number;
|
|
userId?: number;
|
|
event?: string;
|
|
eventKey?: string;
|
|
mediaUrl?: string;
|
|
recognition?: string;
|
|
url?: string;
|
|
title?: string;
|
|
label?: string;
|
|
locationX?: number;
|
|
locationY?: number;
|
|
thumbMediaUrl?: string;
|
|
musicUrl?: string;
|
|
hqMusicUrl?: string;
|
|
description?: string;
|
|
articles?: any[];
|
|
}
|
|
|
|
/** 发送消息请求 */
|
|
export interface MessageSendRequestVO {
|
|
accountId: number;
|
|
openid: string;
|
|
type: MessageType;
|
|
content: string;
|
|
mediaId?: string;
|
|
}
|
|
}
|
|
|
|
/** 查询消息列表 */
|
|
export function getMessagePage(params: PageParam) {
|
|
return requestClient.get<PageResult<MpMessageApi.Message>>(
|
|
'/mp/message/page',
|
|
{
|
|
params,
|
|
},
|
|
);
|
|
}
|
|
|
|
/** 发送消息 */
|
|
export function sendMessage(data: MpMessageApi.MessageSendRequestVO) {
|
|
return requestClient.post('/mp/message/send', data);
|
|
}
|