fix(import): 修复导入参数中的Excel注解配置

- 将dataType字段的@Schema注解替换为@Excel注解
- 将plaintiffAppellant字段的@Schema注解替换为@Excel注解
- 确保字段正确映射到Excel导入功能
This commit is contained in:
2026-01-19 22:44:38 +08:00
parent c902bbd214
commit 850c18d639

View File

@@ -22,10 +22,10 @@ public class CreditCourtAnnouncementImportParam implements Serializable {
@Excel(name = "当事人") @Excel(name = "当事人")
private String otherPartiesThirdParty; private String otherPartiesThirdParty;
@Schema(description = "公告类型") @Excel(name = "公告类型")
private String dataType; private String dataType;
@Schema(description = "公告人") @Excel(name = "公告人")
private String plaintiffAppellant; private String plaintiffAppellant;
@Excel(name = "刊登日期") @Excel(name = "刊登日期")