1
2
3
4
5
6
7
8
9
10
11
12
| package com.ruoyi.common.core.vo;
|
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| @Data
| public class AddressDto {
| private String city;
| private String cityCode;
| private String detail;
| private String name;
| }
|
|