logistics.go 1.9 KB

123456789101112131415161718192021222324
  1. // Code generated by sql2gorm. DO NOT EDIT.
  2. package gorm_model
  3. import (
  4. "time"
  5. )
  6. type YoungeeTaskLogistics struct {
  7. LogisticsID int64 `gorm:"column:logistics_id;primary_key;AUTO_INCREMENT"` // 货物-id
  8. CompanyName string `gorm:"column:company_name"` // 实物商品-物流公司名称
  9. LogisticsNumber string `gorm:"column:logistics_number"` // 实物商品-物流单号
  10. ExplorestoreStarttime time.Time `gorm:"column:explorestore_starttime"` // 线下探店-探店开始时间
  11. ExplorestoreEndtime time.Time `gorm:"column:explorestore_endtime"` // 线下探店-探店结束时间
  12. ExplorestorePeriod string `gorm:"column:explorestore_period"` // 线下探店-探店持续时间
  13. CouponCodeInformation string `gorm:"column:coupon_code_information"` // 虚拟产品-券码信息
  14. TaskID string `gorm:"column:task_id;NOT NULL"` // 任务id
  15. DeliveryTime time.Time `gorm:"column:delivery_time"` // 发货时间
  16. ThingsType int64 `gorm:"column:things_type;NOT NULL"` // 任务类型:1 实物,2:线下探店,3:虚拟产品
  17. SignedTime *time.Time `gorm:"column:signed_time"` // 实物商品-签收时间
  18. AutoSignAt *time.Time `gorm:"column:auto_sign_at"` // 自动签收时间
  19. AutoScriptBreakAt *time.Time `gorm:"column:auto_script_break_at"` // 脚本违约自动处理时间
  20. AutoSketchBreakAt *time.Time `gorm:"column:auto_sketch_break_at"` // 初稿违约自动处理时间
  21. Status int `gorm:"column:status;default:0"` // 签收状态,0为未签收,1为已签收
  22. }