|
|
@ -27,11 +27,9 @@ import com.epmet.dto.result.AddReceiverGroupResultDTO; |
|
|
|
import com.epmet.dto.result.ReplyInfoResultDTO; |
|
|
|
import com.epmet.dto.result.SendInfoResultDTO; |
|
|
|
import com.epmet.service.InfoService; |
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.web.bind.annotation.PostMapping; |
|
|
|
import org.springframework.web.bind.annotation.RequestBody; |
|
|
|
import org.springframework.web.bind.annotation.RequestMapping; |
|
|
|
import org.springframework.web.bind.annotation.RestController; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
import java.util.Set; |
|
|
@ -43,6 +41,7 @@ import java.util.Set; |
|
|
|
* @author generator generator@elink-cn.com |
|
|
|
* @since v1.0.0 2021-08-18 |
|
|
|
*/ |
|
|
|
@Slf4j |
|
|
|
@RestController |
|
|
|
@RequestMapping("info") |
|
|
|
public class InfoController { |
|
|
@ -220,7 +219,11 @@ public class InfoController { |
|
|
|
return new Result(); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@GetMapping("testMsgAlert") |
|
|
|
public Result testMsgAlert() { |
|
|
|
log.error("测试机器人发消息"); |
|
|
|
return new Result(); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|