package com.stylefeng.guns.modular.system.model;
|
|
import com.baomidou.mybatisplus.annotations.TableField;
|
import com.baomidou.mybatisplus.annotations.TableName;
|
import lombok.Data; /**
|
* @author zhibing.pu
|
* @Date 2025/7/26 9:16
|
*/
|
@Data
|
@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;
|
}
|