Browse Source

feat(新增邮件提醒人)

Roc 4 years ago
parent
commit
79cdc784ef
2 changed files with 6 additions and 1 deletions
  1. 5 0
      services/user.go
  2. 1 1
      utils/constants.go

+ 5 - 0
services/user.go

@@ -44,6 +44,11 @@ func GetWxUserItemByOpenId(openid string)  (item *models.WxUserItem,err error){
 	item,wxUserErr := models.GetWxUserItemByUserId(userRecord.UserId)
 	if wxUserErr != nil{
 		err = wxUserErr
+
+		//如果是下面这个错误,那么这个可能是用户信息被删除,然后user_record表没有移除该条记录所绑定的user_id信息
+		if wxUserErr.Error() == utils.ErrNoRow(){
+			err = errors.New("用户信息不存在")
+		}
 		return
 	}
 	//格式化返回用户数据

+ 1 - 1
utils/constants.go

@@ -20,7 +20,7 @@ const (
 
 const (
 	APPNAME          = "弘则-日度点评"
-	EmailSendToUsers = "glji@hzinsights.com"
+	EmailSendToUsers = "glji@hzinsights.com;pyan@hzinsights.com"
 )
 
 //手机号,电子邮箱正则