| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- 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();
- }
- }
|