猫妈狗爸伴宠师小程序后端代码
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.

18 lines
565 B

  1. package com.ruoyi.applet.contoller;
  2. import com.ruoyi.common.core.domain.AjaxResult;
  3. import com.ruoyi.model.domain.AppletServiceLog;
  4. import com.ruoyi.model.service.IAppletServiceLogService;
  5. import io.swagger.annotations.Api;
  6. import io.swagger.annotations.ApiOperation;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.web.bind.annotation.*;
  9. import java.util.List;
  10. @Api(description = "伴宠师工作台-服务信息")
  11. @RestController
  12. @RequestMapping("/applet/serviceInfo")
  13. public class ApiAppletServiceInfoController {
  14. }