package com.yeshi.buwan.videos.iqiyi.entity;
|
|
import org.springframework.data.annotation.Id;
|
import org.springframework.data.mongodb.core.index.Indexed;
|
import org.springframework.data.mongodb.core.mapping.Document;
|
|
@Document(collection = "iqiyiVideoMap")
|
public class VideoIqiyi2 {
|
@Id
|
private Long videoId;
|
@Indexed
|
private Long iqiyiId;
|
|
public Long getVideoId() {
|
return videoId;
|
}
|
|
public void setVideoId(Long videoId) {
|
this.videoId = videoId;
|
}
|
|
public Long getIqiyiId() {
|
return iqiyiId;
|
}
|
|
public void setIqiyiId(Long iqiyiId) {
|
this.iqiyiId = iqiyiId;
|
}
|
}
|