Files
lone-services/services/express/internal/dao/deliveryBind.go
T

10 lines
557 B
Go

package dao
type DeliveryBindCreate struct {
Id int `gorm:"column:id;type:int(11);primary_key;AUTO_INCREMENT;comment:ID" json:"id"`
TransitSn string `gorm:"column:transit_sn;type:varchar(255);comment:快递号" json:"transit_sn"`
BoxCode string `gorm:"column:box_code;type:varchar(255);comment:箱号" json:"box_code"`
BoxId int `gorm:"column:box_id;type:int(11);comment:codeId" json:"box_id"`
DeliveryOrderId int `gorm:"column:delivery_order_id;type:int(11);comment:发货ID" json:"delivery_order_id"`
}