通用文件新项目

This commit is contained in:
wuchunlei
2024-03-25 17:46:34 +08:00
parent 92a582bee0
commit 21a8309563
23 changed files with 858 additions and 22 deletions

View File

@@ -0,0 +1,49 @@
package com.peanut.modules.common.vo;
import lombok.Data;
@Data
public class UserAddressVo {
/**
* id
*/
private int id;
/**
* 会员 ID
*/
private Integer userId;
/**
* 收货人
*/
private String consigneeName;
/**
* 收货人手机号码
*/
private String consigneePhone;
/**
* 区域代码
*/
private String regionCode;
/**
* 详细地址
*/
private String detailAddress;
/**
* 默认
*/
private Integer isDefault;
/**
* 省
*/
private String province;
/**
* 城市
*/
private String city;
/**
* 县
*/
private String county;
}