Administrator
4 days ago 9d878bc8c45d2fac7e1ab44b768f6b4f1cdf8b2d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package cc.mrbird.febs.mall.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "ApiMallInvoiceDto", description = "参数接收类")
public class ApiMallInvoiceDto {
 
    @ApiModelProperty(value = "一页数量", example = "10")
    private Integer pageSize;
 
    @ApiModelProperty(value = "第几页", example = "1")
    private Integer pageNum;
 
    @ApiModelProperty(value = "开票状态:0:未开票 1:开票中 2:已开票")
    private Integer state;
 
    @ApiModelProperty(hidden = true)
    private Long memberId;
 
}