feat(credit): 更新信用 judgment debtor 模型并添加排序功能

- 在 creditJudgmentDebtor 模型中添加原告/上诉人、被告/被上诉人、其他当事人/第三人字段
- 修复模型中 name 字段注释并添加 name1 备用字段
- 在 creditCompanyInfo 组件中调整字段映射,将 name1 移至正确位置
- 修复 freezeDateEnd 字段映射错误
- 为 creditCustomer、creditJudgmentDebtor 和 creditSupplier 页面的表格列添加排序功能
- 更新相关表格列配置以支持 sorter 属性
This commit is contained in:
2026-02-14 17:27:46 +08:00
parent 338a2b9d72
commit ff186910da
5 changed files with 21 additions and 8 deletions

View File

@@ -8,7 +8,7 @@ export interface CreditJudgmentDebtor {
id?: number;
// 案号
caseNumber?: string;
// 被执行人名称
//
name?: string;
// 证件号/组织机构代码
code?: string;
@@ -44,6 +44,14 @@ export interface CreditJudgmentDebtor {
updateTime?: string;
// 历史ID
historyId?: number;
// 原告/上诉人
plaintiffAppellant?: string;
// 被告/被上诉人
appellee?: string;
// 其他当事人/第三人
otherPartiesThirdParty?: string;
// 被执行人名称
name1?: string;
}
/**