Commit 6d348521 authored by 朱晨阳's avatar 朱晨阳

Merge remote-tracking branch 'origin/developer_bw' into developer_bw

parents 3ea88287 9e34c182
package com.yeejoin.amos.boot.module.hygf.api.dto; package com.yeejoin.amos.boot.module.hygf.api.dto;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.yeejoin.amos.boot.module.hygf.api.entity.PeasantHousehold; import com.yeejoin.amos.boot.module.hygf.api.entity.PeasantHousehold;
import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
...@@ -36,6 +37,7 @@ public class FinancingInfoHistoryDto extends BaseDto { ...@@ -36,6 +37,7 @@ public class FinancingInfoHistoryDto extends BaseDto {
private Long peasantHouseholdId; private Long peasantHouseholdId;
@ApiModelProperty(value = "放款时间") @ApiModelProperty(value = "放款时间")
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd")
private Date disbursementTime; private Date disbursementTime;
@ApiModelProperty(value = "元") @ApiModelProperty(value = "元")
......
...@@ -79,7 +79,7 @@ public class FinancingInfoHistoryServiceImpl extends BaseService<FinancingInfoHi ...@@ -79,7 +79,7 @@ public class FinancingInfoHistoryServiceImpl extends BaseService<FinancingInfoHi
e.setDisbursementTime(financingInfoDto.getDisbursementTime()); e.setDisbursementTime(financingInfoDto.getDisbursementTime());
e.setUnitPrice(financingInfoDto.getUnitPrice()); e.setUnitPrice(financingInfoDto.getUnitPrice());
e.setFinancingCompaniesName(financingInfoDto.getFinancingCompaniesName()); e.setFinancingCompaniesName(financingInfoDto.getFinancingCompaniesName());
e.setStatus("完成"); e.setStatus("放款完成");
if (financingInfoDto.getFiles() != null){ if (financingInfoDto.getFiles() != null){
e.setFile(JSON.toJSONString(financingInfoDto.getFiles())); e.setFile(JSON.toJSONString(financingInfoDto.getFiles()));
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment