liuxiaolong
2019-05-06 c15226e1b58f255dbebf1bdca8d4e53b9277249c
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
package com.basic.analy.model;
 
import java.io.Serializable;
import java.util.Date;
 
import org.springframework.format.annotation.DateTimeFormat;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
@JsonInclude(JsonInclude.Include.NON_NULL)
public class PerVideoPicture implements Serializable{
@JsonIgnore
    private String id;
    
    private String picName;
    
    private String personId;
    
    private String dataBase;
    
    private String personPicUrl;
    
    private Integer  likePer;
    
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
    private Date likeDate;
    
    private String picAddress;
    
    private String picMaxUrl;
    private String picLocalUrl;
    private String picSmUrl;
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
    private Date picDate;
    
    @JsonIgnore
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date startDate;
    @JsonIgnore
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date endDate;
    
    private String content;
    
    private String viType;
    
    private String age;
    
    private String gender;
    
    private String personIsHub;
    
    private Integer isDelete;
    
    private String videoNum;
    
    private String videoReqNum;
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getPicName() {
        return picName;
    }
 
    public void setPicName(String picName) {
        this.picName = picName;
    }
 
    public String getDataBase() {
        return dataBase;
    }
 
    public void setDataBase(String dataBase) {
        this.dataBase = dataBase;
    }
 
    public String getPersonId() {
        return personId;
    }
 
    public void setPersonId(String personId) {
        this.personId = personId;
    }
 
    public Date getLikeDate() {
        return likeDate;
    }
 
    public void setLikeDate(Date likeDate) {
        this.likeDate = likeDate;
    }
 
    public String getPersonPicUrl() {
        return personPicUrl;
    }
 
    public void setPersonPicUrl(String personPicUrl) {
        this.personPicUrl = personPicUrl;
    }
 
    public Integer getLikePer() {
        return likePer;
    }
 
    public void setLikePer(Integer likePer) {
        this.likePer = likePer;
    }
 
    public String getViType() {
        return viType;
    }
 
    public void setViType(String viType) {
        this.viType = viType;
    }
 
    public String getPicAddress() {
        return picAddress;
    }
 
    public void setPicAddress(String picAddress) {
        this.picAddress = picAddress;
    }
 
    public String getPicMaxUrl() {
        return picMaxUrl;
    }
 
    public Date getStartDate() {
        return startDate;
    }
 
    public void setStartDate(Date startDate) {
        this.startDate = startDate;
    }
 
    public Date getEndDate() {
        return endDate;
    }
 
    public void setEndDate(Date endDate) {
        this.endDate = endDate;
    }
 
    public void setPicMaxUrl(String picMaxUrl) {
        this.picMaxUrl = picMaxUrl;
    }
 
    public String getPicLocalUrl() {
        return picLocalUrl;
    }
 
    public void setPicLocalUrl(String picLocalUrl) {
        this.picLocalUrl = picLocalUrl;
    }
 
    public String getPicSmUrl() {
        return picSmUrl;
    }
 
    public void setPicSmUrl(String picSmUrl) {
        this.picSmUrl = picSmUrl;
    }
 
    public Date getPicDate() {
        return picDate;
    }
 
    public void setPicDate(Date picDate) {
        this.picDate = picDate;
    }
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
    public String getAge() {
        return age;
    }
 
    public void setAge(String age) {
        this.age = age;
    }
 
    public String getGender() {
        return gender;
    }
 
    public void setGender(String gender) {
        this.gender = gender;
    }
 
    public String getPersonIsHub() {
        return personIsHub;
    }
 
    public void setPersonIsHub(String personIsHub) {
        this.personIsHub = personIsHub;
    }
 
    public Integer getIsDelete() {
        return isDelete;
    }
 
    public void setIsDelete(Integer isDelete) {
        this.isDelete = isDelete;
    }
 
    public String getVideoNum() {
        return videoNum;
    }
 
    public void setVideoNum(String videoNum) {
        this.videoNum = videoNum;
    }
 
    public String getVideoReqNum() {
        return videoReqNum;
    }
 
    public void setVideoReqNum(String videoReqNum) {
        this.videoReqNum = videoReqNum;
    }
 
    public PerVideoPicture(String id, String picName, String personId, String personPicUrl, Integer likePer,
            Date likeDate, String picAddress, String picMaxUrl, String picLocalUrl, String picSmUrl, Date picDate,
            String content, String viType,String age,String gender, String personIsHub, Integer isDelete, String videoNum, String videoReqNum) {
        super();
        this.id = id;
        this.picName = picName;
        this.personId = personId;
        this.personPicUrl = personPicUrl;
        this.likePer = likePer;
        this.likeDate = likeDate;
        this.picAddress = picAddress;
        this.picMaxUrl = picMaxUrl;
        this.picLocalUrl = picLocalUrl;
        this.picSmUrl = picSmUrl;
        this.picDate = picDate;
        this.content = content;
        this.viType = viType;
        this.age = age;
        this.gender = gender;
        this.personIsHub = personIsHub;
        this.isDelete = isDelete;
        this.videoNum = videoNum;
        this.videoReqNum = videoReqNum;
    }
 
    public PerVideoPicture() {
        
    }
 
    @Override
    public String toString() {
        return "PerVideoPicture [id=" + id + ", picName=" + picName + ", personId=" + personId + ", personPicUrl="
                + personPicUrl + ", likePer=" + likePer + ", likeDate=" + likeDate + ", picAddress=" + picAddress
                + ", picMaxUrl=" + picMaxUrl + ", picLocalUrl=" + picLocalUrl + ", picSmUrl=" + picSmUrl + ", picDate="
                + picDate + ", startDate=" + startDate + ", endDate=" + endDate + ", content=" + content + ", viType="
                + viType + ", age=" + age + ", gender=" + gender + ", personIsHub=" + personIsHub + ", isDelete="
                + isDelete + ", videoNum=" + videoNum + ", videoReqNum=" + videoReqNum + "]";
    }
}