文件名从 se-modules/se-job/src/main/java/com/se/job/controller/SysJobLogController.java 修改 |
| | |
| | | package com.se.job.controller; |
| | | package com.se.system.controller; |
| | | |
| | | import java.util.List; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | |
| | | import com.se.job.domain.SysJobLog; |
| | | import com.se.job.service.ISysJobLogService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.DeleteMapping; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PathVariable; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | import com.se.common.core.utils.poi.ExcelUtil; |
| | | import com.se.common.core.web.controller.BaseController; |
| | | import com.se.common.core.web.domain.AjaxResult; |
| | |
| | | import com.se.common.log.annotation.Log; |
| | | import com.se.common.log.enums.BusinessType; |
| | | import com.se.common.security.annotation.RequiresPermissions; |
| | | import com.se.system.domain.SysJobLog; |
| | | import com.se.system.service.inte.ISysJobLogService; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.annotation.Resource; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 璋冨害鏃ュ織鎿嶄綔澶勭悊 |
| | |
| | | @RequestMapping("/job/log") |
| | | public class SysJobLogController extends BaseController |
| | | { |
| | | @Autowired |
| | | @Resource |
| | | private ISysJobLogService jobLogService; |
| | | |
| | | /** |