logistics.go 1.4 KB

1234567891011121314151617181920
  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. }