package com.minpay.db.table.model; import com.startup.minpay.frame.data.AbstractMINBean; public class PubAppparKey extends AbstractMINBean { /** * This field was generated by MyBatis Generator. * This field corresponds to the database column pub_apppar.APR_CODE * * @mbggenerated */ private String code; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column pub_apppar.APR_VALUE * * @mbggenerated */ private String value; /** * This method was generated by MyBatis Generator. * This method returns the value of the database column pub_apppar.APR_CODE * * @return the value of pub_apppar.APR_CODE * * @mbggenerated */ public String getCode() { return code; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column pub_apppar.APR_CODE * * @param code the value for pub_apppar.APR_CODE * * @mbggenerated */ public void setCode(String code) { this.code = code == null ? null : code.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column pub_apppar.APR_VALUE * * @return the value of pub_apppar.APR_VALUE * * @mbggenerated */ public String getValue() { return value; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column pub_apppar.APR_VALUE * * @param value the value for pub_apppar.APR_VALUE * * @mbggenerated */ public void setValue(String value) { this.value = value == null ? null : value.trim(); } }