This commit is contained in:
2024-10-12 14:46:31 +08:00
parent 8343d54dba
commit 2717d71403
9 changed files with 15 additions and 5 deletions

View File

@@ -28,6 +28,7 @@ type ReplyLogisticsCompanyList struct {
type LogisticsCompanyItem struct {
Id int64 `json:"id"`
Serial string `json:"serial"`
Name string `json:"name"` // 公司名称
NameEn string `json:"nameEn"` // 公司名称英文
ShortName string `json:"shortName"` // 公司简称
@@ -94,6 +95,7 @@ func (l *logisticsCompany) Add(ctx context.Context, args ArgsLogisticsCompanyAdd
type ReplyLogisticsCompanyInfo struct {
Id int64 `json:"id"`
Serial string `json:"serial"`
Name string `json:"name"` // 公司名称
NameEn string `json:"nameEn"` // 公司名称英文
ShortName string `json:"shortName"` // 公司简称