- don't return AuthSecret and AuthSecret2

This commit is contained in:
gazebo
2019-03-05 14:24:07 +08:00
parent 791c73612a
commit 9447fc8929

View File

@@ -14,8 +14,8 @@ type AuthBind struct {
AuthID string `orm:"size(48);column(auth_id)" json:"authID"`
AuthID2 string `orm:"size(48);column(auth_id2);index" json:"authID2"`
AuthSecret string `orm:"size(48)" json:"authSecret"`
AuthSecret2 string `orm:"size(48)" json:"authSecret2"`
AuthSecret string `orm:"size(48)" json:"-"`
AuthSecret2 string `orm:"size(48)" json:"-"`
Remark string `orm:"size(255)" json:"remark"`
DetailData string `orm:"type(text)" json:"detailData"`