zepengdev
5 days ago fc0128242f812e476470dc9bada901d36ae09daf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.oying.modules.pc.store.domain.dto;
 
import lombok.Data;
import io.swagger.annotations.ApiModelProperty;
 
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
 
/**
* @author lzp
* @date 2025-07-01
**/
@Data
public class StoreAuditQueryCriteria {
 
    @NotNull
    @ApiModelProperty(value = "店铺ID")
    private Long storeId;
 
    @NotBlank
    @ApiModelProperty(value = "类型")
    private String type;
 
    @ApiModelProperty(value = "审核状态")
    private Integer status;
 
    @ApiModelProperty(value = "页码", example = "1")
    private Integer page = 1;
 
    @ApiModelProperty(value = "每页数据量", example = "10")
    private Integer size = 10;
 
}