xuhy
2025-04-27 f9d81e4f0a6853e9d1a14d82a63072dc35c08cb4
1
2
3
4
5
6
7
8
9
10
11
package com.ruoyi.admin.utils;
 
import lombok.Data;
 
@Data
public class AddressDto {
    private String name;
    private String address;
    private String phone;
    private String detail;
}