This commit is contained in:
guohb
2024-06-05 16:25:47 +08:00
parent 2ce51efe35
commit 5a000a74f1
12 changed files with 93 additions and 15 deletions

View File

@@ -44,4 +44,7 @@ public class FirstOrderDTO {
@ApiModelProperty("订货金阶段状态1500 待上传, 1505 带缴纳,1510 已完成")
private Integer firstOrderSubStage;
@ApiModelProperty("提交人")
private String submiter;
}

View File

@@ -16,6 +16,9 @@ import java.util.Objects;
@Data
public class SubmitLicenseResponse {
@ApiModelProperty("审批人")
private String approver;
@ApiModelProperty("主键id")
private Long id;

View File

@@ -54,6 +54,14 @@ public class OpeningOperationPlanVO {
@ApiModelProperty("审核结果,0待审核1通过2拒绝")
private Integer resultType;
@ApiModelProperty("审批人")
private String approver;
@ApiModelProperty("提交人")
private String submiter;
public OpeningOperationPlanVO() {
}
public OpeningOperationPlanVO(OpeningOperationPlanDO openingOperationPlanDO) {
this.resultType = openingOperationPlanDO.getResultType();

View File

@@ -73,6 +73,9 @@ public class ShopRentInfoVO {
@ApiModelProperty("审核信息")
private AuditInfoVO auditInfo;
@ApiModelProperty("审批人")
private String approver;
public static ShopRentInfoVO build(ShopRentInfoDO shopRentInfo) {
ShopRentInfoVO result = new ShopRentInfoVO();
result.setRentId(shopRentInfo.getId());