package com.jiuqi.mobile.nigo.comeclose.bean.app.news; import com.jiuqi.mobile.nigo.comeclose.bean.base.DataDictionaryBean; import com.jiuqi.mobile.nigo.comeclose.manager.base.DataDictionaryAnnotation; /** * 作业信息 * * @author modi * */ // @DBTable(name="T_NEWS_TASK_WORK") public class WorkTaskNewsBean extends TaskNews { // @DBColumn(comment="信息类型") @DataDictionaryAnnotation(initNames = { "机播信息", "机收信息", "机耕信息" }, mark = 10401, comment = "作业信息类别") private DataDictionaryBean newsType;// 机播、机耕、机收 // @DBColumn(comment="作业类型") @DataDictionaryAnnotation(initNames = { "小麦", "水稻", "玉米", "花生", "大豆", "大麦" }, mark = 10103, comment = "农作物类别") private DataDictionaryBean workType;// 小麦、水稻。。。 // @DBColumn(comment="作业面积多少亩") private int mus;// 亩 // @DBColumn(comment="每亩单价") private double price;// 单价 private double minPrice;// 最低价格 private double maxPrice;// 最高价格 // @DBColumn(comment="是否推送消息,1.是 0.否") private int isPush;// 是否推送消息 public DataDictionaryBean getNewsType() { return newsType; } public void setNewsType(DataDictionaryBean newsType) { this.newsType = newsType; } public DataDictionaryBean getWorkType() { return workType; } public void setWorkType(DataDictionaryBean workType) { this.workType = workType; } public int getMus() { return mus; } public void setMus(int mus) { this.mus = mus; } public double getPrice() { return price; } public void setPrice(double price) { this.price = price; } public double getMinPrice() { return minPrice; } public void setMinPrice(double minPrice) { this.minPrice = minPrice; } public double getMaxPrice() { return maxPrice; } public void setMaxPrice(double maxPrice) { this.maxPrice = maxPrice; } public int getIsPush() { return isPush; } public void setIsPush(int isPush) { this.isPush = isPush; } }