You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
402 B
14 lines
402 B
package model
|
|
|
|
import "bkb-seller/global"
|
|
|
|
type Track struct {
|
|
global.Pure_MODEL
|
|
Value string `gorm:"type:json" json:"value"`
|
|
TrackingNumber string `gorm:"type:varchar(100)" json:"tracking_number"`
|
|
CourierCode string `gorm:"type:varchar(50)" json:"courier_code"`
|
|
RelationId string `gorm:"type:varchar(100)" json:"relation_id"`
|
|
}
|
|
func (Track) TableName() string {
|
|
return "track"
|
|
}
|
|
|