feat
This commit is contained in:
@@ -44,4 +44,7 @@ public class FirstOrderDTO {
|
||||
@ApiModelProperty("订货金阶段状态,1500 待上传, 1505 带缴纳,1510 已完成")
|
||||
private Integer firstOrderSubStage;
|
||||
|
||||
@ApiModelProperty("提交人")
|
||||
private String submiter;
|
||||
|
||||
}
|
||||
|
||||
@@ -16,6 +16,9 @@ import java.util.Objects;
|
||||
@Data
|
||||
public class SubmitLicenseResponse {
|
||||
|
||||
@ApiModelProperty("审批人")
|
||||
private String approver;
|
||||
|
||||
@ApiModelProperty("主键id")
|
||||
private Long id;
|
||||
|
||||
|
||||
@@ -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();
|
||||
|
||||
@@ -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());
|
||||
|
||||
Reference in New Issue
Block a user