|
|
@@ -55,19 +55,23 @@ public class MaterialsLoanPageVO extends BaseBean
|
|
|
private String loanFromName;
|
|
|
|
|
|
@ApiModelProperty(value = "领取时间")
|
|
|
- @JsonFormat(timezone="GMT+8", pattern = "yyyy-MM-dd")
|
|
|
- @Excel(name = "领取时间", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
+ @JsonFormat(timezone="GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @Excel(name = "领取时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date loanTime;
|
|
|
|
|
|
@ApiModelProperty(value = "提醒时间")
|
|
|
- @JsonFormat(timezone="GMT+8", pattern = "yyyy-MM-dd")
|
|
|
- @Excel(name = "提醒时间", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
+ @JsonFormat(timezone="GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @Excel(name = "提醒时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date reminderTime;
|
|
|
|
|
|
@ApiModelProperty(value = "归还人ID")
|
|
|
@Excel(name = "归还人ID")
|
|
|
private Long restitutionUserId;
|
|
|
|
|
|
+ @ApiModelProperty(value = "归还人Name")
|
|
|
+ @Excel(name = "归还人Name")
|
|
|
+ private String restitutionUserName;
|
|
|
+
|
|
|
@ApiModelProperty(value = "归还柜ID")
|
|
|
@Excel(name = "归还柜ID")
|
|
|
private Long restitutionToId;
|
|
|
@@ -76,18 +80,18 @@ public class MaterialsLoanPageVO extends BaseBean
|
|
|
private String restitutionToName;
|
|
|
|
|
|
@ApiModelProperty(value = "理应归还时间")
|
|
|
- @JsonFormat(timezone="GMT+8", pattern = "yyyy-MM-dd")
|
|
|
- @Excel(name = "归还时间", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
+ @JsonFormat(timezone="GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @Excel(name = "归还时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date restitutionTime;
|
|
|
|
|
|
@ApiModelProperty(value = "实际归还时间")
|
|
|
- @JsonFormat(timezone="GMT+8", pattern = "yyyy-MM-dd")
|
|
|
- @Excel(name = "实际归还时间", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
+ @JsonFormat(timezone="GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @Excel(name = "实际归还时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date actualRestitutionTime;
|
|
|
|
|
|
@ApiModelProperty(value = "超时报警")
|
|
|
- @JsonFormat(timezone="GMT+8", pattern = "yyyy-MM-dd")
|
|
|
- @Excel(name = "超时报警", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
+ @JsonFormat(timezone="GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @Excel(name = "超时报警", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date timeoutAlarm;
|
|
|
|
|
|
@ApiModelProperty(value = "是否需要归还")
|