|
|
@@ -109,7 +109,7 @@ public class ModelSynthesizerDomain {
|
|
|
map.put("$Addr$",contractOrderEntity.getResidence());
|
|
|
map.put("$IDNo$", contractOrderEntity.getIdCard());
|
|
|
map.put("$LoanRate$", contractOrderEntity.getRate());
|
|
|
- map.put("$LoanTerm$", contractOrderEntity.getStartDate().concat(" - ").concat(contractOrderEntity.getEndDate()));
|
|
|
+ map.put("$Term$", contractOrderEntity.getStartDate().concat(" - ").concat(contractOrderEntity.getEndDate()));
|
|
|
map.put("$TotalMonth$", months.toString());
|
|
|
} catch (Exception e) {
|
|
|
e.printStackTrace();
|
|
|
@@ -290,7 +290,7 @@ public class ModelSynthesizerDomain {
|
|
|
noteValue.put("$Sex$", "1".equals(contractOrderEntity.getSex()) ? "男" : "女");
|
|
|
noteValue.put("$Addr$", contractOrderEntity.getResidence());
|
|
|
noteValue.put("$Amounts$", contractOrderEntity.getContractMoney());
|
|
|
- noteValue.put("$LoanTerm$", contractOrderEntity.getStartDate() + "~" + contractOrderEntity.getEndDate());
|
|
|
+ noteValue.put("$Term$", contractOrderEntity.getStartDate() + "~" + contractOrderEntity.getEndDate());
|
|
|
noteValue.put("$LoanRate$", contractOrderEntity.getRate());
|
|
|
try {
|
|
|
SimpleDateFormat monthformatter = new SimpleDateFormat("yyyy-MM");
|
|
|
@@ -368,6 +368,7 @@ public class ModelSynthesizerDomain {
|
|
|
map.put("$MateName$", contractOrderEntity.getJointName());
|
|
|
map.put("$MateSex$", StatusEnum.SexStatusEnum.getValue(contractOrderEntity.getJointSex()));
|
|
|
map.put("$MateBirthday$", dateDestFormatter.format(date));
|
|
|
+ map.put("$MateAddr$", contractOrderEntity.getJointResidence());
|
|
|
map.put("$MatePhone$", contractOrderEntity.getJointPhone());
|
|
|
|
|
|
} catch (Exception e) {
|