feat: withdraw

This commit is contained in:
chashaobao
2025-06-14 23:45:47 +08:00
parent 082c5483c5
commit 96eb46821e
13 changed files with 279 additions and 29 deletions

View File

@ -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;
}