package com.jiuqi.mobile.nigo.comeclose.bean.app.coop; import com.jiuqi.mobile.nigo.comeclose.bean.base.AdminAreaBean; import com.jiuqi.mobile.nigo.comeclose.bean.master.CarBaseBean; /** * 作业队实体类 * * @author anjoulee * */ public class WorkTeamBean extends CarBaseBean { // @DBColumn(id = true, comment = "机构GUID(绑定分组节点)") private String orgGuid; // @DBColumn(comment = "详细地址") private String address; // @DBColumn(comment = "行政区划") private AdminAreaBean areaCode; // @DBColumn(comment = "定位设备类型:0、无定位设备 1、GPS设备 2、定位设备") private int lbsDevicetype; // 所属分组 private CooperativeGroupBean group; // @DBColumn(comment = "机主名称") private String ownerName; // @DBColumn(comment = "机主电话") private String ownerMobile; public String getOrgGuid() { return orgGuid; } public void setOrgGuid(String orgGuid) { this.orgGuid = orgGuid; } public String getAddress() { return address; } public void setAddress(String address) { this.address = address; } public AdminAreaBean getAreaCode() { return areaCode; } public void setAreaCode(AdminAreaBean areaCode) { this.areaCode = areaCode; } public int getLbsDevicetype() { return lbsDevicetype; } public void setLbsDevicetype(int lbsDevicetype) { this.lbsDevicetype = lbsDevicetype; } public CooperativeGroupBean getGroup() { return group; } public void setGroup(CooperativeGroupBean group) { this.group = group; } public String getOwnerName() { return ownerName; } public void setOwnerName(String ownerName) { this.ownerName = ownerName; } public String getOwnerMobile() { return ownerMobile; } public void setOwnerMobile(String ownerMobile) { this.ownerMobile = ownerMobile; } }