sms:移除 sendCode、sendMsg 字段

(cherry picked from commit f74ddf46ae)
This commit is contained in:
YunaiV 2023-11-21 22:53:49 +08:00 committed by shizhong
parent e2fb9df663
commit b78421a31e

View File

@ -1,30 +1,29 @@
import request from '@/config/axios' import request from '@/config/axios'
export interface SmsLogVO { export interface SmsLogVO {
id: number id: number | null
channelId: number channelId: number | null
channelCode: string channelCode: string
templateId: number templateId: number | null
templateCode: string templateCode: string
templateType: number templateType: number | null
templateContent: string templateContent: string
templateParams: Map<string, object> templateParams: Map<string, object> | null
apiTemplateId: string
mobile: string mobile: string
userId: number userId: number | null
userType: number userType: number | null
sendStatus: number sendStatus: number | null
sendTime: Date sendTime: Date | null
sendCode: number
sendMsg: string
apiSendCode: string apiSendCode: string
apiSendMsg: string apiSendMsg: string
apiRequestId: string apiRequestId: string
apiSerialNo: string apiSerialNo: string
receiveStatus: number receiveStatus: number | null
receiveTime: Date receiveTime: Date | null
apiReceiveCode: string apiReceiveCode: string
apiReceiveMsg: string apiReceiveMsg: string
createTime: Date createTime: Date | null
} }
export interface SmsLogPageReqVO extends PageParam { export interface SmsLogPageReqVO extends PageParam {