Commit 77dc788f authored by 332784038@qq.com's avatar 332784038@qq.com

订单详情数据补充部分时间参数返回

parent e0b42a80
...@@ -427,7 +427,6 @@ public class OrderBackInfoDto { ...@@ -427,7 +427,6 @@ public class OrderBackInfoDto {
* 入仓时间 * 入仓时间
*/ */
@ApiModelProperty(value = "入仓时间") @ApiModelProperty(value = "入仓时间")
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
@JsonFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) @JsonFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
private Date rucangTime; private Date rucangTime;
...@@ -571,6 +570,23 @@ public class OrderBackInfoDto { ...@@ -571,6 +570,23 @@ public class OrderBackInfoDto {
@ApiModelProperty(value = "到仓重量") @ApiModelProperty(value = "到仓重量")
private BigDecimal checkWeight; private BigDecimal checkWeight;
@JsonFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
@ApiModelProperty(value = "已装柜时间")
private Date loadTime;
@JsonFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
@ApiModelProperty(value = "到港时间")
private Date daogangTime;
@JsonFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
@ApiModelProperty(value = "清关时间")
private Date qingguanTime;
@JsonFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
@ApiModelProperty(value = "已卸柜时间(到仓)")
private Date unloadTime;
public void setExceptionReason(String exceptionReason) { public void setExceptionReason(String exceptionReason) {
this.exceptionReason = exceptionReason; this.exceptionReason = exceptionReason;
if (StringUtils.isNotBlank(exceptionReason) && Objects.nonNull(this.lang)) { if (StringUtils.isNotBlank(exceptionReason) && Objects.nonNull(this.lang)) {
......
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