fusenapi/model/gmodel/fs_deliver_gen.go
2023-06-16 19:29:48 +08:00

40 lines
3.0 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package gmodel
import (
"gorm.io/gorm"
"time"
)
// fs_deliver 发货表 云仓 直发 通用(已废弃)
type FsDeliver struct {
Id int64 `gorm:"primary_key;default:0;" json:"id"` //
Type *int64 `gorm:"default:0;" json:"type"` // 1直接发货2云仓发货
UserId *int64 `gorm:"index;default:0;" json:"user_id"` // 用户ID
AdminId *int64 `gorm:"index;default:0;" json:"admin_id"` // 操作人id
Fee *int64 `gorm:"default:0;" json:"fee"` // 运费价格
Tel *string `gorm:"default:'';" json:"tel"` // 电话
DeliveryType *int64 `gorm:"default:0;" json:"delivery_type"` // 发货公司
AddressId *int64 `gorm:"index;default:0;" json:"address_id"` // 地址id
AddressInfo *string `gorm:"default:'';" json:"address_info"` // 地址信息
Ctime *int64 `gorm:"default:0;" json:"ctime"` //
OrderId *int64 `gorm:"default:0;" json:"order_id"` // 云仓发货order_id为0
WarehouseDeliverSn *string `gorm:"index;default:'';" json:"warehouse_deliver_sn"` //
IsConfirm *int64 `gorm:"default:0;" json:"is_confirm"` // 0未确认 1已确认
IsDeliver *int64 `gorm:"default:0;" json:"is_deliver"` // 0未发货 1已发货
IsPort *int64 `gorm:"default:0;" json:"is_port"` // 是否到达港口 0未到达 1:已到达
IsPickUp *int64 `gorm:"default:0;" json:"is_pick_up"` // 美国运输是否已收货 0未提货 1已提货
IsEnd *int64 `gorm:"default:0;" json:"is_end"` // 0未收货 1已签收
Status *int64 `gorm:"default:0;" json:"status"` // 状态值:(0默认未确认1已确认2已发货3到港口4运输中5已签收)
ConfirmAt *time.Time `gorm:"default:'0000-00-00 00:00:00';" json:"confirm_at"` //
DeliverAt *time.Time `gorm:"default:'0000-00-00 00:00:00';" json:"deliver_at"` //
PortAt *time.Time `gorm:"default:'0000-00-00 00:00:00';" json:"port_at"` //
PickUpAt *time.Time `gorm:"default:'0000-00-00 00:00:00';" json:"pick_up_at"` //
EndAt *time.Time `gorm:"default:'0000-00-00 00:00:00';" json:"end_at"` //
FirstDeliverSn *string `gorm:"index;default:'';" json:"first_deliver_sn"` //
TwoDeliverSn *string `gorm:"index;default:'';" json:"two_deliver_sn"` //
TsTime *time.Time `gorm:"default:'0000-00-00 00:00:00';" json:"ts_time"` //
}
type FsDeliverModel struct{ db *gorm.DB }
func NewFsDeliverModel(db *gorm.DB) *FsDeliverModel { return &FsDeliverModel{db} }