package models import ( "time" ) type WxUserLog struct { Id int `orm:"column(id);pk"` UserId int OpenId string UnionId string Mobile string Email string Handle string Remark string CreateTime time.Time }