935090232@qq.com
2021-01-09 2e3c12ca3a7241f498c32121cb1572502c998d0d
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.pojo;
 
public class ApplyOrderQueryPOJO {
 
    private Long comId;
 
    private String startTime;
 
    private String endTime;
 
    private String applyStatus;
 
    private String applyNo;
 
    private String shopName;
 
    private Long shopId;
 
    public Long getShopId() {
        return shopId;
    }
 
    public void setShopId(Long shopId) {
        this.shopId = shopId;
    }
 
    public String getStartTime() {
        return startTime;
    }
 
    public void setStartTime(String startTime) {
        this.startTime = startTime;
    }
 
    public String getEndTime() {
        return endTime;
    }
 
    public void setEndTime(String endTime) {
        this.endTime = endTime;
    }
 
    public String getApplyStatus() {
        return applyStatus;
    }
 
    public void setApplyStatus(String applyStatus) {
        this.applyStatus = applyStatus;
    }
 
    public String getApplyNo() {
        return applyNo;
    }
 
    public void setApplyNo(String applyNo) {
        this.applyNo = applyNo;
    }
 
    public Long getComId() {
        return comId;
    }
 
    public void setComId(Long comId) {
        this.comId = comId;
    }
 
    public String getShopName() {
        return shopName;
    }
 
    public void setShopName(String shopName) {
        this.shopName = shopName;
    }
}