package com.jiuqi.mobile.nigo.comeclose.bean.app.collect; import com.jiuqi.mobile.nigo.comeclose.bean.NiGoBean; /** * 服务从业人员信息 * @author modi * */ //@DBTable(name="T_SERVICE_EMPLOYEE") public class ServiceEmployeeBean extends NiGoBean{ // @DBColumn(id = true, comment="服务机构GUID") // private String serviceGuid; // @DBColumn(comment = "从业人员总数") private int employeeTotalCount; // @DBColumn(comment = "乡村从业人员") private int employeeVillageCount; // @DBColumn(comment = "高中以上学历人员") private int employeeHighSchoolCount;//高中以上 // @DBColumn(comment = "初中以下学历人员") private int employeeLowSchollCount;//初中及以下 // @DBColumn(comment = "拖拉机驾驶员") private int tractorDriverCount;//拖拉机 // @DBColumn(comment = "联合收割机驾驶员") private int combineDriverCount;//联合收割机 // @DBColumn(comment = "农机运输车驾驶员") private int transportDriverCount;//运输车 // @DBColumn(comment = "农机维修员") private int agriculturalRepairerCount;//农机 // @DBColumn(comment = "有从业资格证的人员") private int havCertificateCount; // @DBColumn(comment = "修理工") private int repairerCount; public int getEmployeeTotalCount() { return employeeTotalCount; } public void setEmployeeTotalCount(int employeeTotalCount) { this.employeeTotalCount = employeeTotalCount; } public int getEmployeeVillageCount() { return employeeVillageCount; } public void setEmployeeVillageCount(int employeeVillageCount) { this.employeeVillageCount = employeeVillageCount; } public int getEmployeeHighSchoolCount() { return employeeHighSchoolCount; } public void setEmployeeHighSchoolCount(int employeeHighSchoolCount) { this.employeeHighSchoolCount = employeeHighSchoolCount; } public int getEmployeeLowSchollCount() { return employeeLowSchollCount; } public void setEmployeeLowSchollCount(int employeeLowSchollCount) { this.employeeLowSchollCount = employeeLowSchollCount; } public int getTractorDriverCount() { return tractorDriverCount; } public void setTractorDriverCount(int tractorDriverCount) { this.tractorDriverCount = tractorDriverCount; } public int getCombineDriverCount() { return combineDriverCount; } public void setCombineDriverCount(int combineDriverCount) { this.combineDriverCount = combineDriverCount; } public int getTransportDriverCount() { return transportDriverCount; } public void setTransportDriverCount(int transportDriverCount) { this.transportDriverCount = transportDriverCount; } public int getAgriculturalRepairerCount() { return agriculturalRepairerCount; } public void setAgriculturalRepairerCount(int agriculturalRepairerCount) { this.agriculturalRepairerCount = agriculturalRepairerCount; } public int getHavCertificateCount() { return havCertificateCount; } public void setHavCertificateCount(int havCertificateCount) { this.havCertificateCount = havCertificateCount; } public int getRepairerCount() { return repairerCount; } public void setRepairerCount(int repairerCount) { this.repairerCount = repairerCount; } }