|
@@ -28,6 +28,7 @@ import java.util.Date;
|
|
|
@Column(name="second_label_id", attrName="secondLabelId", label="二级标签id"),
|
|
|
@Column(name="use_down_pay", attrName="useDownPay", label="下载是否需要支付 0否 1是"),
|
|
|
@Column(name="use_down_pay_price", attrName="useDownPayPrice", label="下载需要支付单价"),
|
|
|
+ @Column(name="use_choiceness", attrName="useChoiceness", label="是否精选 0否 1是"),
|
|
|
}, orderBy="a.update_date DESC"
|
|
|
)
|
|
|
public class ResearchBriefReport extends DataEntity<ResearchBriefReport> {
|
|
@@ -41,6 +42,7 @@ public class ResearchBriefReport extends DataEntity<ResearchBriefReport> {
|
|
|
private String secondLabelId; // 二级标签id
|
|
|
private String useDownPay; // 下载是否需要支付 0否 1是
|
|
|
private BigDecimal useDownPayPrice; // 下载需要支付单价
|
|
|
+ private String useChoiceness; //是否精选 0否 1是
|
|
|
private Date publishDateStr; //发布日期起
|
|
|
private Date publishDateEnd; //发布日期止
|
|
|
private String topLabelName; // 一级标签id
|
|
@@ -135,6 +137,14 @@ public class ResearchBriefReport extends DataEntity<ResearchBriefReport> {
|
|
|
this.useDownPayPrice = useDownPayPrice;
|
|
|
}
|
|
|
|
|
|
+ public String getUseChoiceness() {
|
|
|
+ return useChoiceness;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUseChoiceness(String useChoiceness) {
|
|
|
+ this.useChoiceness = useChoiceness;
|
|
|
+ }
|
|
|
+
|
|
|
public Date getPublishDateStr() {
|
|
|
return publishDateStr;
|
|
|
}
|