猫妈狗爸伴宠师小程序后端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
913 B

package com.ruoyi.applet.contoller;
import com.ruoyi.common.core.controller.BaseController;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.model.service.IAppTouristService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@Api(description = "用户")
@RestController
@RequestMapping("/applet/user")
public class AppletUserController extends BaseController {
@Autowired
private IAppTouristService appTouristService;
@ApiOperation("游客模式")
@GetMapping("/touristOne")
public AjaxResult getTouristOne(){
return AjaxResult.success(appTouristService.getAppTouristLimitOne());
}
}