package pwc.taxtech.atms.entity; import java.io.Serializable; /** * * This class was generated by MyBatis Generator. * This class corresponds to the database table organization_service_template_group * * @mbg.generated do_not_delete_during_merge */ public class OrganizationServiceTemplateGroup implements Serializable { /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column organization_service_template_group.id * * @mbg.generated */ private Long id; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column organization_service_template_group.organization_id * * @mbg.generated */ private String organizationId; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column organization_service_template_group.service_type_id * * @mbg.generated */ private String serviceTypeId; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column organization_service_template_group.template_group_id * * @mbg.generated */ private Long templateGroupId; /** * This field was generated by MyBatis Generator. * This field corresponds to the database table organization_service_template_group * * @mbg.generated */ private static final long serialVersionUID = 1L; /** * This method was generated by MyBatis Generator. * This method returns the value of the database column organization_service_template_group.id * * @return the value of organization_service_template_group.id * * @mbg.generated */ public Long getId() { return id; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column organization_service_template_group.id * * @param id the value for organization_service_template_group.id * * @mbg.generated */ public void setId(Long id) { this.id = id; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column organization_service_template_group.organization_id * * @return the value of organization_service_template_group.organization_id * * @mbg.generated */ public String getOrganizationId() { return organizationId; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column organization_service_template_group.organization_id * * @param organizationId the value for organization_service_template_group.organization_id * * @mbg.generated */ public void setOrganizationId(String organizationId) { this.organizationId = organizationId == null ? null : organizationId.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column organization_service_template_group.service_type_id * * @return the value of organization_service_template_group.service_type_id * * @mbg.generated */ public String getServiceTypeId() { return serviceTypeId; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column organization_service_template_group.service_type_id * * @param serviceTypeId the value for organization_service_template_group.service_type_id * * @mbg.generated */ public void setServiceTypeId(String serviceTypeId) { this.serviceTypeId = serviceTypeId == null ? null : serviceTypeId.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column organization_service_template_group.template_group_id * * @return the value of organization_service_template_group.template_group_id * * @mbg.generated */ public Long getTemplateGroupId() { return templateGroupId; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column organization_service_template_group.template_group_id * * @param templateGroupId the value for organization_service_template_group.template_group_id * * @mbg.generated */ public void setTemplateGroupId(Long templateGroupId) { this.templateGroupId = templateGroupId; } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table organization_service_template_group * * @mbg.generated */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append(getClass().getSimpleName()); sb.append(" ["); sb.append("Hash = ").append(hashCode()); sb.append(", id=").append(id); sb.append(", organizationId=").append(organizationId); sb.append(", serviceTypeId=").append(serviceTypeId); sb.append(", templateGroupId=").append(templateGroupId); sb.append("]"); return sb.toString(); } }