- package model
-
- import (
- "time"
- )
-
- type TaFlashBuyCustomer struct {
- FlashBuyCustomerId string `xorm:"not null VARCHAR(64)"`
- FlashBuyId string `xorm:"VARCHAR(64)"`
- CustomerId string `xorm:"VARCHAR(64)"`
- IsNew int `xorm:"TINYINT(1)"`
- IsAttend int `xorm:"TINYINT(1)"`
- CreateDate time.Time `xorm:"DATETIME"`
- }
|