SendMsg2Somebod支持建议y

This commit is contained in:
gazebo
2019-11-04 16:03:31 +08:00
parent ff4f636105
commit a09e3379f3
2 changed files with 14 additions and 3 deletions

View File

@@ -28,6 +28,7 @@ import (
const ( const (
SendMsgTypeOpenStoreRequest = "openStoreRequest" SendMsgTypeOpenStoreRequest = "openStoreRequest"
SendMsgTypeSuggestRequest = "suggestRequest"
) )
var ( var (
@@ -44,6 +45,14 @@ var (
// "徐建华", // "徐建华",
// "周扬", // "周扬",
}, },
SendMsgTypeSuggestRequest: []string{
"石锋",
// "徐建华",
// "周扬",
},
}
needConfirmRequestMap = map[string]int{
SendMsgTypeOpenStoreRequest: 1,
} }
) )
@@ -162,8 +171,10 @@ func GetCoordinateDistrictCode(ctx *jxcontext.Context, lng, lat float64) (code i
} }
func SendMsg2Somebody(ctx *jxcontext.Context, mobileNum, verifyCode, msgType, msgContent string) (err error) { func SendMsg2Somebody(ctx *jxcontext.Context, mobileNum, verifyCode, msgType, msgContent string) (err error) {
if _, err = mobile.AutherObj.VerifySecret(mobileNum, verifyCode); err != nil { if needConfirmRequestMap[msgType] == 1 {
return err if _, err = mobile.AutherObj.VerifySecret(mobileNum, verifyCode); err != nil {
return err
}
} }
db := dao.GetDB() db := dao.GetDB()
for _, v := range receiveMsgUsersMap[msgType] { for _, v := range receiveMsgUsersMap[msgType] {

View File

@@ -223,7 +223,7 @@ func (c *CmsController) FakeNewOrder() {
// @Title 发送消息给相关人员 // @Title 发送消息给相关人员
// @Description 发送消息给相关人员 // @Description 发送消息给相关人员
// @Param mobile formData string true "手机号" // @Param mobile formData string true "手机号"
// @Param verifyCode formData string true "验证码" // @Param verifyCode formData string false "验证码"
// @Param msgType formData string true "消息类型" // @Param msgType formData string true "消息类型"
// @Param msgContent formData string true "消息内容" // @Param msgContent formData string true "消息内容"
// @Success 200 {object} controllers.CallResult // @Success 200 {object} controllers.CallResult