package pwc.taxtech.atms.entity;

import java.io.Serializable;
import java.util.Date;

/**
 *
 * This class was generated by MyBatis Generator.
 * This class corresponds to the database table organization_tax_officer
 *
 * @mbg.generated do_not_delete_during_merge
 */
public class OrganizationTaxOfficer extends BaseEntity implements Serializable {
    /**
     * Database Column Remarks:
     *   唯一编号
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column organization_tax_officer.id
     *
     * @mbg.generated
     */
    private Long id;

    /**
     * Database Column Remarks:
     *   机构编号
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column organization_tax_officer.organization_id
     *
     * @mbg.generated
     */
    private String organizationId;

    /**
     * Database Column Remarks:
     *   专管员姓名
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column organization_tax_officer.tax_officer_name
     *
     * @mbg.generated
     */
    private String taxOfficerName;

    /**
     * Database Column Remarks:
     *   专管员电话
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column organization_tax_officer.tax_officer_phone_num
     *
     * @mbg.generated
     */
    private String taxOfficerPhoneNum;

    /**
     * Database Column Remarks:
     *   备注.填写专管员特长等信息
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column organization_tax_officer.remark
     *
     * @mbg.generated
     */
    private String remark;

    /**
     * Database Column Remarks:
     *   创建时间
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column organization_tax_officer.create_time
     *
     * @mbg.generated
     */
    private Date createTime;

    /**
     * Database Column Remarks:
     *   更新时间
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column organization_tax_officer.update_time
     *
     * @mbg.generated
     */
    private Date updateTime;

    /**
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database table organization_tax_officer
     *
     * @mbg.generated
     */
    private static final long serialVersionUID = 1L;

    public OrganizationTaxOfficer() {
    }


    public OrganizationTaxOfficer(long id ,String orgId) {
        this.id = id;
        this.organizationId = orgId;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column organization_tax_officer.id
     *
     * @return the value of organization_tax_officer.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_tax_officer.id
     *
     * @param id the value for organization_tax_officer.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_tax_officer.organization_id
     *
     * @return the value of organization_tax_officer.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_tax_officer.organization_id
     *
     * @param organizationId the value for organization_tax_officer.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_tax_officer.tax_officer_name
     *
     * @return the value of organization_tax_officer.tax_officer_name
     *
     * @mbg.generated
     */
    public String getTaxOfficerName() {
        return taxOfficerName;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column organization_tax_officer.tax_officer_name
     *
     * @param taxOfficerName the value for organization_tax_officer.tax_officer_name
     *
     * @mbg.generated
     */
    public void setTaxOfficerName(String taxOfficerName) {
        this.taxOfficerName = taxOfficerName == null ? null : taxOfficerName.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column organization_tax_officer.tax_officer_phone_num
     *
     * @return the value of organization_tax_officer.tax_officer_phone_num
     *
     * @mbg.generated
     */
    public String getTaxOfficerPhoneNum() {
        return taxOfficerPhoneNum;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column organization_tax_officer.tax_officer_phone_num
     *
     * @param taxOfficerPhoneNum the value for organization_tax_officer.tax_officer_phone_num
     *
     * @mbg.generated
     */
    public void setTaxOfficerPhoneNum(String taxOfficerPhoneNum) {
        this.taxOfficerPhoneNum = taxOfficerPhoneNum == null ? null : taxOfficerPhoneNum.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column organization_tax_officer.remark
     *
     * @return the value of organization_tax_officer.remark
     *
     * @mbg.generated
     */
    public String getRemark() {
        return remark;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column organization_tax_officer.remark
     *
     * @param remark the value for organization_tax_officer.remark
     *
     * @mbg.generated
     */
    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 organization_tax_officer.create_time
     *
     * @return the value of organization_tax_officer.create_time
     *
     * @mbg.generated
     */
    public Date getCreateTime() {
        return createTime;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column organization_tax_officer.create_time
     *
     * @param createTime the value for organization_tax_officer.create_time
     *
     * @mbg.generated
     */
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column organization_tax_officer.update_time
     *
     * @return the value of organization_tax_officer.update_time
     *
     * @mbg.generated
     */
    public Date getUpdateTime() {
        return updateTime;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column organization_tax_officer.update_time
     *
     * @param updateTime the value for organization_tax_officer.update_time
     *
     * @mbg.generated
     */
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table organization_tax_officer
     *
     * @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(", taxOfficerName=").append(taxOfficerName);
        sb.append(", taxOfficerPhoneNum=").append(taxOfficerPhoneNum);
        sb.append(", remark=").append(remark);
        sb.append(", createTime=").append(createTime);
        sb.append(", updateTime=").append(updateTime);
        sb.append("]");
        return sb.toString();
    }
}