ShipUserParam.java 422 B

123456789101112131415161718
  1. package com.fdkankan.ucenter.vo.request;
  2. import lombok.Data;
  3. @Data
  4. public class ShipUserParam {
  5. private Long id;
  6. private String country;
  7. private Integer setDefault;
  8. private String shipAddress;
  9. private String shipArea;
  10. private String shipAreaPath;
  11. private String shipMobile;
  12. private String shipName;
  13. private String shipPhone;
  14. private String shipZipCode;
  15. private Long userId;
  16. }