|
|
|
@ -1,6 +1,4 @@ |
|
|
|
|
package web.model; |
|
|
|
|
|
|
|
|
|
import core.model.AbstractModel; |
|
|
|
|
package db.model; |
|
|
|
|
|
|
|
|
|
import javax.persistence.*; |
|
|
|
|
import java.io.Serializable; |
|
|
|
@ -8,37 +6,37 @@ import java.util.Objects; |
|
|
|
|
|
|
|
|
|
@Entity |
|
|
|
|
@Table(name = "data", schema = "bilibili", catalog = "") |
|
|
|
|
public class DataEntity extends AbstractModel { |
|
|
|
|
public class DataModel extends AbstractModel { |
|
|
|
|
private int cid; |
|
|
|
|
private Integer aid; |
|
|
|
|
private Byte dpDoneMp4; |
|
|
|
|
private String letvVu; |
|
|
|
|
private Byte dpDoneFlv; |
|
|
|
|
private Integer uploadMeta; |
|
|
|
|
private String type; |
|
|
|
|
private Integer vp; |
|
|
|
|
private Integer upload; |
|
|
|
|
private String author; |
|
|
|
|
private String backupVid; |
|
|
|
|
private String cache; |
|
|
|
|
private String cover; |
|
|
|
|
private String title; |
|
|
|
|
private Integer page; |
|
|
|
|
private Integer dispatch; |
|
|
|
|
private String vid; |
|
|
|
|
private String backupVid; |
|
|
|
|
private Integer files; |
|
|
|
|
private Integer dispatchServers; |
|
|
|
|
private String cache; |
|
|
|
|
private Integer storageServer; |
|
|
|
|
private Byte dpDone; |
|
|
|
|
private Double duration; |
|
|
|
|
private Integer mid; |
|
|
|
|
private Byte dpDoneFlv; |
|
|
|
|
private Byte dpDoneHdmp4; |
|
|
|
|
private Byte dpDoneMp4; |
|
|
|
|
private Double duration; |
|
|
|
|
private Integer files; |
|
|
|
|
private String letvAddr; |
|
|
|
|
private Integer letvVid; |
|
|
|
|
private String letvVu; |
|
|
|
|
private Integer mid; |
|
|
|
|
private Integer page; |
|
|
|
|
private Integer storage; |
|
|
|
|
private String letvAddr; |
|
|
|
|
private Integer storageServer; |
|
|
|
|
private String subtitle; |
|
|
|
|
private String title; |
|
|
|
|
private String type; |
|
|
|
|
private Integer upload; |
|
|
|
|
private Integer uploadMeta; |
|
|
|
|
private String vid; |
|
|
|
|
private Integer vp; |
|
|
|
|
private Integer typeId; |
|
|
|
|
|
|
|
|
|
private CidEntity cidEntity; |
|
|
|
|
@Id |
|
|
|
|
@Column(name = "cid") |
|
|
|
|
public int getCid() { |
|
|
|
@ -60,173 +58,183 @@ public class DataEntity extends AbstractModel { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Basic |
|
|
|
|
@Column(name = "dp_done_mp4") |
|
|
|
|
public Byte getDpDoneMp4() { |
|
|
|
|
return dpDoneMp4; |
|
|
|
|
@Column(name = "author") |
|
|
|
|
public String getAuthor() { |
|
|
|
|
return author; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setDpDoneMp4(Byte dpDoneMp4) { |
|
|
|
|
this.dpDoneMp4 = dpDoneMp4; |
|
|
|
|
public void setAuthor(String author) { |
|
|
|
|
this.author = author; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Basic |
|
|
|
|
@Column(name = "letv_vu") |
|
|
|
|
public String getLetvVu() { |
|
|
|
|
return letvVu; |
|
|
|
|
@Column(name = "backup_vid") |
|
|
|
|
public String getBackupVid() { |
|
|
|
|
return backupVid; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setLetvVu(String letvVu) { |
|
|
|
|
this.letvVu = letvVu; |
|
|
|
|
public void setBackupVid(String backupVid) { |
|
|
|
|
this.backupVid = backupVid; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Basic |
|
|
|
|
@Column(name = "dp_done_flv") |
|
|
|
|
public Byte getDpDoneFlv() { |
|
|
|
|
return dpDoneFlv; |
|
|
|
|
@Column(name = "cache") |
|
|
|
|
public String getCache() { |
|
|
|
|
return cache; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setDpDoneFlv(Byte dpDoneFlv) { |
|
|
|
|
this.dpDoneFlv = dpDoneFlv; |
|
|
|
|
public void setCache(String cache) { |
|
|
|
|
this.cache = cache; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Basic |
|
|
|
|
@Column(name = "upload_meta") |
|
|
|
|
public Integer getUploadMeta() { |
|
|
|
|
return uploadMeta; |
|
|
|
|
@Column(name = "cover") |
|
|
|
|
public String getCover() { |
|
|
|
|
return cover; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setUploadMeta(Integer uploadMeta) { |
|
|
|
|
this.uploadMeta = uploadMeta; |
|
|
|
|
public void setCover(String cover) { |
|
|
|
|
this.cover = cover; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Basic |
|
|
|
|
@Column(name = "type") |
|
|
|
|
public String getType() { |
|
|
|
|
return type; |
|
|
|
|
@Column(name = "dispatch") |
|
|
|
|
public Integer getDispatch() { |
|
|
|
|
return dispatch; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setType(String type) { |
|
|
|
|
this.type = type; |
|
|
|
|
public void setDispatch(Integer dispatch) { |
|
|
|
|
this.dispatch = dispatch; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Basic |
|
|
|
|
@Column(name = "vp") |
|
|
|
|
public Integer getVp() { |
|
|
|
|
return vp; |
|
|
|
|
@Column(name = "dispatch_servers") |
|
|
|
|
public Integer getDispatchServers() { |
|
|
|
|
return dispatchServers; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setVp(Integer vp) { |
|
|
|
|
this.vp = vp; |
|
|
|
|
public void setDispatchServers(Integer dispatchServers) { |
|
|
|
|
this.dispatchServers = dispatchServers; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Basic |
|
|
|
|
@Column(name = "upload") |
|
|
|
|
public Integer getUpload() { |
|
|
|
|
return upload; |
|
|
|
|
@Column(name = "dp_done") |
|
|
|
|
public Byte getDpDone() { |
|
|
|
|
return dpDone; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setUpload(Integer upload) { |
|
|
|
|
this.upload = upload; |
|
|
|
|
public void setDpDone(Byte dpDone) { |
|
|
|
|
this.dpDone = dpDone; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Basic |
|
|
|
|
@Column(name = "author") |
|
|
|
|
public String getAuthor() { |
|
|
|
|
return author; |
|
|
|
|
@Column(name = "dp_done_flv") |
|
|
|
|
public Byte getDpDoneFlv() { |
|
|
|
|
return dpDoneFlv; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setAuthor(String author) { |
|
|
|
|
this.author = author; |
|
|
|
|
public void setDpDoneFlv(Byte dpDoneFlv) { |
|
|
|
|
this.dpDoneFlv = dpDoneFlv; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Basic |
|
|
|
|
@Column(name = "cover") |
|
|
|
|
public String getCover() { |
|
|
|
|
return cover; |
|
|
|
|
@Column(name = "dp_done_hdmp4") |
|
|
|
|
public Byte getDpDoneHdmp4() { |
|
|
|
|
return dpDoneHdmp4; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setCover(String cover) { |
|
|
|
|
this.cover = cover; |
|
|
|
|
public void setDpDoneHdmp4(Byte dpDoneHdmp4) { |
|
|
|
|
this.dpDoneHdmp4 = dpDoneHdmp4; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Basic |
|
|
|
|
@Column(name = "title") |
|
|
|
|
public String getTitle() { |
|
|
|
|
return title; |
|
|
|
|
@Column(name = "dp_done_mp4") |
|
|
|
|
public Byte getDpDoneMp4() { |
|
|
|
|
return dpDoneMp4; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setTitle(String title) { |
|
|
|
|
this.title = title; |
|
|
|
|
public void setDpDoneMp4(Byte dpDoneMp4) { |
|
|
|
|
this.dpDoneMp4 = dpDoneMp4; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Basic |
|
|
|
|
@Column(name = "page") |
|
|
|
|
public Integer getPage() { |
|
|
|
|
return page; |
|
|
|
|
@Column(name = "duration") |
|
|
|
|
public Double getDuration() { |
|
|
|
|
return duration; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setPage(Integer page) { |
|
|
|
|
this.page = page; |
|
|
|
|
public void setDuration(Double duration) { |
|
|
|
|
this.duration = duration; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Basic |
|
|
|
|
@Column(name = "dispatch") |
|
|
|
|
public Integer getDispatch() { |
|
|
|
|
return dispatch; |
|
|
|
|
@Column(name = "files") |
|
|
|
|
public Integer getFiles() { |
|
|
|
|
return files; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setDispatch(Integer dispatch) { |
|
|
|
|
this.dispatch = dispatch; |
|
|
|
|
public void setFiles(Integer files) { |
|
|
|
|
this.files = files; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Basic |
|
|
|
|
@Column(name = "vid") |
|
|
|
|
public String getVid() { |
|
|
|
|
return vid; |
|
|
|
|
@Column(name = "letv_addr") |
|
|
|
|
public String getLetvAddr() { |
|
|
|
|
return letvAddr; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setVid(String vid) { |
|
|
|
|
this.vid = vid; |
|
|
|
|
public void setLetvAddr(String letvAddr) { |
|
|
|
|
this.letvAddr = letvAddr; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Basic |
|
|
|
|
@Column(name = "backup_vid") |
|
|
|
|
public String getBackupVid() { |
|
|
|
|
return backupVid; |
|
|
|
|
@Column(name = "letv_vid") |
|
|
|
|
public Integer getLetvVid() { |
|
|
|
|
return letvVid; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setBackupVid(String backupVid) { |
|
|
|
|
this.backupVid = backupVid; |
|
|
|
|
public void setLetvVid(Integer letvVid) { |
|
|
|
|
this.letvVid = letvVid; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Basic |
|
|
|
|
@Column(name = "files") |
|
|
|
|
public Integer getFiles() { |
|
|
|
|
return files; |
|
|
|
|
@Column(name = "letv_vu") |
|
|
|
|
public String getLetvVu() { |
|
|
|
|
return letvVu; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setFiles(Integer files) { |
|
|
|
|
this.files = files; |
|
|
|
|
public void setLetvVu(String letvVu) { |
|
|
|
|
this.letvVu = letvVu; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Basic |
|
|
|
|
@Column(name = "dispatch_servers") |
|
|
|
|
public Integer getDispatchServers() { |
|
|
|
|
return dispatchServers; |
|
|
|
|
@Column(name = "mid") |
|
|
|
|
public Integer getMid() { |
|
|
|
|
return mid; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setDispatchServers(Integer dispatchServers) { |
|
|
|
|
this.dispatchServers = dispatchServers; |
|
|
|
|
public void setMid(Integer mid) { |
|
|
|
|
this.mid = mid; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Basic |
|
|
|
|
@Column(name = "cache") |
|
|
|
|
public String getCache() { |
|
|
|
|
return cache; |
|
|
|
|
@Column(name = "page") |
|
|
|
|
public Integer getPage() { |
|
|
|
|
return page; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setCache(String cache) { |
|
|
|
|
this.cache = cache; |
|
|
|
|
public void setPage(Integer page) { |
|
|
|
|
this.page = page; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Basic |
|
|
|
|
@Column(name = "storage") |
|
|
|
|
public Integer getStorage() { |
|
|
|
|
return storage; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setStorage(Integer storage) { |
|
|
|
|
this.storage = storage; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Basic |
|
|
|
@ -240,134 +248,125 @@ public class DataEntity extends AbstractModel { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Basic |
|
|
|
|
@Column(name = "dp_done") |
|
|
|
|
public Byte getDpDone() { |
|
|
|
|
return dpDone; |
|
|
|
|
@Column(name = "subtitle") |
|
|
|
|
public String getSubtitle() { |
|
|
|
|
return subtitle; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setDpDone(Byte dpDone) { |
|
|
|
|
this.dpDone = dpDone; |
|
|
|
|
public void setSubtitle(String subtitle) { |
|
|
|
|
this.subtitle = subtitle; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Basic |
|
|
|
|
@Column(name = "duration") |
|
|
|
|
public Double getDuration() { |
|
|
|
|
return duration; |
|
|
|
|
@Column(name = "title") |
|
|
|
|
public String getTitle() { |
|
|
|
|
return title; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setDuration(Double duration) { |
|
|
|
|
this.duration = duration; |
|
|
|
|
public void setTitle(String title) { |
|
|
|
|
this.title = title; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Basic |
|
|
|
|
@Column(name = "mid") |
|
|
|
|
public Integer getMid() { |
|
|
|
|
return mid; |
|
|
|
|
@Column(name = "type") |
|
|
|
|
public String getType() { |
|
|
|
|
return type; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setMid(Integer mid) { |
|
|
|
|
this.mid = mid; |
|
|
|
|
public void setType(String type) { |
|
|
|
|
this.type = type; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Basic |
|
|
|
|
@Column(name = "dp_done_hdmp4") |
|
|
|
|
public Byte getDpDoneHdmp4() { |
|
|
|
|
return dpDoneHdmp4; |
|
|
|
|
@Column(name = "upload") |
|
|
|
|
public Integer getUpload() { |
|
|
|
|
return upload; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setDpDoneHdmp4(Byte dpDoneHdmp4) { |
|
|
|
|
this.dpDoneHdmp4 = dpDoneHdmp4; |
|
|
|
|
public void setUpload(Integer upload) { |
|
|
|
|
this.upload = upload; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Basic |
|
|
|
|
@Column(name = "letv_vid") |
|
|
|
|
public Integer getLetvVid() { |
|
|
|
|
return letvVid; |
|
|
|
|
@Column(name = "upload_meta") |
|
|
|
|
public Integer getUploadMeta() { |
|
|
|
|
return uploadMeta; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setLetvVid(Integer letvVid) { |
|
|
|
|
this.letvVid = letvVid; |
|
|
|
|
public void setUploadMeta(Integer uploadMeta) { |
|
|
|
|
this.uploadMeta = uploadMeta; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Basic |
|
|
|
|
@Column(name = "storage") |
|
|
|
|
public Integer getStorage() { |
|
|
|
|
return storage; |
|
|
|
|
@Column(name = "vid") |
|
|
|
|
public String getVid() { |
|
|
|
|
return vid; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setStorage(Integer storage) { |
|
|
|
|
this.storage = storage; |
|
|
|
|
public void setVid(String vid) { |
|
|
|
|
this.vid = vid; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Basic |
|
|
|
|
@Column(name = "letv_addr") |
|
|
|
|
public String getLetvAddr() { |
|
|
|
|
return letvAddr; |
|
|
|
|
@Column(name = "vp") |
|
|
|
|
public Integer getVp() { |
|
|
|
|
return vp; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setLetvAddr(String letvAddr) { |
|
|
|
|
this.letvAddr = letvAddr; |
|
|
|
|
public void setVp(Integer vp) { |
|
|
|
|
this.vp = vp; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Basic |
|
|
|
|
@Column(name = "subtitle") |
|
|
|
|
public String getSubtitle() { |
|
|
|
|
return subtitle; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setSubtitle(String subtitle) { |
|
|
|
|
this.subtitle = subtitle; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@OneToOne |
|
|
|
|
@JoinColumn(name = "cid") |
|
|
|
|
public CidEntity getCidEntity() { |
|
|
|
|
return cidEntity; |
|
|
|
|
@Column(name = "type_id") |
|
|
|
|
public Integer getTypeId() { |
|
|
|
|
return typeId; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setCidEntity(CidEntity cidEntity) { |
|
|
|
|
this.cidEntity = cidEntity; |
|
|
|
|
public void setTypeId(Integer typeId) { |
|
|
|
|
this.typeId = typeId; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public boolean equals(Object o) { |
|
|
|
|
if (this == o) return true; |
|
|
|
|
if (o == null || getClass() != o.getClass()) return false; |
|
|
|
|
DataEntity that = (DataEntity) o; |
|
|
|
|
return cid == that.cid && |
|
|
|
|
Objects.equals(aid, that.aid) && |
|
|
|
|
Objects.equals(dpDoneMp4, that.dpDoneMp4) && |
|
|
|
|
Objects.equals(letvVu, that.letvVu) && |
|
|
|
|
Objects.equals(dpDoneFlv, that.dpDoneFlv) && |
|
|
|
|
Objects.equals(uploadMeta, that.uploadMeta) && |
|
|
|
|
Objects.equals(type, that.type) && |
|
|
|
|
Objects.equals(vp, that.vp) && |
|
|
|
|
Objects.equals(upload, that.upload) && |
|
|
|
|
Objects.equals(author, that.author) && |
|
|
|
|
Objects.equals(cover, that.cover) && |
|
|
|
|
Objects.equals(title, that.title) && |
|
|
|
|
Objects.equals(page, that.page) && |
|
|
|
|
Objects.equals(dispatch, that.dispatch) && |
|
|
|
|
Objects.equals(vid, that.vid) && |
|
|
|
|
Objects.equals(backupVid, that.backupVid) && |
|
|
|
|
Objects.equals(files, that.files) && |
|
|
|
|
Objects.equals(dispatchServers, that.dispatchServers) && |
|
|
|
|
Objects.equals(cache, that.cache) && |
|
|
|
|
Objects.equals(storageServer, that.storageServer) && |
|
|
|
|
Objects.equals(dpDone, that.dpDone) && |
|
|
|
|
Objects.equals(duration, that.duration) && |
|
|
|
|
Objects.equals(mid, that.mid) && |
|
|
|
|
Objects.equals(dpDoneHdmp4, that.dpDoneHdmp4) && |
|
|
|
|
Objects.equals(letvVid, that.letvVid) && |
|
|
|
|
Objects.equals(storage, that.storage) && |
|
|
|
|
Objects.equals(letvAddr, that.letvAddr) && |
|
|
|
|
Objects.equals(subtitle, that.subtitle); |
|
|
|
|
DataModel dataModel = (DataModel) o; |
|
|
|
|
return cid == dataModel.cid && |
|
|
|
|
Objects.equals(aid, dataModel.aid) && |
|
|
|
|
Objects.equals(author, dataModel.author) && |
|
|
|
|
Objects.equals(backupVid, dataModel.backupVid) && |
|
|
|
|
Objects.equals(cache, dataModel.cache) && |
|
|
|
|
Objects.equals(cover, dataModel.cover) && |
|
|
|
|
Objects.equals(dispatch, dataModel.dispatch) && |
|
|
|
|
Objects.equals(dispatchServers, dataModel.dispatchServers) && |
|
|
|
|
Objects.equals(dpDone, dataModel.dpDone) && |
|
|
|
|
Objects.equals(dpDoneFlv, dataModel.dpDoneFlv) && |
|
|
|
|
Objects.equals(dpDoneHdmp4, dataModel.dpDoneHdmp4) && |
|
|
|
|
Objects.equals(dpDoneMp4, dataModel.dpDoneMp4) && |
|
|
|
|
Objects.equals(duration, dataModel.duration) && |
|
|
|
|
Objects.equals(files, dataModel.files) && |
|
|
|
|
Objects.equals(letvAddr, dataModel.letvAddr) && |
|
|
|
|
Objects.equals(letvVid, dataModel.letvVid) && |
|
|
|
|
Objects.equals(letvVu, dataModel.letvVu) && |
|
|
|
|
Objects.equals(mid, dataModel.mid) && |
|
|
|
|
Objects.equals(page, dataModel.page) && |
|
|
|
|
Objects.equals(storage, dataModel.storage) && |
|
|
|
|
Objects.equals(storageServer, dataModel.storageServer) && |
|
|
|
|
Objects.equals(subtitle, dataModel.subtitle) && |
|
|
|
|
Objects.equals(title, dataModel.title) && |
|
|
|
|
Objects.equals(type, dataModel.type) && |
|
|
|
|
Objects.equals(upload, dataModel.upload) && |
|
|
|
|
Objects.equals(uploadMeta, dataModel.uploadMeta) && |
|
|
|
|
Objects.equals(vid, dataModel.vid) && |
|
|
|
|
Objects.equals(vp, dataModel.vp) && |
|
|
|
|
Objects.equals(typeId, dataModel.typeId); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public int hashCode() { |
|
|
|
|
|
|
|
|
|
return Objects.hash(cid, aid, dpDoneMp4, letvVu, dpDoneFlv, uploadMeta, type, vp, upload, author, cover, title, page, dispatch, vid, backupVid, files, dispatchServers, cache, storageServer, dpDone, duration, mid, dpDoneHdmp4, letvVid, storage, letvAddr, subtitle); |
|
|
|
|
return Objects.hash(cid, aid, author, backupVid, cache, cover, dispatch, dispatchServers, dpDone, dpDoneFlv, dpDoneHdmp4, dpDoneMp4, duration, files, letvAddr, letvVid, letvVu, mid, page, storage, storageServer, subtitle, title, type, upload, uploadMeta, vid, vp, typeId); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |