|
@@ -46,9 +46,7 @@ public class UserShareController extends BaseApiController {
|
|
|
public AjaxResult generateInviteCode(@RequestBody JSONObject jsonObject) {
|
|
|
String boxId = jsonObject.getString("boxId"); // 票组ID
|
|
|
String type = jsonObject.getString("type"); // 分享类型,1/2
|
|
|
- Integer appSource = jsonObject.getInteger("appSource");
|
|
|
- AppSourceEnum appSourceEnum = AppSourceEnum.getByValue(appSource);
|
|
|
- String appId = appSourceEnum.getAppId();
|
|
|
+ String appId = AppSourceEnum.MSDQ.getAppId();
|
|
|
Long userId = SecurityUtils.getUserId();
|
|
|
if (UserShareVO.SHARE_TYPE_SITE.equals(type) && StringUtils.isBlank(boxId)) {
|
|
|
// 经销商分享,默认到盲票小程序首页
|