package com.goafanti.common.model; import java.math.BigDecimal; import java.util.Date; public class OfficialFeePrice { /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column official_fee_price.id * * @mbg.generated Thu Sep 03 15:51:31 CST 2020 */ private Integer id; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column official_fee_price.name * * @mbg.generated Thu Sep 03 15:51:31 CST 2020 */ private String name; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column official_fee_price.amount * * @mbg.generated Thu Sep 03 15:51:31 CST 2020 */ private BigDecimal amount; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column official_fee_price.proportion85 * * @mbg.generated Thu Sep 03 15:51:31 CST 2020 */ private BigDecimal proportion85; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column official_fee_price.proportion75 * * @mbg.generated Thu Sep 03 15:51:31 CST 2020 */ private BigDecimal proportion75; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column official_fee_price.remarks * * @mbg.generated Thu Sep 03 15:51:31 CST 2020 */ private String remarks; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column official_fee_price.create_time * * @mbg.generated Thu Sep 03 15:51:31 CST 2020 */ private Date createTime; /** * This method was generated by MyBatis Generator. * This method returns the value of the database column official_fee_price.id * * @return the value of official_fee_price.id * * @mbg.generated Thu Sep 03 15:51:31 CST 2020 */ public Integer getId() { return id; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column official_fee_price.id * * @param id the value for official_fee_price.id * * @mbg.generated Thu Sep 03 15:51:31 CST 2020 */ public void setId(Integer id) { this.id = id; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column official_fee_price.name * * @return the value of official_fee_price.name * * @mbg.generated Thu Sep 03 15:51:31 CST 2020 */ public String getName() { return name; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column official_fee_price.name * * @param name the value for official_fee_price.name * * @mbg.generated Thu Sep 03 15:51:31 CST 2020 */ public void setName(String name) { this.name = name; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column official_fee_price.amount * * @return the value of official_fee_price.amount * * @mbg.generated Thu Sep 03 15:51:31 CST 2020 */ public BigDecimal getAmount() { return amount; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column official_fee_price.amount * * @param amount the value for official_fee_price.amount * * @mbg.generated Thu Sep 03 15:51:31 CST 2020 */ public void setAmount(BigDecimal amount) { this.amount = amount; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column official_fee_price.proportion85 * * @return the value of official_fee_price.proportion85 * * @mbg.generated Thu Sep 03 15:51:31 CST 2020 */ public BigDecimal getProportion85() { return proportion85; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column official_fee_price.proportion85 * * @param proportion85 the value for official_fee_price.proportion85 * * @mbg.generated Thu Sep 03 15:51:31 CST 2020 */ public void setProportion85(BigDecimal proportion85) { this.proportion85 = proportion85; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column official_fee_price.proportion75 * * @return the value of official_fee_price.proportion75 * * @mbg.generated Thu Sep 03 15:51:31 CST 2020 */ public BigDecimal getProportion75() { return proportion75; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column official_fee_price.proportion75 * * @param proportion75 the value for official_fee_price.proportion75 * * @mbg.generated Thu Sep 03 15:51:31 CST 2020 */ public void setProportion75(BigDecimal proportion75) { this.proportion75 = proportion75; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column official_fee_price.remarks * * @return the value of official_fee_price.remarks * * @mbg.generated Thu Sep 03 15:51:31 CST 2020 */ public String getRemarks() { return remarks; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column official_fee_price.remarks * * @param remarks the value for official_fee_price.remarks * * @mbg.generated Thu Sep 03 15:51:31 CST 2020 */ public void setRemarks(String remarks) { this.remarks = remarks; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column official_fee_price.create_time * * @return the value of official_fee_price.create_time * * @mbg.generated Thu Sep 03 15:51:31 CST 2020 */ public Date getCreateTime() { return createTime; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column official_fee_price.create_time * * @param createTime the value for official_fee_price.create_time * * @mbg.generated Thu Sep 03 15:51:31 CST 2020 */ public void setCreateTime(Date createTime) { this.createTime = createTime; } public String getCreateTimes() { return createTimes; } public void setCreateTimes(String createTimes) { this.createTimes = createTimes; } private String createTimes; }