This commit is contained in:
eson
2023-09-25 18:42:45 +08:00
parent 66084f9e96
commit cef9dfa34d
6 changed files with 138 additions and 14 deletions

View File

@@ -32,8 +32,8 @@ type (
}
AddressObjectRequest {
AddressId int64 `json:"address_id"` // 地址id
AddressName string `json:"address_name"` // 地址
AddressId int64 `json:"address_id"` // 地址id
AddressName string `json:"address_name"` // 地址
}
AddressIdRequest {
@@ -43,4 +43,17 @@ type (
AddressNameRequest {
AddressName string `json:"address_name"` // 地址
}
AddressRequest {
IsDefault int64 `json:"is_default"` //是否默认
AddressName string `json:"address_name"` //收货人
FirstName string `json:"first_name"` //first_name
LastName string `json:"last_name"` //last_name
Mobile string `json:"mobile"` //手机
ZipCode string `json:"zip_code"` //邮编
Street string `json:"street"` //街道
Suite string `json:"suite"` //房号
City string `json:"city"` //城市
State string `json:"state"` //州
}
)