初始化项目

This commit is contained in:
2026-03-22 22:44:27 +08:00
parent 3ec3a07cd3
commit bff3b3bd78
9 changed files with 114 additions and 76 deletions

View File

@@ -19,7 +19,6 @@ export interface ErpDebtRecords extends BasicModel<ErpDebtRecords> {
accountId: string; // 账户标识
repayAmount: number; // 还款金额
repayTime?: string; // 还款时间
categoryId?: string; // 分类标识
remark?: string; // 备注说明
}

View File

@@ -21,6 +21,7 @@ export interface ErpDebts extends BasicModel<ErpDebts> {
remaining?: number; // 已还金额
endTime?: string; // 结清时间
ustatus: string; // 状态
categoryId?: string; // 分类标识
remark?: string; // 交易备注
}