refactor(credit): 重构信用司法文书相关实体和参数类

- 调整CreditCourtSessionImportParam中字段顺序并优化Excel注解配置
- 将CreditJudicialDocument中的type字段重命名为documentType以提高语义清晰度
- 修改CreditJudicialDocument中involvedAmount字段描述去除单位后缀
- 更新CreditJudicialDocumentController中对documentType字段的映射逻辑
- 调整CreditJudicialDocumentImportParam中对应字段名称保持一致性
This commit is contained in:
2026-02-14 11:10:46 +08:00
parent c5a942b4fc
commit 2973844559
4 changed files with 24 additions and 24 deletions

View File

@@ -494,7 +494,7 @@ public class CreditJudicialDocumentController extends BaseController {
: param.getInvolvedAmount(); : param.getInvolvedAmount();
entity.setTitle(param.getTitle()); entity.setTitle(param.getTitle());
entity.setType(param.getType()); entity.setDocumentType(param.getDocumentType());
entity.setDataStatus(param.getDataStatus()); entity.setDataStatus(param.getDataStatus());
entity.setOtherPartiesThirdParty(param.getOtherPartiesThirdParty()); entity.setOtherPartiesThirdParty(param.getOtherPartiesThirdParty());
entity.setOccurrenceTime(param.getOccurrenceTime()); entity.setOccurrenceTime(param.getOccurrenceTime());

View File

@@ -34,7 +34,7 @@ public class CreditJudicialDocument implements Serializable {
private String title; private String title;
@Schema(description = "文书类型") @Schema(description = "文书类型")
private String type; private String documentType;
@Schema(description = "案号") @Schema(description = "案号")
private String caseNumber; private String caseNumber;
@@ -48,7 +48,7 @@ public class CreditJudicialDocument implements Serializable {
@Schema(description = "当事人") @Schema(description = "当事人")
private String otherPartiesThirdParty; private String otherPartiesThirdParty;
@Schema(description = "案件金额(元)") @Schema(description = "案件金额")
private String involvedAmount; private String involvedAmount;
@Schema(description = "裁判结果") @Schema(description = "裁判结果")

View File

@@ -15,42 +15,42 @@ public class CreditCourtSessionImportParam implements Serializable {
@Excel(name = "数据类型") @Excel(name = "数据类型")
private String dataType; private String dataType;
@Excel(name = "案号")
private String caseNumber;
@Excel(name = "案由")
private String causeOfAction;
@Excel(name = "当事人")
private String otherPartiesThirdParty;
@Excel(name = "其他当事人/第三人")
private String otherPartiesThirdParty2;
@Excel(name = "原告/上诉人") @Excel(name = "原告/上诉人")
private String plaintiffAppellant; private String plaintiffAppellant;
@Excel(name = "被告/被上诉人") @Excel(name = "被告/被上诉人")
private String appellee; private String appellee;
@Excel(name = "其他当事人/第三人")
private String otherPartiesThirdParty;
@Excel(name = "发生时间")
private String occurrenceTime;
@Excel(name = "案号")
private String caseNumber;
@Excel(name = "案由")
private String causeOfAction;
@Excel(name = "涉案金额") @Excel(name = "涉案金额")
private String involvedAmount; private String involvedAmount;
@Excel(name = "涉案金额(元)")
private String involvedAmount2;
@Excel(name = "数据状态")
private String dataStatus;
@Excel(name = "法院") @Excel(name = "法院")
private String courtName; private String courtName;
@Excel(name = "开庭时间") @Excel(name = "数据状态")
private String occurrenceTime; private String dataStatus;
@Excel(name = "发生时间") @Excel(name = "发生时间")
private String occurrenceTime2; private String occurrenceTime2;
@Excel(name = "涉案金额(元)")
private String involvedAmount2;
@Excel(name = "当事人")
private String otherPartiesThirdParty2;
@Excel(name = "备注") @Excel(name = "备注")
private String comments; private String comments;

View File

@@ -17,7 +17,7 @@ public class CreditJudicialDocumentImportParam implements Serializable {
private String title; private String title;
@Excel(name = "文书类型") @Excel(name = "文书类型")
private String type; private String documentType;
@Excel(name = "案号") @Excel(name = "案号")
private String caseNumber; private String caseNumber;