|  | @@ -0,0 +1,26 @@
 | 
											
												
													
														|  | 
 |  | +package com.yonge.cooleshow.admin.controller;
 | 
											
												
													
														|  | 
 |  | +
 | 
											
												
													
														|  | 
 |  | +import com.dayaedu.cbs.openfeign.client.SysExceptionLogFeignClientService;
 | 
											
												
													
														|  | 
 |  | +import com.dayaedu.cbs.openfeign.wrapper.courseware.SysExceptionLogVo;
 | 
											
												
													
														|  | 
 |  | +import com.yonge.cooleshow.common.controller.BaseController;
 | 
											
												
													
														|  | 
 |  | +import com.yonge.cooleshow.common.entity.HttpResponseResult;
 | 
											
												
													
														|  | 
 |  | +import org.springframework.web.bind.annotation.PostMapping;
 | 
											
												
													
														|  | 
 |  | +import org.springframework.web.bind.annotation.RequestBody;
 | 
											
												
													
														|  | 
 |  | +import org.springframework.web.bind.annotation.RestController;
 | 
											
												
													
														|  | 
 |  | +
 | 
											
												
													
														|  | 
 |  | +import javax.annotation.Resource;
 | 
											
												
													
														|  | 
 |  | +import java.util.List;
 | 
											
												
													
														|  | 
 |  | +
 | 
											
												
													
														|  | 
 |  | +@RestController
 | 
											
												
													
														|  | 
 |  | +public class ExceptionLogController extends BaseController {
 | 
											
												
													
														|  | 
 |  | +
 | 
											
												
													
														|  | 
 |  | +	@Resource
 | 
											
												
													
														|  | 
 |  | +	private SysExceptionLogFeignClientService sysExceptionLogFeignClientService;
 | 
											
												
													
														|  | 
 |  | +
 | 
											
												
													
														|  | 
 |  | +	@PostMapping("sysExceptionLog/save")
 | 
											
												
													
														|  | 
 |  | +	public HttpResponseResult save(@RequestBody List<SysExceptionLogVo.SysExceptionLog> sysExceptionLogVos) {
 | 
											
												
													
														|  | 
 |  | +		sysExceptionLogFeignClientService.add(sysExceptionLogVos).feignData();
 | 
											
												
													
														|  | 
 |  | +		return succeed();
 | 
											
												
													
														|  | 
 |  | +	}
 | 
											
												
													
														|  | 
 |  | +
 | 
											
												
													
														|  | 
 |  | +}
 |