一日流程评估

This commit is contained in:
zhanglipeng
2021-04-08 21:56:39 +08:00
parent 5dfb5ed052
commit 8cecc91d81
5 changed files with 81 additions and 101 deletions

View File

@ -74,6 +74,8 @@ public class ByDayFlowStandard extends BaseEntity {
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date updatetime;
private String mrz;
public void setId(Long id) {
this.id = id;
}
@ -146,6 +148,14 @@ public class ByDayFlowStandard extends BaseEntity {
this.updatetime = updatetime;
}
public String getMrz() {
return mrz;
}
public void setMrz(String mrz) {
this.mrz = mrz;
}
@Override
public String toString() {
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
@ -159,6 +169,7 @@ public class ByDayFlowStandard extends BaseEntity {
.append("updateuser", getUpdateuser())
.append("updatetime", getUpdatetime())
.append("score", getScore())
.append("mrz", getMrz())
.toString();
}