1234567891011121314151617181920 |
- // Code generated by sql2gorm. DO NOT EDIT.
- package gorm_model
- import (
- "time"
- )
- type YoungeeTaskLogistics struct {
- LogisticsID int64 `gorm:"column:logistics_id;primary_key;AUTO_INCREMENT"` // 货物-id
- CompanyName string `gorm:"column:company_name"` // 实物商品-物流公司名称
- LogisticsNumber string `gorm:"column:logistics_number"` // 实物商品-物流单号
- ExplorestoreStarttime time.Time `gorm:"column:explorestore_starttime"` // 线下探店-探店开始时间
- ExplorestoreEndtime time.Time `gorm:"column:explorestore_endtime"` // 线下探店-探店结束时间
- ExplorestorePeriod string `gorm:"column:explorestore_period"` // 线下探店-探店持续时间
- CouponCodeInformation string `gorm:"column:coupon_code_information"` // 虚拟产品-券码信息
- TaskID string `gorm:"column:task_id;NOT NULL"` // 任务id
- DeliveryTime time.Time `gorm:"column:delivery_time"` // 发货时间
- ThingsType int64 `gorm:"column:things_type;NOT NULL"` // 任务类型:1 实物,2:线下探店,3:虚拟产品
- SignedTime time.Time `gorm:"column:signed_time"` // 实物商品-签收时间
- }
|