admin
2021-01-25 d182390205a9828bd1091b06fa712e028004c687
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
package com.newvideo.domain;
 
import com.google.gson.annotations.Expose;
 
public class FindVideo {
    @Expose
    private Long id;
    @Expose
    private VideoInfo videoInfo;
    @Expose
    private String picture;
    private Integer orderBy;
    @Expose
    private String tag;
    @Expose
    private String type;
    
    private FindClass findClass;
    public FindVideo() {
    }
    
    public FindVideo(Long id) {
        super();
        this.id = id;
    }
 
    public Long getId() {
        return id;
    }
    public void setId(Long id) {
        this.id = id;
    }
    public VideoInfo getVideoInfo() {
        return videoInfo;
    }
    public void setVideoInfo(VideoInfo videoInfo) {
        this.videoInfo = videoInfo;
    }
    public String getPicture() {
        return picture;
    }
    public void setPicture(String picture) {
        this.picture = picture;
    }
    public Integer getOrderBy() {
        return orderBy;
    }
    public void setOrderBy(Integer orderBy) {
        this.orderBy = orderBy;
    }
    public String getTag() {
        return tag;
    }
    public void setTag(String tag) {
        this.tag = tag;
    }
    public FindClass getFindClass() {
        return findClass;
    }
    public void setFindClass(FindClass findClass) {
        this.findClass = findClass;
    }
    public String getType() {
        return type;
    }
    public void setType(String type) {
        this.type = type;
    }
    
}