Refactor code structure and remove redundant changes
This commit is contained in:
63
api/pay/types.ts
Normal file
63
api/pay/types.ts
Normal file
@ -0,0 +1,63 @@
|
||||
export interface AppPayWalletPackageRespVO {
|
||||
id: number
|
||||
name: string
|
||||
payPrice: number
|
||||
bonusPrice: number
|
||||
type: number
|
||||
brokerageRate: number
|
||||
profile: string
|
||||
remark: string
|
||||
btnloading: boolean
|
||||
qrCodeUrl: string
|
||||
level: number
|
||||
}
|
||||
|
||||
export interface PayOrderSubmitReqVO {
|
||||
id: number
|
||||
memberId: string
|
||||
channelCode: string
|
||||
channelExtras?: any
|
||||
displayMode?: string
|
||||
returnUrl?: string
|
||||
}
|
||||
|
||||
export interface PayOrderRespVO {
|
||||
appId: number
|
||||
channelId: number
|
||||
channelCode: string
|
||||
merchantOrderId: string
|
||||
subject: string
|
||||
body: string
|
||||
notifyUrl: string
|
||||
price: number
|
||||
channelFeeRate: number
|
||||
channelFeePrice: number
|
||||
status: number
|
||||
userIp: string
|
||||
expireTime: string
|
||||
successTime: string
|
||||
extensionId: number
|
||||
no: string
|
||||
refundPrice: number
|
||||
channelUserId: string
|
||||
channelOrderNo: string
|
||||
id: number
|
||||
createTime: string
|
||||
}
|
||||
|
||||
export interface PageResultAppPayWalletRechargeRespVO {
|
||||
list: AppPayWalletRechargeRespVO[]
|
||||
total: number
|
||||
}
|
||||
export interface AppPayWalletRechargeRespVO {
|
||||
id: number
|
||||
totalPrice: number
|
||||
payPrice: number
|
||||
bonusPrice: number
|
||||
payChannelCode: string
|
||||
payChannelName: string
|
||||
payOrderId: number
|
||||
payOrderChannelOrderNo: string
|
||||
payTime: string
|
||||
refundStatus: number
|
||||
}
|
||||
Reference in New Issue
Block a user