admin
2021-06-26 5d9e2fbeab87327ce11080485bf4d971f93f542a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package com.matrix.system.app.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
@ApiModel(value = "BusinessesDto", description = "门店/公司报表参数接受类")
public class BusinessesDto extends BasePageDto{
 
    public static final String DAY = "1";
 
    public static final String MONTH = "2";
 
    @ApiModelProperty(value = "type 1-每日 2-每月", example = "1")
    private String type;
 
    @ApiModelProperty(value = "门店ID", example = "34")
    private Long shopId;
 
    @ApiModelProperty(value = "会员ID")
    private Long staffId;
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public Long getShopId() {
        return shopId;
    }
 
    public void setShopId(Long shopId) {
        this.shopId = shopId;
    }
 
    public Long getStaffId() {
        return staffId;
    }
 
    public void setStaffId(Long staffId) {
        this.staffId = staffId;
    }
}