18 lines
908 B
Go
18 lines
908 B
Go
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"` // 修改时间
|
|
}
|