package com.stylefeng.guns.modular.system.model;
|
|
import com.baomidou.mybatisplus.annotations.TableField;
|
import com.baomidou.mybatisplus.annotations.TableName;
|
|
/**
|
* @author zhibing.pu
|
* @Date 2025/7/26 9:16
|
*/
|
@TableName("t_system_price_city")
|
public class SystemPriceCity extends BaseBean {
|
/**
|
* 省编号
|
*/
|
@TableField("areaCode")
|
private String areaCode;
|
/**
|
* 省名称
|
*/
|
@TableField("areaName")
|
private String areaName;
|
/**
|
* 市编号
|
*/
|
@TableField("cityCode")
|
private String cityCode;
|
/**
|
* 市名称
|
*/
|
@TableField("cityName")
|
private String cityName;
|
/**
|
* 区县编号
|
*/
|
@TableField("provinceCode")
|
private String provinceCode;
|
/**
|
* 区县名称
|
*/
|
@TableField("provinceName")
|
private String provinceName;
|
|
public String getAreaCode() {
|
return areaCode;
|
}
|
|
public void setAreaCode(String areaCode) {
|
this.areaCode = areaCode;
|
}
|
|
public String getAreaName() {
|
return areaName;
|
}
|
|
public void setAreaName(String areaName) {
|
this.areaName = areaName;
|
}
|
|
public String getCityCode() {
|
return cityCode;
|
}
|
|
public void setCityCode(String cityCode) {
|
this.cityCode = cityCode;
|
}
|
|
public String getCityName() {
|
return cityName;
|
}
|
|
public void setCityName(String cityName) {
|
this.cityName = cityName;
|
}
|
|
public String getProvinceCode() {
|
return provinceCode;
|
}
|
|
public void setProvinceCode(String provinceCode) {
|
this.provinceCode = provinceCode;
|
}
|
|
public String getProvinceName() {
|
return provinceName;
|
}
|
|
public void setProvinceName(String provinceName) {
|
this.provinceName = provinceName;
|
}
|
}
|