nidapeng
2024-04-19 f49d12e6071858dbd6b4bd0c1adc1a101757f6c8
1
2
3
4
5
6
7
8
9
10
11
12
package com.doumee.model;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@ApiModel("请求参数信息")
@Data
public class BaseRequest {
    @ApiModelProperty(value = "查询类型 0近7天 1近15天 2近30天", example = "1")
    private int type;
}