order_logistic_log.go 2.0 KB

12345678910111213141516171819202122232425262728
  1. package models
  2. // OrderLogisticLog 运单物流日志表
  3. type OrderLogisticLog struct {
  4. Id int `gorm:"column:id" json:"id"` //
  5. CreatedTime MyTime `gorm:"column:created_time" json:"createdTime"` //创建时间
  6. CreatedBy int `gorm:"column:created_by" json:"createdBy"` //创建人
  7. UpdatedTime MyTime `gorm:"column:updated_time" json:"updatedTime"` //修改时间
  8. UpdatedBy int `gorm:"column:updated_by" json:"updatedBy"` //修改人
  9. DeletedTime MyTime `gorm:"column:deleted_time" json:"deletedTime"` //删除时间
  10. DeletedBy int `gorm:"column:deleted_by" json:"deletedBy"` //删除人
  11. Deleted int `gorm:"column:deleted" json:"deleted"` //是否删除 1-是 2-否
  12. LogType string `gorm:"column:log_type" json:"logType"` //日志类型
  13. OrderId int `gorm:"column:order_id" json:"orderId"` //订单id
  14. OrderNo string `gorm:"column:order_no" json:"orderNo"` //订单号
  15. Location string `gorm:"column:location" json:"location"` //当前所在地
  16. Extend string `gorm:"column:extend" json:"extend"` //消息
  17. SnCode string `gorm:"column:sn_code" json:"snCode"` //SN设备编码
  18. ContactAccountId int `gorm:"column:contact_account_id" json:"contactAccountId"` //联系人账号Id
  19. ContactPersonUuid string `gorm:"column:contact_person_uuid" json:"contactPersonUuid"` //联系人uuid
  20. ContactPerson string `gorm:"column:contact_person" json:"contactPerson"` //联系人姓名
  21. ContactPhone string `gorm:"column:contact_phone" json:"contactPhone"` //联系电话
  22. }
  23. func (*OrderLogisticLog) TableName() string {
  24. return "order_logistic_log"
  25. }