Ver Fonte

门店绑定二维码

zhangkaikai há 1 ano atrás
pai
commit
3ce51b3a14

+ 1 - 2
mp-admin/src/main/java/com/qs/mp/web/controller/api/user/UserShareController.java

@@ -66,10 +66,9 @@ public class UserShareController extends BaseApiController {
 	@ApiModelProperty("生成指定门店下盲票二维码")
 	public AjaxResult generateTicketUnderChannelCode(@RequestBody  JSONObject jsonObject) {
 		Long channelId = Long.parseLong(jsonObject.getString("channelId"));// 门店ID
-		String siteName = jsonObject.getString("siteName"); // 门店名称
 		Long userId = SecurityUtils.getUserId();
 		String appId = AppSourceEnum.MSDQ.getAppId();
-		String rst = wxUrlLinkService.generateUnlimitCode("packageOperate/store/index", channelId + "&" + userId + "&" + siteName, appId);;
+		String rst = wxUrlLinkService.generateUnlimitCode("packageOperate/store/index", channelId + "&" + userId, appId);;
 		return new AjaxResult(Type.SUCCESS, "", rst);
 	}
 }