feat:加盟合同阶段处理
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
package com.cool.store.request;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Author suzhuhong
|
||||
* @Date 2025/5/7 15:01
|
||||
* @Version 1.0
|
||||
*/
|
||||
@Data
|
||||
public class AuditApproveRequest {
|
||||
|
||||
@ApiModelProperty("审核结果 1:成功 0:失败")
|
||||
private Integer auditResult;
|
||||
|
||||
@ApiModelProperty("通过/失败原因")
|
||||
private String cause = "";
|
||||
|
||||
private Long shopId;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
package com.cool.store.request;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* @Author suzhuhong
|
||||
* @Date 2025/5/7 17:25
|
||||
* @Version 1.0
|
||||
*/
|
||||
@Data
|
||||
public class OperationLogRequest {
|
||||
|
||||
@ApiModelProperty("门店ID")
|
||||
@NotNull(message = "门店ID不能为空")
|
||||
private Long shopId;
|
||||
|
||||
@ApiModelProperty("子阶段状态")
|
||||
@NotNull(message = "子阶段状态不能为空")
|
||||
private List<Integer> subStageStatusList;
|
||||
}
|
||||
Reference in New Issue
Block a user