Commit 2be8064d by fudahua

secret接口更改

parent c817b59f
......@@ -376,7 +376,10 @@ public class WxEnterpriseController extends WebBaseController{
//微信企业绑定接口绑定通讯录key
@IgnoreLogin
@RequestMapping("wx-enterprise-haoban-secret-set")
public HaobanResponse wxEnterpriseHaobanSecretSet(String contactSecret) {
public HaobanResponse wxEnterpriseHaobanSecretSet(String contactSecret,String memberSecret) {
if (!StringUtils.isEmpty(memberSecret)) {
contactSecret=memberSecret;
}
if(org.apache.commons.lang3.StringUtils.isAnyBlank(contactSecret)){
return resultResponse(HaoBanErrCode.ERR_2);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment