1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.ruoyi.common.core.vo;
|
| import lombok.Data;
|
| /**
| * @author HJL
| * @version 1.0
| * @since 2024-07-25 14:31
| */
| @Data
| public class CityInfoVO {
|
| private String city;
|
| private String code;
|
| public CityInfoVO() {
| }
|
| public CityInfoVO(String city, String code) {
| this.city = city;
| this.code = code;
| }
| }
|
|