Initial commit

This commit is contained in:
Donny
2019-04-22 20:46:32 +08:00
commit 49ab8aadd1
25441 changed files with 4055000 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
package http
import (
"go-common/library/ecode"
"go-common/library/log"
bm "go-common/library/net/http/blademaster"
)
func joinColumn(c *bm.Context) {
v := new(struct {
AccountType int `form:"account_type"`
SignType int `form:"sign_type"`
})
if err := c.Bind(v); err != nil {
return
}
midI, ok := c.Get("mid")
if !ok {
c.JSON(nil, ecode.NoLogin)
return
}
mid, _ := midI.(int64)
err := svc.JoinColumn(c, mid, v.AccountType, v.SignType)
if err != nil {
log.Error("svc.JoinColumn mid(%d) accountType(%d) signType(%d) error(%v)", mid, v.AccountType, v.SignType, err)
}
c.JSON(nil, err)
}