1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| package com.ruoyi.user.vo;
|
| import lombok.Data;
|
| /**
| * @author HJL
| * @version 1.0
| * @since 2024-07-16 10:05
| */
| @Data
| public class RegionVo {
|
| /**
| * 城市
| */
| private String city;
|
| /**
| * 城市编码
| */
| private String cityCode;
|
| public RegionVo() {
| }
|
| public RegionVo(String city, String cityCode) {
| this.city = city;
| this.cityCode = cityCode;
| }
|
| }
|
|