视觉验收1.0
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
package com.cool.store.request;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import io.swagger.annotations.ApiOperation;
|
||||
import lombok.Data;
|
||||
import org.springframework.web.bind.annotation.RequestParam;
|
||||
|
||||
@@ -13,7 +15,9 @@ import java.util.List;
|
||||
*/
|
||||
@Data
|
||||
public class AcceptanceListRequest {
|
||||
|
||||
@ApiModelProperty("门店名称或编码")
|
||||
private String request;
|
||||
@ApiModelProperty("阶段状态")
|
||||
private List<Integer> subStageStatus;
|
||||
private Integer pageNum;
|
||||
private Integer pageSize;
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
package com.cool.store.request;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
/**
|
||||
* @Auther: WangShuo
|
||||
* @Date: 2024/05/17/下午6:15
|
||||
* @Version 1.0
|
||||
* @注释:
|
||||
*/
|
||||
@Data
|
||||
public class SeeAcceptanceRequest {
|
||||
private Long shopId;
|
||||
@ApiModelProperty("'结果类型 0通过,1拒绝',")
|
||||
@NotNull(message = "审核结果不能为空")
|
||||
private Integer resultType;
|
||||
@ApiModelProperty("原因")
|
||||
private String reason;
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
package com.cool.store.request;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Auther: WangShuo
|
||||
* @Date: 2024/05/17/下午8:32
|
||||
* @Version 1.0
|
||||
* @注释:
|
||||
*/
|
||||
@Data
|
||||
public class SeeAccetanceListRequest {
|
||||
@ApiModelProperty("门店名称或编码")
|
||||
private String request;
|
||||
private Integer pageNum;
|
||||
private Integer pageSize;
|
||||
}
|
||||
Reference in New Issue
Block a user