package com.jsh.erp.datasource.entities; import java.util.Date; public class Organization { /** * This field was generated by MyBatis Generator. * This field corresponds to the database column jsh_organization.id * * @mbggenerated */ private Long id; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column jsh_organization.org_no * * @mbggenerated */ private String orgNo; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column jsh_organization.org_full_name * * @mbggenerated */ private String orgFullName; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column jsh_organization.org_abr * * @mbggenerated */ private String orgAbr; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column jsh_organization.org_tpcd * * @mbggenerated */ private String orgTpcd; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column jsh_organization.org_stcd * * @mbggenerated */ private String orgStcd; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column jsh_organization.org_parent_no * * @mbggenerated */ private String orgParentNo; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column jsh_organization.sort * * @mbggenerated */ private String sort; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column jsh_organization.remark * * @mbggenerated */ private String remark; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column jsh_organization.create_time * * @mbggenerated */ private Date createTime; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column jsh_organization.creator * * @mbggenerated */ private Long creator; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column jsh_organization.update_time * * @mbggenerated */ private Date updateTime; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column jsh_organization.updater * * @mbggenerated */ private Long updater; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column jsh_organization.org_create_time * * @mbggenerated */ private Date orgCreateTime; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column jsh_organization.org_stop_time * * @mbggenerated */ private Date orgStopTime; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column jsh_organization.tenant_id * * @mbggenerated */ private Long tenantId; /** * This method was generated by MyBatis Generator. * This method returns the value of the database column jsh_organization.id * * @return the value of jsh_organization.id * * @mbggenerated */ public Long getId() { return id; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column jsh_organization.id * * @param id the value for jsh_organization.id * * @mbggenerated */ public void setId(Long id) { this.id = id; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column jsh_organization.org_no * * @return the value of jsh_organization.org_no * * @mbggenerated */ public String getOrgNo() { return orgNo; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column jsh_organization.org_no * * @param orgNo the value for jsh_organization.org_no * * @mbggenerated */ public void setOrgNo(String orgNo) { this.orgNo = orgNo == null ? null : orgNo.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column jsh_organization.org_full_name * * @return the value of jsh_organization.org_full_name * * @mbggenerated */ public String getOrgFullName() { return orgFullName; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column jsh_organization.org_full_name * * @param orgFullName the value for jsh_organization.org_full_name * * @mbggenerated */ public void setOrgFullName(String orgFullName) { this.orgFullName = orgFullName == null ? null : orgFullName.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column jsh_organization.org_abr * * @return the value of jsh_organization.org_abr * * @mbggenerated */ public String getOrgAbr() { return orgAbr; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column jsh_organization.org_abr * * @param orgAbr the value for jsh_organization.org_abr * * @mbggenerated */ public void setOrgAbr(String orgAbr) { this.orgAbr = orgAbr == null ? null : orgAbr.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column jsh_organization.org_tpcd * * @return the value of jsh_organization.org_tpcd * * @mbggenerated */ public String getOrgTpcd() { return orgTpcd; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column jsh_organization.org_tpcd * * @param orgTpcd the value for jsh_organization.org_tpcd * * @mbggenerated */ public void setOrgTpcd(String orgTpcd) { this.orgTpcd = orgTpcd == null ? null : orgTpcd.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column jsh_organization.org_stcd * * @return the value of jsh_organization.org_stcd * * @mbggenerated */ public String getOrgStcd() { return orgStcd; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column jsh_organization.org_stcd * * @param orgStcd the value for jsh_organization.org_stcd * * @mbggenerated */ public void setOrgStcd(String orgStcd) { this.orgStcd = orgStcd == null ? null : orgStcd.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column jsh_organization.org_parent_no * * @return the value of jsh_organization.org_parent_no * * @mbggenerated */ public String getOrgParentNo() { return orgParentNo; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column jsh_organization.org_parent_no * * @param orgParentNo the value for jsh_organization.org_parent_no * * @mbggenerated */ public void setOrgParentNo(String orgParentNo) { this.orgParentNo = orgParentNo == null ? null : orgParentNo.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column jsh_organization.sort * * @return the value of jsh_organization.sort * * @mbggenerated */ public String getSort() { return sort; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column jsh_organization.sort * * @param sort the value for jsh_organization.sort * * @mbggenerated */ public void setSort(String sort) { this.sort = sort == null ? null : sort.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column jsh_organization.remark * * @return the value of jsh_organization.remark * * @mbggenerated */ public String getRemark() { return remark; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column jsh_organization.remark * * @param remark the value for jsh_organization.remark * * @mbggenerated */ public void setRemark(String remark) { this.remark = remark == null ? null : remark.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column jsh_organization.create_time * * @return the value of jsh_organization.create_time * * @mbggenerated */ public Date getCreateTime() { return createTime; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column jsh_organization.create_time * * @param createTime the value for jsh_organization.create_time * * @mbggenerated */ public void setCreateTime(Date createTime) { this.createTime = createTime; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column jsh_organization.creator * * @return the value of jsh_organization.creator * * @mbggenerated */ public Long getCreator() { return creator; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column jsh_organization.creator * * @param creator the value for jsh_organization.creator * * @mbggenerated */ public void setCreator(Long creator) { this.creator = creator; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column jsh_organization.update_time * * @return the value of jsh_organization.update_time * * @mbggenerated */ public Date getUpdateTime() { return updateTime; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column jsh_organization.update_time * * @param updateTime the value for jsh_organization.update_time * * @mbggenerated */ public void setUpdateTime(Date updateTime) { this.updateTime = updateTime; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column jsh_organization.updater * * @return the value of jsh_organization.updater * * @mbggenerated */ public Long getUpdater() { return updater; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column jsh_organization.updater * * @param updater the value for jsh_organization.updater * * @mbggenerated */ public void setUpdater(Long updater) { this.updater = updater; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column jsh_organization.org_create_time * * @return the value of jsh_organization.org_create_time * * @mbggenerated */ public Date getOrgCreateTime() { return orgCreateTime; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column jsh_organization.org_create_time * * @param orgCreateTime the value for jsh_organization.org_create_time * * @mbggenerated */ public void setOrgCreateTime(Date orgCreateTime) { this.orgCreateTime = orgCreateTime; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column jsh_organization.org_stop_time * * @return the value of jsh_organization.org_stop_time * * @mbggenerated */ public Date getOrgStopTime() { return orgStopTime; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column jsh_organization.org_stop_time * * @param orgStopTime the value for jsh_organization.org_stop_time * * @mbggenerated */ public void setOrgStopTime(Date orgStopTime) { this.orgStopTime = orgStopTime; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column jsh_organization.tenant_id * * @return the value of jsh_organization.tenant_id * * @mbggenerated */ public Long getTenantId() { return tenantId; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column jsh_organization.tenant_id * * @param tenantId the value for jsh_organization.tenant_id * * @mbggenerated */ public void setTenantId(Long tenantId) { this.tenantId = tenantId; } }