- user man and user store bind.
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
package model
|
||||
|
||||
type WeiXins struct {
|
||||
ID int `orm:"column(id)"`
|
||||
JxStoreID int `orm:"column(jxstoreid)"`
|
||||
OpenID string `orm:"column(openid);size(70);index"`
|
||||
Tel string `orm:"size(15);index"`
|
||||
ParentID int `orm:"column(parentid)"`
|
||||
NickName string `orm:"column(nickname);size(30)"`
|
||||
ID int `orm:"column(id)" json:"id"`
|
||||
JxStoreID int `orm:"column(jxstoreid)" json:"storeID"`
|
||||
OpenID string `orm:"column(openid);size(70);index" json:"openID"`
|
||||
Tel string `orm:"size(15);index" json:"tel"`
|
||||
ParentID int `orm:"column(parentid)" json:"parentID"`
|
||||
NickName string `orm:"column(nickname);size(30)" json:"nickname"`
|
||||
}
|
||||
|
||||
func (*WeiXins) TableName() string {
|
||||
|
||||
Reference in New Issue
Block a user