新增药品订单详情

This commit is contained in:
2023-09-11 14:34:50 +08:00
parent e82932ab53
commit 0a51e0fcbc
19 changed files with 869 additions and 116 deletions
@@ -0,0 +1,17 @@
package orderProductLogisticsResponse
import (
"hospital-admin-api/api/model"
)
type OrderProductLogistics struct {
LogisticsId string `json:"logistics_id"` // 主键id
OrderProductId string `json:"order_product_id"` // 药品订单id;NOT NULL
LogisticsStatus int `json:"logistics_status"` // 运单签收状态(0在途 1揽收 2疑难 3签收 4退签 5派件 8清关 14拒签);NOT NULL
LogisticsNo string `json:"logistics_no"` // 物流编号
CompanyName string `json:"company_name"` // 快递公司名称
CompanyCode string `json:"company_code"` // 快递公司编码
LogisticsContent string `json:"logistics_content"` // 内容
CreatedAt model.LocalTime `json:"created_at"` // 创建时间
UpdatedAt model.LocalTime `json:"updated_at"` // 修改时间
}