admin
2021-01-28 8c1c003c60d2f27b3c55e248451caeec7f2b5631
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
package com.ks.daylucky.pojo.VO;
 
import com.ks.app.entity.AppInfo;
 
public class AcceptData {
    private String sign;
    private String appKey;
    private Long timeStamp;
    private Integer version;
 
 
    /**
     * 需要注入的字段
     */
    private Long uid;
    private AppInfo app;
 
    public Long getUid() {
        return uid;
    }
 
    public void setUid(Long uid) {
        this.uid = uid;
    }
 
    public AppInfo getApp() {
        return app;
    }
 
    public void setApp(AppInfo app) {
        this.app = app;
    }
 
    public Long getTimeStamp() {
        return timeStamp;
    }
 
    public void setTimeStamp(Long timeStamp) {
        this.timeStamp = timeStamp;
    }
 
    public String getSign() {
        return sign;
    }
 
    public void setSign(String sign) {
        this.sign = sign;
    }
 
    public String getAppKey() {
        return appKey;
    }
 
    public void setAppKey(String appKey) {
        this.appKey = appKey;
    }
 
    public Integer getVersion() {
        return version;
    }
 
    public void setVersion(Integer version) {
        this.version = version;
    }
 
}