作者 tangxvhui

bug 修复

... ... @@ -9,7 +9,7 @@ import (
type UpdatePartnerInfoCommand struct {
// 合伙人Id
Id int64 `json:"id,omitempty"`
Id int64 `json:"id"`
// 状态(1:启用或者0:禁用)
Status int `json:"status"`
// 合伙类别 (1.研发合伙人 2.业务合伙人 3.事业)
... ...
... ... @@ -35,6 +35,8 @@ func (controller BaseController) ResponseError(err error) {
controller.ServeJSON()
logs.Error(e.Prefix, e.Message)
return
} else {
logs.Error(e.Prefix, e.Message)
}
}
... ...
... ... @@ -118,6 +118,7 @@ func (c *PartnerInfoController) UpdatePartnerInfo() {
return
}
cmd := partnerInfoCmd.UpdatePartnerInfoCommand{
Id: param.ID,
Status: param.State,
PartnerCategory: param.PartnerType,
CooperateTime: cooperateTime,
... ...