package com.yeshi.buwan.query;
|
|
public class Iqiyi2AlbumQuery {
|
private Long featureAlbumId;
|
private Integer channelId;
|
private Integer contentType;
|
|
public Long getFeatureAlbumId() {
|
return featureAlbumId;
|
}
|
|
public void setFeatureAlbumId(Long featureAlbumId) {
|
this.featureAlbumId = featureAlbumId;
|
}
|
|
public Integer getChannelId() {
|
return channelId;
|
}
|
|
public void setChannelId(Integer channelId) {
|
this.channelId = channelId;
|
}
|
|
public Integer getContentType() {
|
return contentType;
|
}
|
|
public void setContentType(Integer contentType) {
|
this.contentType = contentType;
|
}
|
}
|