| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- package com.ruoyi.web.pcApi.controller;
- import java.util.List;
- import javax.servlet.http.HttpServletResponse;
- import org.springframework.security.access.prepost.PreAuthorize;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.web.bind.annotation.GetMapping;
- import org.springframework.web.bind.annotation.PostMapping;
- import org.springframework.web.bind.annotation.PutMapping;
- import org.springframework.web.bind.annotation.DeleteMapping;
- import org.springframework.web.bind.annotation.PathVariable;
- import org.springframework.web.bind.annotation.RequestBody;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- import com.ruoyi.common.annotation.Log;
- import com.ruoyi.common.core.controller.BaseController;
- import com.ruoyi.common.core.domain.AjaxResult;
- import com.ruoyi.common.enums.BusinessType;
- import com.ruoyi.web.pcApi.domain.TNoticeMessage;
- import com.ruoyi.web.pcApi.service.ITNoticeMessageService;
- import com.ruoyi.common.utils.poi.ExcelUtil;
- import com.ruoyi.common.core.page.TableDataInfo;
- /**
- * 通知消息Controller
- *
- * @author ruoyi
- * @date 2022-08-24
- */
- @RestController
- @RequestMapping("/noticeMessage/noticeMessage")
- public class TNoticeMessageController extends BaseController
- {
- @Autowired
- private ITNoticeMessageService tNoticeMessageService;
- /**
- * 查询通知消息列表
- */
- @PreAuthorize("@ss.hasPermi('noticeMessage:noticeMessage:list')")
- @GetMapping("/list")
- public TableDataInfo list(TNoticeMessage tNoticeMessage)
- {
- startPage();
- List<TNoticeMessage> list = tNoticeMessageService.selectTNoticeMessageList(tNoticeMessage);
- return getDataTable(list);
- }
- /**
- * 导出通知消息列表
- */
- @PreAuthorize("@ss.hasPermi('noticeMessage:noticeMessage:export')")
- @Log(title = "通知消息", businessType = BusinessType.EXPORT)
- @PostMapping("/export")
- public void export(HttpServletResponse response, TNoticeMessage tNoticeMessage)
- {
- List<TNoticeMessage> list = tNoticeMessageService.selectTNoticeMessageList(tNoticeMessage);
- ExcelUtil<TNoticeMessage> util = new ExcelUtil<TNoticeMessage>(TNoticeMessage.class);
- util.exportExcel(response, list, "通知消息数据");
- }
- /**
- * 获取通知消息详细信息
- */
- @PreAuthorize("@ss.hasPermi('noticeMessage:noticeMessage:query')")
- @GetMapping(value = "/{id}")
- public AjaxResult getInfo(@PathVariable("id") Long id)
- {
- return AjaxResult.success(tNoticeMessageService.selectTNoticeMessageById(id));
- }
- /**
- * 新增通知消息
- */
- @PreAuthorize("@ss.hasPermi('noticeMessage:noticeMessage:add')")
- @Log(title = "通知消息", businessType = BusinessType.INSERT)
- @PostMapping
- public AjaxResult add(@RequestBody TNoticeMessage tNoticeMessage)
- {
- tNoticeMessage.setDeptId(getDeptId());
- tNoticeMessage.setCreateBy(getUsername());
- return toAjax(tNoticeMessageService.insertTNoticeMessage(tNoticeMessage));
- }
- /**
- * 修改通知消息
- */
- @PreAuthorize("@ss.hasPermi('noticeMessage:noticeMessage:edit')")
- @Log(title = "通知消息", businessType = BusinessType.UPDATE)
- @PutMapping
- public AjaxResult edit(@RequestBody TNoticeMessage tNoticeMessage)
- {
- tNoticeMessage.setUpdateBy(getUsername());
- return toAjax(tNoticeMessageService.updateTNoticeMessage(tNoticeMessage));
- }
- /**
- * 删除通知消息
- */
- @PreAuthorize("@ss.hasPermi('noticeMessage:noticeMessage:remove')")
- @Log(title = "通知消息", businessType = BusinessType.DELETE)
- @DeleteMapping("/{ids}")
- public AjaxResult remove(@PathVariable Long[] ids)
- {
- return toAjax(tNoticeMessageService.deleteTNoticeMessageByIds(ids));
- }
- }
|