| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- package com.minpay.db.table.model;
- import com.startup.minpay.frame.data.AbstractMINBean;
- public class PubAddress extends AbstractMINBean {
- /**
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column pub_address.add_id
- *
- * @mbggenerated
- */
- private Integer id;
- /**
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column pub_address.add_code
- *
- * @mbggenerated
- */
- private String code;
- /**
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column pub_address.add_name
- *
- * @mbggenerated
- */
- private String name;
- /**
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column pub_address.add_citycode
- *
- * @mbggenerated
- */
- private String citycode;
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column pub_address.add_id
- *
- * @return the value of pub_address.add_id
- *
- * @mbggenerated
- */
- public Integer getId() {
- return id;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column pub_address.add_id
- *
- * @param id the value for pub_address.add_id
- *
- * @mbggenerated
- */
- public void setId(Integer id) {
- this.id = id;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column pub_address.add_code
- *
- * @return the value of pub_address.add_code
- *
- * @mbggenerated
- */
- public String getCode() {
- return code;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column pub_address.add_code
- *
- * @param code the value for pub_address.add_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_address.add_name
- *
- * @return the value of pub_address.add_name
- *
- * @mbggenerated
- */
- public String getName() {
- return name;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column pub_address.add_name
- *
- * @param name the value for pub_address.add_name
- *
- * @mbggenerated
- */
- public void setName(String name) {
- this.name = name == null ? null : name.trim();
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column pub_address.add_citycode
- *
- * @return the value of pub_address.add_citycode
- *
- * @mbggenerated
- */
- public String getCitycode() {
- return citycode;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column pub_address.add_citycode
- *
- * @param citycode the value for pub_address.add_citycode
- *
- * @mbggenerated
- */
- public void setCitycode(String citycode) {
- this.citycode = citycode == null ? null : citycode.trim();
- }
- }
|