package com.landtool.lanbase.modules.res.entity.ZiYuanTongJi;
|
|
public class GroupByPubDate {
|
private String resourceclass;
|
private Integer month;
|
private Integer count;
|
|
public String getResourceclass() {
|
return resourceclass;
|
}
|
|
public void setResourceclass(String resourceclass) {
|
this.resourceclass = resourceclass;
|
}
|
|
|
public Integer getMonth() {
|
return month;
|
}
|
|
public void setMonth(Integer month) {
|
this.month = month;
|
}
|
|
public Integer getCount() {
|
return count;
|
}
|
|
public void setCount(Integer count) {
|
this.count = count;
|
}
|
}
|