package com.jiuqi.mobile.nigo.comeclose.bean.app.collect; import com.jiuqi.mobile.nigo.comeclose.bean.base.DataDictionaryBean; import com.jiuqi.mobile.nigo.comeclose.manager.base.DataDictionaryAnnotation; /** * 农机驾校 * @author modi * */ //@DBTable(name = "T_SERVICE_SCHOOL") public class DrivingSchoolServiceBean extends ServiceCollectBean{ // @DBColumn(length = 1000, comment = "介绍,备注") private String memo; // @DBColumn(comment = "联系人") private String contactPerson; // @DBColumn(comment = "联系电话") private String contactNumber; @DataDictionaryAnnotation(mark = 90002, comment = "机构类别") private DataDictionaryBean orgType; // @DBColumn(mapping = false) private ServiceEmployeeBean employees; public String getMemo() { return memo; } public void setMemo(String memo) { this.memo = memo; } public ServiceEmployeeBean getEmployees() { return employees; } public void setEmployees(ServiceEmployeeBean employees) { this.employees = employees; } public DataDictionaryBean getOrgType() { return orgType; } public void setOrgType(DataDictionaryBean orgType) { this.orgType = orgType; } public String getContactPerson() { return contactPerson; } public void setContactPerson(String contactPerson) { this.contactPerson = contactPerson; } public String getContactNumber() { return contactNumber; } public void setContactNumber(String contactNumber) { this.contactNumber = contactNumber; } }