new create admin order,express add company

This commit is contained in:
2026-09-02 18:02:57 +08:00
parent 02819d159a
commit e0a63bbef9
38 changed files with 3023 additions and 265 deletions
@@ -0,0 +1,9 @@
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"`
}