ta_customer.go 368B

12345678910111213
  1. package model
  2. import "time"
  3. type TaCustomer struct {
  4. Id int `xorm:"not null pk autoincr INT(11)"`
  5. Openid string `xorm:"VARCHAR(128)"`
  6. Nickyname string `xorm:"VARCHAR(255)"`
  7. Headimgurl string `xorm:"TEXT"`
  8. Unionid string `xorm:"VARCHAR(128)"`
  9. CreateDate time.Time `xorm:"DATETIME"`
  10. Sharedpage int `xorm:"SMALLINT(6)"`
  11. }