release- 收货地址新增省市区

release-2024-04-25
huangyw 3 weeks ago
parent 2ef657b48c
commit 13012f5a10

@ -24,4 +24,14 @@ public class UserinfoShippingAddressAddDTO implements Serializable {
@ApiModelProperty(value = "是否默认地址 1-是 2-否") @ApiModelProperty(value = "是否默认地址 1-是 2-否")
Integer acquiesce; Integer acquiesce;
@ApiModelProperty(value = "省份id")
Integer provinceId;
@ApiModelProperty(value = "城市id")
Integer cityId;
@ApiModelProperty(value = "县区id")
Integer districtId;
} }

@ -29,4 +29,13 @@ public class UserinfoShippingAddressUpdateDTO implements Serializable {
@ApiModelProperty(value = "是否默认地址 1-是 2-否") @ApiModelProperty(value = "是否默认地址 1-是 2-否")
Integer acquiesce; Integer acquiesce;
@ApiModelProperty(value = "省份id")
Integer provinceId;
@ApiModelProperty(value = "城市id")
Integer cityId;
@ApiModelProperty(value = "县区id")
Integer districtId;
} }
Loading…
Cancel
Save