k94314517
2024-09-30 4229bc67c2c0adf5603c7f68a1e55e480d011d75
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;
}