admin
2021-06-07 01e23be6118d68d38a71d186296d440eadcaa197
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
package com.tejia.lijin.app.entity;
 
import com.alibaba.fastjson.JSONObject;
import com.google.gson.annotations.Expose;
 
import java.io.Serializable;
import java.util.List;
 
public class LimitTimeBuy implements Serializable {
    @Expose
    private JSONObject params;
    @Expose
    JumpDetail jumpDetail;
    @Expose
    private List<String> imgList;
 
    public JSONObject getParams() {
        return params;
    }
 
    public void setParams(JSONObject params) {
        this.params = params;
    }
 
    public JumpDetail getJumpDetail() {
        return jumpDetail;
    }
 
    public void setJumpDetail(JumpDetail jumpDetail) {
        this.jumpDetail = jumpDetail;
    }
 
    public List<String> getImgList() {
        return imgList;
    }
 
    public void setImgList(List<String> imgList) {
        this.imgList = imgList;
    }
}