package com.jiuqi.mobile.nigo.comeclose.bean.base; import com.jiuqi.mobile.nigo.comeclose.bean.NiGoBean; /** * 意见反馈 * * @author Administrator * */ public class FeedBackBean extends NiGoBean { // @DBColumn( comment ="手机品牌") private String brand; // @DBColumn( comment ="手机型号") private String model; // @DBColumn( comment ="android版本号") private String androidVersion; // @DBColumn( comment ="手机分辨率") private String resolution; // @DBColumn( comment ="联系方式") private String contactInfo; // @DBColumn( comment ="意见标题") private String title; // @DBColumn( comment ="意见内容") private String content; // @DBColumn( comment ="信息类型") private FeedInfoType infoType; public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getBrand() { return brand; } public void setBrand(String brand) { this.brand = brand; } public String getModel() { return model; } public void setModel(String model) { this.model = model; } public String getAndroidVersion() { return androidVersion; } public void setAndroidVersion(String androidVersion) { this.androidVersion = androidVersion; } public String getResolution() { return resolution; } public void setResolution(String resolution) { this.resolution = resolution; } public String getContactInfo() { return contactInfo; } public void setContactInfo(String contactInfo) { this.contactInfo = contactInfo; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } public FeedInfoType getInfoType() { return infoType; } public void setInfoType(FeedInfoType infoType) { this.infoType = infoType; } }