PubAppparKey.java 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. package com.minpay.db.table.model;
  2. import com.startup.minpay.frame.data.AbstractMINBean;
  3. public class PubAppparKey extends AbstractMINBean {
  4. /**
  5. * This field was generated by MyBatis Generator.
  6. * This field corresponds to the database column pub_apppar.APR_CODE
  7. *
  8. * @mbggenerated
  9. */
  10. private String code;
  11. /**
  12. * This field was generated by MyBatis Generator.
  13. * This field corresponds to the database column pub_apppar.APR_VALUE
  14. *
  15. * @mbggenerated
  16. */
  17. private String value;
  18. /**
  19. * This method was generated by MyBatis Generator.
  20. * This method returns the value of the database column pub_apppar.APR_CODE
  21. *
  22. * @return the value of pub_apppar.APR_CODE
  23. *
  24. * @mbggenerated
  25. */
  26. public String getCode() {
  27. return code;
  28. }
  29. /**
  30. * This method was generated by MyBatis Generator.
  31. * This method sets the value of the database column pub_apppar.APR_CODE
  32. *
  33. * @param code the value for pub_apppar.APR_CODE
  34. *
  35. * @mbggenerated
  36. */
  37. public void setCode(String code) {
  38. this.code = code == null ? null : code.trim();
  39. }
  40. /**
  41. * This method was generated by MyBatis Generator.
  42. * This method returns the value of the database column pub_apppar.APR_VALUE
  43. *
  44. * @return the value of pub_apppar.APR_VALUE
  45. *
  46. * @mbggenerated
  47. */
  48. public String getValue() {
  49. return value;
  50. }
  51. /**
  52. * This method was generated by MyBatis Generator.
  53. * This method sets the value of the database column pub_apppar.APR_VALUE
  54. *
  55. * @param value the value for pub_apppar.APR_VALUE
  56. *
  57. * @mbggenerated
  58. */
  59. public void setValue(String value) {
  60. this.value = value == null ? null : value.trim();
  61. }
  62. }