package pwc.taxtech.atms.entity; import java.io.Serializable; /** * * This class was generated by MyBatis Generator. * This class corresponds to the database table equity_information * * @mbg.generated do_not_delete_during_merge */ public class EquityInformationKey extends BaseEntity implements Serializable { /** * Database Column Remarks: * 唯一编号 * * This field was generated by MyBatis Generator. * This field corresponds to the database column equity_information.id * * @mbg.generated */ private Long id; /** * Database Column Remarks: * 股权信息序号。从1开始 * * This field was generated by MyBatis Generator. * This field corresponds to the database column equity_information.e_num * * @mbg.generated */ private Integer eNum; /** * This field was generated by MyBatis Generator. * This field corresponds to the database table equity_information * * @mbg.generated */ private static final long serialVersionUID = 1L; /** * This method was generated by MyBatis Generator. * This method returns the value of the database column equity_information.id * * @return the value of equity_information.id * * @mbg.generated */ public Long getId() { return id; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column equity_information.id * * @param id the value for equity_information.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 equity_information.e_num * * @return the value of equity_information.e_num * * @mbg.generated */ public Integer geteNum() { return eNum; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column equity_information.e_num * * @param eNum the value for equity_information.e_num * * @mbg.generated */ public void seteNum(Integer eNum) { this.eNum = eNum; } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table equity_information * * @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(", eNum=").append(eNum); sb.append("]"); return sb.toString(); } }