order_transport_task.go 1.9 KB

123456789101112131415161718192021222324252627
  1. package models
  2. // OrderTransportTask 运单任务表
  3. type OrderTransportTask 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. ExecutorAccountId int `gorm:"column:executor_account_id" json:"executorAccountId"` //执行人账号id
  13. CarId int `gorm:"column:car_id" json:"carId"` //执行人车辆id
  14. SnCode string `gorm:"column:sn_code" json:"snCode"` //车辆snCode
  15. OrderId int `gorm:"column:order_id" json:"orderId"` //订单id
  16. OrderNo string `gorm:"column:order_no" json:"orderNo"` //订单号
  17. Status int `gorm:"column:status" json:"status"` //状态:201-待处理 202-执行中 203-已完成
  18. Destination string `gorm:"column:destination" json:"destination"` //目的地:终点-dest 中转站-transit
  19. StartTime MyTime `gorm:"column:start_time" json:"startTime"` //开始时间
  20. FinishedTime MyTime `gorm:"column:finished_time" json:"finishedTime"` //完成时间
  21. }
  22. func (*OrderTransportTask) TableName() string {
  23. return "order_transport_task"
  24. }