jyy
2021-04-09 1443f8eb9f3b001e84f101852aa5f6ec7f49f4c9
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package com.matrix.system.shopXcx.api.vo;
 
/**
 * @author wzy
 * @date 2020-04-21 11:36
 **/
public class SalonVO {
 
    private Integer offset;
 
    private Integer limit;
 
    private Long shopId;
 
    private String userId;
 
    private Long actId;
 
    private Long companyId;
 
    public Long getCompanyId() {
        return companyId;
    }
 
    public void setCompanyId(Long companyId) {
        this.companyId = companyId;
    }
 
    public Integer getOffset() {
        if (this.offset == null || this.offset < 0) {
            return 0;
        }
        return offset;
    }
 
    public void setOffset(Integer offset) {
        this.offset = offset;
    }
 
    public Integer getLimit() {
        if (this.limit == null || this.limit < 0) {
            return 10;
        }
        return limit;
    }
 
    public void setLimit(Integer limit) {
        this.limit = limit;
    }
 
    public Long getShopId() {
        return shopId;
    }
 
    public void setShopId(Long shopId) {
        this.shopId = shopId;
    }
 
    public String getUserId() {
        return userId;
    }
 
    public void setUserId(String userId) {
        this.userId = userId;
    }
 
    public Long getActId() {
        return actId;
    }
 
    public void setActId(Long actId) {
        this.actId = actId;
    }
}