2021与蓝度共同重构项目,服务端
fix
zhanzhiqin
2022-09-28 f1a8f55f73c79a457bdfdcb799df63fbd8eaa3cd
ximon-admin/src/main/java/com/sandu/ximon/admin/controller/ErrorMsgController.java
@@ -24,9 +24,23 @@
    private final ErrorMsgService errorMsgService;
    @AnonymousAccess
    @GetMapping("/listMsg")
    public ResponseVO<Object> list(BaseConditionVO conditionVO, @RequestParam(value = "type", required = false) String type) {
    @GetMapping("/lightListMsg")
    public ResponseVO<Object> lightListMsg(BaseConditionVO conditionVO) {
        return ResponseUtil.success(errorMsgService.listMsg(conditionVO, type));
        return ResponseUtil.success(errorMsgService.lightListMsg(conditionVO));
    }
    @AnonymousAccess
    @GetMapping("/C3ListMsg")
    public ResponseVO<Object> C3ListMsg(BaseConditionVO conditionVO) {
        return ResponseUtil.success(errorMsgService.C3ListMsg(conditionVO));
    }
    @AnonymousAccess
    @GetMapping("/atmosphereListMsg")
    public ResponseVO<Object> atmosphereListMsg(BaseConditionVO conditionVO) {
        return ResponseUtil.success(errorMsgService.atmosphereListMsg(conditionVO));
    }
}