feat: withdraw
This commit is contained in:
@ -64,3 +64,26 @@ export interface PartnerProfitItem {
|
||||
expectedSettlementDate: string;
|
||||
actualSettlementDate: string;
|
||||
}
|
||||
export interface WithdrawResponse {
|
||||
outBillNo: string;
|
||||
transferBillNo: string;
|
||||
createTime: string;
|
||||
state: string;
|
||||
packageInfo: string;
|
||||
}
|
||||
export interface WithdrawRecord {
|
||||
id: number;
|
||||
userId: string;
|
||||
orderNo: string;
|
||||
outTradeId: string;
|
||||
amt: number;
|
||||
status: number;
|
||||
remark: string;
|
||||
created: string;
|
||||
updated: string;
|
||||
finishedTime: string;
|
||||
}
|
||||
export interface PartnerPagination<T> {
|
||||
content: T[];
|
||||
totalPages: number;
|
||||
}
|
||||
|
Reference in New Issue
Block a user