| | |
| | | @Data |
| | | public class ProductAuditQueryCriteria { |
| | | |
| | | @NotNull |
| | | private String blurry; |
| | | |
| | | @ApiModelProperty(value = "商品ID") |
| | | private Long productId; |
| | | |
| | | @ApiModelProperty(value = "商品名称") |
| | | private String productName; |
| | | |
| | | @ApiModelProperty(value = "商品标题") |
| | | private String productTitle; |
| | | |
| | | private String createBy; |
| | | |
| | | @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; |
| | | |
| | | } |