123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
- /**
- *
- */
- package com.sinosoft.am.org.dept.outdept.vo;
- /**
- * @author 蒋云涛
- *
- */
- public class OrgOutDeptVo {
- /* 对应数据库的字段*/
- private String fdObjectid;
- private String orgDeptName;
- private String orgDeptType;
- private String linkDept;
- private String linkMan;
- private String code;
- private String site;
- private String location;
- private String workAddress;
- private String updateDate;
- private String deptId;
- private String parentId;
- private String idDel;
- /**
- * @return the fdObjectid
- */
- public String getFdObjectid() {
- return fdObjectid;
- }
- /**
- * @param fdObjectid the fdObjectid to set
- */
- public void setFdObjectid(String fdObjectid) {
- this.fdObjectid = fdObjectid;
- }
- /**
- * @return the orgDeptName
- */
- public String getOrgDeptName() {
- return orgDeptName;
- }
- /**
- * @param orgDeptName the orgDeptName to set
- */
- public void setOrgDeptName(String orgDeptName) {
- this.orgDeptName = orgDeptName;
- }
- /**
- * @return the orgDeptType
- */
- public String getOrgDeptType() {
- return orgDeptType;
- }
- /**
- * @param orgDeptType the orgDeptType to set
- */
- public void setOrgDeptType(String orgDeptType) {
- this.orgDeptType = orgDeptType;
- }
- /**
- * @return the linkDept
- */
- public String getLinkDept() {
- return linkDept;
- }
- /**
- * @param linkDept the linkDept to set
- */
- public void setLinkDept(String linkDept) {
- this.linkDept = linkDept;
- }
- /**
- * @return the linkMan
- */
- public String getLinkMan() {
- return linkMan;
- }
- /**
- * @param linkMan the linkMan to set
- */
- public void setLinkMan(String linkMan) {
- this.linkMan = linkMan;
- }
- /**
- * @return the code
- */
- public String getCode() {
- return code;
- }
- /**
- * @param code the code to set
- */
- public void setCode(String code) {
- this.code = code;
- }
- /**
- * @return the site
- */
- public String getSite() {
- return site;
- }
- /**
- * @param site the site to set
- */
- public void setSite(String site) {
- this.site = site;
- }
- /**
- * @return the location
- */
- public String getLocation() {
- return location;
- }
- /**
- * @param location the location to set
- */
- public void setLocation(String location) {
- this.location = location;
- }
- /**
- * @return the workAddress
- */
- public String getWorkAddress() {
- return workAddress;
- }
- /**
- * @param workAddress the workAddress to set
- */
- public void setWorkAddress(String workAddress) {
- this.workAddress = workAddress;
- }
- /**
- * @return the updateDate
- */
- public String getUpdateDate() {
- return updateDate;
- }
- /**
- * @param updateDate the updateDate to set
- */
- public void setUpdateDate(String updateDate) {
- this.updateDate = updateDate;
- }
- /**
- * @return the deptId
- */
- public String getDeptId() {
- return deptId;
- }
- /**
- * @param deptId the deptId to set
- */
- public void setDeptId(String deptId) {
- this.deptId = deptId;
- }
- /**
- * @return the parentId
- */
- public String getParentId() {
- return parentId;
- }
- /**
- * @param parentId the parentId to set
- */
- public void setParentId(String parentId) {
- this.parentId = parentId;
- }
- /**
- * @return the idDel
- */
- public String getIdDel() {
- return idDel;
- }
- /**
- * @param idDel the idDel to set
- */
- public void setIdDel(String idDel) {
- this.idDel = idDel;
- }
- /* (non-Javadoc)
- * @see java.lang.Object#toString()
- */
- @Override
- public String toString() {
- return "OrgOutDeptVo [fdObjectid=" + fdObjectid + ", orgDeptName="
- + orgDeptName + ", orgDeptType=" + orgDeptType + ", linkDept="
- + linkDept + ", linkMan=" + linkMan + ", code=" + code
- + ", site=" + site + ", location=" + location
- + ", workAddress=" + workAddress + ", updateDate=" + updateDate
- + ", deptId=" + deptId + ", parentId=" + parentId + ", idDel="
- + idDel + "]";
- }
-
-
-
-
- }
|