package com.jiuqi.mobile.nigo.comeclose.bean.app.news; import com.jiuqi.mobile.nigo.comeclose.bean.base.DataDictionaryBean; import com.jiuqi.mobile.nigo.comeclose.bean.base.KindsOfCarBean; import com.jiuqi.mobile.nigo.comeclose.manager.base.DataDictionaryAnnotation; /** * 农机信息 * * @author modi * */ // @DBTable(name="T_NEWS_TASK_CAR") public class CarTaskNewsBean extends TaskNews { // @DBColumn(comment="信息类别") @DataDictionaryAnnotation(initNames = { "拟引进", "拟调出" }, mark = 10101, comment = "车辆消息信息类别") private DataDictionaryBean newsType;// 信息类别,拟引进、拟调出 // @DBColumn(comment="农机类别") @DataDictionaryAnnotation(mark = 1, comment = "农机大类") private DataDictionaryBean carType;// 农机类别已废弃 // @DBColumn(comment="农机类别") private KindsOfCarBean carTypeNew;// 农机类别 // @DBColumn(comment="农作物类别") @DataDictionaryAnnotation(initNames = { "小麦", "水稻", "玉米", "花生", "大豆", "大麦" }, mark = 10103, comment = "农作物类别") private DataDictionaryBean cropType;// 农作物类别 // @DBColumn(comment="机械数量") private int count;// 机械数量 // @DBColumn(comment="作业单价") private double price;// 作业单价 private double maxPrice;// 最高价格 private double minPrice;// 最低价格 // @DBColumn(comment="是否接受推送消息,0.不接受 1.接受") private int isReceive;// 是否接受推送消息 public DataDictionaryBean getNewsType() { return newsType; } public void setNewsType(DataDictionaryBean newsType) { this.newsType = newsType; } public DataDictionaryBean getCarType() { return carType; } public void setCarType(DataDictionaryBean carType) { this.carType = carType; } public DataDictionaryBean getCropType() { return cropType; } public void setCropType(DataDictionaryBean cropType) { this.cropType = cropType; } public int getCount() { return count; } public void setCount(int count) { this.count = count; } public double getPrice() { return price; } public void setPrice(double price) { this.price = price; } public double getMaxPrice() { return maxPrice; } public void setMaxPrice(double maxPrice) { this.maxPrice = maxPrice; } public double getMinPrice() { return minPrice; } public void setMinPrice(double minPrice) { this.minPrice = minPrice; } public KindsOfCarBean getCarTypeNew() { return carTypeNew; } public void setCarTypeNew(KindsOfCarBean carTypeNew) { this.carTypeNew = carTypeNew; } public int getIsReceive() { return isReceive; } public void setIsReceive(int isReceive) { this.isReceive = isReceive; } }