12345678910111213141516171819 |
- package model
-
- import (
- "time"
- )
-
- type TaCustomerFlashBuy struct {
- CustomerFlashBuyId string `xorm:"not null pk VARCHAR(64)"`
- FlashBuyId string `xorm:"VARCHAR(64)"`
- CustomerId string `xorm:"VARCHAR(64)"`
- ValidateStart time.Time `xorm:"DATETIME"`
- ValidateEnd time.Time `xorm:"DATETIME"`
- CreateDate time.Time `xorm:"DATETIME"`
- Status int `xorm:"SMALLINT(6)"`
- VerifyStatus string `xorm:"VARCHAR(32)"`
- VerifyDate time.Time `xorm:"DATETIME"`
- CaseId string `xorm:"VARCHAR(64)"`
- OrgId string `xorm:"VARCHAR(64)"`
- }
|