package com.jiuqi.mobile.nigo.comeclose.bean.app.file; /** * 农机局档案表 * * @author anjoulee * @date 2013-10-23下午3:06:31 * @fileName GovernmentFileEntity.java * @package com.jiuqi.mobile.nigo.biz.app.file * @project snigo */ public class GovernmentFileBean extends FileBaseBean { // @DBColumn(length = 50, comment = "绑定机构GUID") private String orgGuid; // @DBColumn( comment = "农机联系人名称") private String ownerName;//2013-12-13新加入 public String getOrgGuid() { return orgGuid; } public void setOrgGuid(String orgGuid) { this.orgGuid = orgGuid; } public String getOwnerName() { return ownerName; } public void setOwnerName(String ownerName) { this.ownerName = ownerName; } }