xuhy
2025-01-08 061f67ee25e3991ab55ae5b9cac7bde86bb422dd
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;
}