This commit is contained in:
jiask 2025-09-12 14:54:11 +08:00
parent 2556628c21
commit 08e38c44d3
2 changed files with 10 additions and 11 deletions

View File

@ -47,7 +47,7 @@ public class FetchMaterialPageVO {
@ApiModelProperty("领料人id")
private Long fetchUserId;
@ApiModelProperty("领料人")
private String fetchUserName;
private String fetchUser;
@ApiModelProperty("审批状态(1待审核,2审批中,3审批通过,4审批不通过)")
private Integer approveStatus;
@ApiModelProperty("审批流程id")
@ -133,10 +133,6 @@ public class FetchMaterialPageVO {
return this.fetchUserId;
}
public String getFetchUserName() {
return this.fetchUserName;
}
public Integer getApproveStatus() {
return this.approveStatus;
}
@ -267,11 +263,6 @@ public class FetchMaterialPageVO {
return this;
}
public FetchMaterialPageVO setFetchUserName(final String fetchUserName) {
this.fetchUserName = fetchUserName;
return this;
}
public FetchMaterialPageVO setApproveStatus(final Integer approveStatus) {
this.approveStatus = approveStatus;
return this;
@ -321,4 +312,12 @@ public class FetchMaterialPageVO {
this.curUserApprove = curUserApprove;
return this;
}
public String getFetchUser() {
return fetchUser;
}
public void setFetchUser(String fetchUser) {
this.fetchUser = fetchUser;
}
}

View File

@ -161,7 +161,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
dw.warehouse_name,
a.fetch_material_time,
a.fetch_user_id,
su.user_name AS fetch_user_name,
a.fetch_user AS fetchUser,
a.approve_status,
a.process_instance_id,
a.fetch_user,