123456789101112131415161718 |
- package com.fdkankan.ucenter.vo.request;
- import lombok.Data;
- @Data
- public class ShipUserParam {
- private Long id;
- private String country;
- private Integer setDefault;
- private String shipAddress;
- private String shipArea;
- private String shipAreaPath;
- private String shipMobile;
- private String shipName;
- private String shipPhone;
- private String shipZipCode;
- private Long userId;
- }
|