12345678910111213141516171819202122232425262728 |
- package models
- type OrderLogisticLog struct {
- Id int `gorm:"column:id" json:"id"`
- CreatedTime MyTime `gorm:"column:created_time" json:"createdTime"`
- CreatedBy int `gorm:"column:created_by" json:"createdBy"`
- UpdatedTime MyTime `gorm:"column:updated_time" json:"updatedTime"`
- UpdatedBy int `gorm:"column:updated_by" json:"updatedBy"`
- DeletedTime MyTime `gorm:"column:deleted_time" json:"deletedTime"`
- DeletedBy int `gorm:"column:deleted_by" json:"deletedBy"`
- Deleted int `gorm:"column:deleted" json:"deleted"`
- LogType string `gorm:"column:log_type" json:"logType"`
- OrderId int `gorm:"column:order_id" json:"orderId"`
- OrderNo string `gorm:"column:order_no" json:"orderNo"`
- Location string `gorm:"column:location" json:"location"`
- Extend string `gorm:"column:extend" json:"extend"`
- SnCode string `gorm:"column:sn_code" json:"snCode"`
- ContactAccountId int `gorm:"column:contact_account_id" json:"contactAccountId"`
- ContactPersonUuid string `gorm:"column:contact_person_uuid" json:"contactPersonUuid"`
- ContactPerson string `gorm:"column:contact_person" json:"contactPerson"`
- ContactPhone string `gorm:"column:contact_phone" json:"contactPhone"`
- }
- func (*OrderLogisticLog) TableName() string {
- return "order_logistic_log"
- }
|