feat:通过/失败原因
This commit is contained in:
@@ -1,13 +1,10 @@
|
||||
package com.cool.store.response;
|
||||
|
||||
import com.cool.store.entity.SystemBuildingShopDO;
|
||||
import com.cool.store.request.SysStoreAppRequest;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.Objects;
|
||||
|
||||
@Data
|
||||
public class SysStoreAppResponse {
|
||||
@@ -29,6 +26,21 @@ public class SysStoreAppResponse {
|
||||
|
||||
private SupervisorDetail supervisorDetail;
|
||||
|
||||
private AuditDetail auditDetail;
|
||||
|
||||
|
||||
@Data
|
||||
public static class AuditDetail {
|
||||
@ApiModelProperty("0-视觉验收 1-培训登记审批 2-开业运营方案 3-证照审批 4-系统建店")
|
||||
private Integer auditType;
|
||||
@ApiModelProperty("结果类型 0通过,1拒绝")
|
||||
private Integer resultType;
|
||||
@ApiModelProperty("通过原因")
|
||||
private String passReason;
|
||||
@ApiModelProperty("拒绝原因")
|
||||
private String rejectReason;
|
||||
}
|
||||
|
||||
@Data
|
||||
@ApiModel("加盟商信息")
|
||||
public static class FranInfo {
|
||||
@@ -54,7 +66,7 @@ public class SysStoreAppResponse {
|
||||
"6-直营门店;" +
|
||||
"7-同异业转化;" +
|
||||
"8-老加盟商迁址开新店")
|
||||
private Integer franchiseeType;
|
||||
private Integer franchiseeType;
|
||||
|
||||
@ApiModelProperty("门店邀约人id")
|
||||
private String inviteUserId;
|
||||
@@ -65,7 +77,7 @@ public class SysStoreAppResponse {
|
||||
|
||||
@Data
|
||||
@ApiModel("门店信息")
|
||||
public static class StoreDetail{
|
||||
public static class StoreDetail {
|
||||
@ApiModelProperty("门店性质")
|
||||
private Integer storeNature;
|
||||
@ApiModelProperty("门店经营者")
|
||||
@@ -132,7 +144,7 @@ public class SysStoreAppResponse {
|
||||
|
||||
@Data
|
||||
@ApiModel("督导相关信息")
|
||||
public static class SupervisorDetail{
|
||||
public static class SupervisorDetail {
|
||||
|
||||
@ApiModelProperty("督导姓名")
|
||||
private String supervisorName;
|
||||
@@ -149,6 +161,4 @@ public class SysStoreAppResponse {
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user