123456789101112131415161718192021222324 |
- package com.malk.shantai.controller;
- import com.malk.shantai.service.StDingProcService;
- import lombok.extern.slf4j.Slf4j;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.web.bind.annotation.*;
- import java.util.Map;
- @RestController
- @RequestMapping
- @Slf4j
- public class StController{
- @Autowired
- private StDingProcService stDingProcService;
- //新增评论
- @GetMapping("/comment")
- public void comment(Map map) {
- stDingProcService.commentSync(map);
- }
- }
|