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_employee
 *
 * @mbg.generated do_not_delete_during_merge
 */
public class OrganizationEmployee extends BaseEntity implements Serializable {
    /**
     * Database Column Remarks:
     *   系统唯一编号
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column organization_employee.id
     *
     * @mbg.generated
     */
    private Long id;

    /**
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column organization_employee.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_employee.employees_num_start
     *
     * @mbg.generated
     */
    private Integer employeesNumStart;

    /**
     * Database Column Remarks:
     *   期末雇员人数
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column organization_employee.employees_num_end
     *
     * @mbg.generated
     */
    private Integer employeesNumEnd;

    /**
     * Database Column Remarks:
     *   统计月份.2019/2
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column organization_employee.statistical_month
     *
     * @mbg.generated
     */
    private Date statisticalMonth;

    /**
     * Database Column Remarks:
     *   创建时间
     *
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database column organization_employee.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_employee.update_time
     *
     * @mbg.generated
     */
    private Date updateTime;

    /**
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database table organization_employee
     *
     * @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_employee.id
     *
     * @return the value of organization_employee.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_employee.id
     *
     * @param id the value for organization_employee.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_employee.organization_id
     *
     * @return the value of organization_employee.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_employee.organization_id
     *
     * @param organizationId the value for organization_employee.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_employee.employees_num_start
     *
     * @return the value of organization_employee.employees_num_start
     *
     * @mbg.generated
     */
    public Integer getEmployeesNumStart() {
        return employeesNumStart;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column organization_employee.employees_num_start
     *
     * @param employeesNumStart the value for organization_employee.employees_num_start
     *
     * @mbg.generated
     */
    public void setEmployeesNumStart(Integer employeesNumStart) {
        this.employeesNumStart = employeesNumStart;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column organization_employee.employees_num_end
     *
     * @return the value of organization_employee.employees_num_end
     *
     * @mbg.generated
     */
    public Integer getEmployeesNumEnd() {
        return employeesNumEnd;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column organization_employee.employees_num_end
     *
     * @param employeesNumEnd the value for organization_employee.employees_num_end
     *
     * @mbg.generated
     */
    public void setEmployeesNumEnd(Integer employeesNumEnd) {
        this.employeesNumEnd = employeesNumEnd;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column organization_employee.statistical_month
     *
     * @return the value of organization_employee.statistical_month
     *
     * @mbg.generated
     */
    public Date getStatisticalMonth() {
        return statisticalMonth;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method sets the value of the database column organization_employee.statistical_month
     *
     * @param statisticalMonth the value for organization_employee.statistical_month
     *
     * @mbg.generated
     */
    public void setStatisticalMonth(Date statisticalMonth) {
        this.statisticalMonth = statisticalMonth;
    }

    /**
     * This method was generated by MyBatis Generator.
     * This method returns the value of the database column organization_employee.create_time
     *
     * @return the value of organization_employee.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_employee.create_time
     *
     * @param createTime the value for organization_employee.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_employee.update_time
     *
     * @return the value of organization_employee.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_employee.update_time
     *
     * @param updateTime the value for organization_employee.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_employee
     *
     * @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(", employeesNumStart=").append(employeesNumStart);
        sb.append(", employeesNumEnd=").append(employeesNumEnd);
        sb.append(", statisticalMonth=").append(statisticalMonth);
        sb.append(", createTime=").append(createTime);
        sb.append(", updateTime=").append(updateTime);
        sb.append("]");
        return sb.toString();
    }
}