Administrator
1 days ago 751bb3472ca0502dd3be5dc3c7165516486a3767
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;
 
}