| | |
| | | import com.ycl.platform.domain.entity.TCheckPublish; |
| | | import com.ycl.platform.service.ITCheckPublishService; |
| | | import com.ycl.system.AjaxResult; |
| | | import com.ycl.system.Result; |
| | | import com.ycl.system.controller.BaseController; |
| | | import com.ycl.system.page.TableDataInfo; |
| | | import com.ycl.utils.poi.ExcelUtil; |
| | | import enumeration.BusinessType; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import jakarta.servlet.http.HttpServletResponse; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | |
| | | /** |
| | | * 查询考核发布列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:publish:list')") |
| | | // @PreAuthorize("@ss.hasPermi('system:publish:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(TCheckPublish tCheckPublish) |
| | | { |
| | |
| | | /** |
| | | * 导出考核发布列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:publish:export')") |
| | | // @PreAuthorize("@ss.hasPermi('system:publish:export')") |
| | | @Log(title = "考核发布", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, TCheckPublish tCheckPublish) |
| | |
| | | /** |
| | | * 获取考核发布详细信息 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:publish:query')") |
| | | // @PreAuthorize("@ss.hasPermi('system:publish:query')") |
| | | @GetMapping(value = "/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) |
| | | { |
| | |
| | | /** |
| | | * 新增考核发布 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:publish:add')") |
| | | // @PreAuthorize("@ss.hasPermi('system:publish:add')") |
| | | @Log(title = "考核发布", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody TCheckPublish tCheckPublish) |
| | |
| | | /** |
| | | * 修改考核发布 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:publish:edit')") |
| | | // @PreAuthorize("@ss.hasPermi('system:publish:edit')") |
| | | @Log(title = "考核发布", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody TCheckPublish tCheckPublish) |
| | |
| | | /** |
| | | * 删除考核发布 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:publish:remove')") |
| | | // @PreAuthorize("@ss.hasPermi('system:publish:remove')") |
| | | @Log(title = "考核发布", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) |
| | | { |
| | | return toAjax(tCheckPublishService.deleteTCheckPublishByIds(ids)); |
| | | } |
| | | |
| | | @GetMapping("/all") |
| | | @ApiOperation(value = "下拉列表", notes = "下拉列表") |
| | | public Result all() { |
| | | return tCheckPublishService.all(); |
| | | } |
| | | } |