nidapeng
2024-03-08 57a2020223e33def0a22c42307871ef2a765af25
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;
}