Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Customer ¶
type Customer struct { CardId int16 `db:"card_id" json:"card_id"` // card id Order int32 `db:"order" json:"order"` // order by MemberId sql.NullInt32 `db:"member_id" json:"member_id"` // member id Id uint64 `db:"id" json:"id"` Email string `db:"email" json:"email"` Name string `db:"name" json:"name"` Address sql.NullString `db:"address" json:"address"` CreateTime time.Time `db:"create_time" json:"create_time"` UpdateTime sql.NullTime `db:"update_time" json:"update_time"` }
func NewCustomer ¶
func NewCustomer() *Customer
Click to show internal directories.
Click to hide internal directories.