Blame view

src/main/java/com/huaheng/pc/common/TestController.java 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.huaheng.pc.common;

import com.huaheng.framework.web.controller.BaseController;
import com.huaheng.framework.web.domain.AjaxResult;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@Controller
@RestController
@RequestMapping("/test")
public class TestController extends BaseController {


    @GetMapping("/send")
17
18
    public AjaxResult sendMessage(String subject, String body, Integer type, String[] to, String[] cc) {
//        SendNoticeUtils.sendNotice(subject, body, type, to, cc);
19
20
21
        return AjaxResult.success();
    }
}