luodangjia
2024-11-06 5bd5f0313391f4e6b18511647f911e44cc8ff090
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;
}