refactor(credit): 重构竞争对手实体的公司名称字段

- 将 CreditCompetitor 实体中的 companyName 字段重命名为 name
- 保留 companyName 字段作为关联查询的临时字段(exist=false)
- 更新控制器中导入逻辑,使用 name 字段进行数据处理
- 修改 XML 映射文件中的查询条件,使用 name 替代 companyName
- 更新导入参数和查询参数类中的字段映射
- 修复专利控制器中的导入验证逻辑
- 调整外部投资企业实体的字段描述文案
This commit is contained in:
2026-01-19 21:20:12 +08:00
parent ba683bd578
commit 84e6222c4d

View File

@@ -30,31 +30,30 @@ public class CreditCourtAnnouncement implements Serializable {
@TableId(value = "id", type = IdType.AUTO)
private Integer id;
@Schema(description = "案号")
private String caseNumber;
@Schema(description = "案由")
private String causeOfAction;
@Schema(description = "当事人")
private String otherPartiesThirdParty;
@Schema(description = "公告类型")
private String dataType;
@Schema(description = "公告人")
private String plaintiffAppellant;
@Schema(description = "被告/被上诉人")
@TableField("Appellee")
private String appellee;
@Schema(description = "其他当事人/第三人")
private String otherPartiesThirdParty;
@Schema(description = "刊登日期")
private String occurrenceTime;
@Schema(description = "案号")
private String caseNumber;
@Schema(description = "被告/被上诉人")
private String appellee;
@Schema(description = "链接地址")
private String url;
@Schema(description = "案由")
private String causeOfAction;
@Schema(description = "涉案金额")
private String involvedAmount;