|
@@ -31,6 +31,7 @@ import com.fs.sop.service.*;
|
|
|
import com.fs.sop.vo.QwSopLogsDoSendListTVO;
|
|
|
import com.fs.store.service.IFsUserCourseCountService;
|
|
|
import io.swagger.annotations.Api;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
@@ -123,6 +124,16 @@ public class CommonController {
|
|
|
private SyncQwExternalContactService syncQwExternalContactService;
|
|
|
|
|
|
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取跳转微信小程序的链接地址
|
|
|
+ */
|
|
|
+ @GetMapping("/getGotoWxAppLink")
|
|
|
+ @ApiOperation("获取跳转微信小程序的链接地址")
|
|
|
+ public ResponseResult<String> getGotoWxAppLink(String linkStr,String appid) {
|
|
|
+ return ResponseResult.ok(courseLinkService.getGotoWxAppLink(linkStr,appid));
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 发官方通连
|
|
|
*/
|