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 + "]";
|
}
|
}
|