Compare commits
2 Commits
d68a53e3d0
...
bdc0acc097
| Author | SHA1 | Date | |
|---|---|---|---|
| bdc0acc097 | |||
| 83cb7208a8 |
@@ -605,24 +605,17 @@ public class CreditXgxfController extends BaseController {
|
|||||||
entity.setCaseNumber(param.getCaseNumber());
|
entity.setCaseNumber(param.getCaseNumber());
|
||||||
entity.setType(param.getType());
|
entity.setType(param.getType());
|
||||||
entity.setDataType(param.getDataType());
|
entity.setDataType(param.getDataType());
|
||||||
entity.setPlaintiffUser(param.getPlaintiffUser());
|
entity.setPlaintiffAppellant(param.getPlaintiffAppellant());
|
||||||
entity.setDefendantUser(param.getDefendantUser());
|
entity.setAppellee(param.getAppellee());
|
||||||
entity.setOtherPartiesThirdParty(param.getOtherPartiesThirdParty());
|
entity.setOtherPartiesThirdParty(param.getOtherPartiesThirdParty());
|
||||||
entity.setPlaintiffAppellant(param.getPlaintiffAppellant());
|
entity.setPlaintiffAppellant(param.getPlaintiffAppellant());
|
||||||
entity.setDataStatus(param.getDataStatus());
|
entity.setDataStatus(param.getDataStatus());
|
||||||
entity.setAppellee(param.getAppellee());
|
entity.setAppellee(param.getAppellee());
|
||||||
|
|
||||||
// 兼容不同模板字段:如果 *2 有值则以 *2 为准写入主字段
|
// 兼容不同模板字段:如果 *2 有值则以 *2 为准写入主字段
|
||||||
entity.setInvolvedAmount(!ImportHelper.isBlank(param.getInvolvedAmount2())
|
entity.setInvolvedAmount(param.getInvolvedAmount());
|
||||||
? param.getInvolvedAmount2()
|
entity.setOccurrenceTime(param.getOccurrenceTime());
|
||||||
: param.getInvolvedAmount());
|
entity.setCourtName(param.getCourtName());
|
||||||
entity.setOccurrenceTime(!ImportHelper.isBlank(param.getOccurrenceTime2())
|
|
||||||
? param.getOccurrenceTime2()
|
|
||||||
: param.getOccurrenceTime());
|
|
||||||
entity.setCourtName(!ImportHelper.isBlank(param.getCourtName2())
|
|
||||||
? param.getCourtName2()
|
|
||||||
: param.getCourtName());
|
|
||||||
|
|
||||||
entity.setReleaseDate(param.getReleaseDate());
|
entity.setReleaseDate(param.getReleaseDate());
|
||||||
entity.setComments(param.getComments());
|
entity.setComments(param.getComments());
|
||||||
|
|
||||||
|
|||||||
@@ -22,25 +22,22 @@ public class CreditXgxfImportParam implements Serializable {
|
|||||||
@Excel(name = "限消令对象")
|
@Excel(name = "限消令对象")
|
||||||
private String dataType;
|
private String dataType;
|
||||||
|
|
||||||
@Excel(name = "限制法定代表人")
|
@Schema(description = "原告/上诉人")
|
||||||
private String plaintiffAppellant;
|
private String plaintiffAppellant;
|
||||||
|
|
||||||
@Excel(name = "申请人")
|
@Schema(description = "被告/被上诉人")
|
||||||
private String appellee;
|
private String appellee;
|
||||||
|
|
||||||
@Excel(name = "涉案金额(元)")
|
@Schema(description = "其他当事人/第三人")
|
||||||
private String involvedAmount;
|
private String otherPartiesThirdParty;
|
||||||
|
|
||||||
@Excel(name = "涉案金额")
|
@Excel(name = "涉案金额")
|
||||||
private String involvedAmount2;
|
private String involvedAmount;
|
||||||
|
|
||||||
@Excel(name = "立案日期")
|
|
||||||
private String occurrenceTime;
|
|
||||||
|
|
||||||
@Excel(name = "发生时间")
|
@Excel(name = "发生时间")
|
||||||
private String occurrenceTime2;
|
private String occurrenceTime;
|
||||||
|
|
||||||
@Excel(name = "执行法院")
|
@Excel(name = "法院")
|
||||||
private String courtName;
|
private String courtName;
|
||||||
|
|
||||||
@Excel(name = "发布日期")
|
@Excel(name = "发布日期")
|
||||||
@@ -49,15 +46,6 @@ public class CreditXgxfImportParam implements Serializable {
|
|||||||
@Excel(name = "备注")
|
@Excel(name = "备注")
|
||||||
private String comments;
|
private String comments;
|
||||||
|
|
||||||
@Excel(name = "原告/上诉人")
|
|
||||||
private String plaintiffUser;
|
|
||||||
|
|
||||||
@Excel(name = "被告/被上诉人")
|
|
||||||
private String defendantUser;
|
|
||||||
|
|
||||||
@Excel(name = "其他当事人/第三人")
|
|
||||||
private String otherPartiesThirdParty;
|
|
||||||
|
|
||||||
@Excel(name = "数据状态")
|
@Excel(name = "数据状态")
|
||||||
private String dataStatus;
|
private String dataStatus;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user