package com.fdkankan.tk.controller; import com.fdkankan.tk.common.ResultData; import com.fdkankan.tk.service.ITencentYunService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; /** *
* 前端控制器 *
* * @author * @since 2022-09-27 */ @RestController @RequestMapping("/tencentYun") public class TencentYunController { @Autowired ITencentYunService tencentYunService; @GetMapping("/getSign") public ResultData getSign(@RequestParam(required = false) String userId){ return ResultData.ok(tencentYunService.getSign(userId)); } }