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.TCustomerNotice; import com.ruoyi.web.pcApi.service.ITCustomerNoticeService; import com.ruoyi.common.utils.poi.ExcelUtil; import com.ruoyi.common.core.page.TableDataInfo; /** * 客户通知信息Controller * * @author ruoyi * @date 2022-08-25 */ @RestController @RequestMapping("/customerNotice/customerNotice") public class TCustomerNoticeController extends BaseController { @Autowired private ITCustomerNoticeService tCustomerNoticeService; /** * 查询客户通知信息列表 */ @PreAuthorize("@ss.hasPermi('customerNotice:customerNotice:list')") @GetMapping("/list") public TableDataInfo list(TCustomerNotice tCustomerNotice) { startPage(); List list = tCustomerNoticeService.selectTCustomerNoticeList(tCustomerNotice); return getDataTable(list); } /** * 导出客户通知信息列表 */ @PreAuthorize("@ss.hasPermi('customerNotice:customerNotice:export')") @Log(title = "客户通知信息", businessType = BusinessType.EXPORT) @PostMapping("/export") public void export(HttpServletResponse response, TCustomerNotice tCustomerNotice) { List list = tCustomerNoticeService.selectTCustomerNoticeList(tCustomerNotice); ExcelUtil util = new ExcelUtil(TCustomerNotice.class); util.exportExcel(response, list, "客户通知信息数据"); } /** * 获取客户通知信息详细信息 */ @PreAuthorize("@ss.hasPermi('customerNotice:customerNotice:query')") @GetMapping(value = "/{id}") public AjaxResult getInfo(@PathVariable("id") Long id) { return AjaxResult.success(tCustomerNoticeService.selectTCustomerNoticeById(id)); } /** * 新增客户通知信息 */ @PreAuthorize("@ss.hasPermi('customerNotice:customerNotice:add')") @Log(title = "客户通知信息", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody TCustomerNotice tCustomerNotice) { return toAjax(tCustomerNoticeService.insertTCustomerNotice(tCustomerNotice)); } /** * 修改客户通知信息 */ @PreAuthorize("@ss.hasPermi('customerNotice:customerNotice:edit')") @Log(title = "客户通知信息", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@RequestBody TCustomerNotice tCustomerNotice) { return toAjax(tCustomerNoticeService.updateTCustomerNotice(tCustomerNotice)); } /** * 删除客户通知信息 */ @PreAuthorize("@ss.hasPermi('customerNotice:customerNotice:remove')") @Log(title = "客户通知信息", businessType = BusinessType.DELETE) @DeleteMapping("/{ids}") public AjaxResult remove(@PathVariable Long[] ids) { return toAjax(tCustomerNoticeService.deleteTCustomerNoticeByIds(ids)); } }