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