package com.ruoyi.web.controller.system;
|
|
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.system.domain.NettyUpgradeContent;
|
import com.ruoyi.system.service.INettyUpgradeContentService;
|
import com.ruoyi.common.utils.poi.ExcelUtil;
|
import com.ruoyi.common.core.page.TableDataInfo;
|
|
/**
|
* 升级内容详情Controller
|
*
|
* @author ruoyi
|
* @date 2022-10-11
|
*/
|
@RestController
|
@RequestMapping("/system/content")
|
public class NettyUpgradeContentController extends BaseController
|
{
|
@Autowired
|
private INettyUpgradeContentService nettyUpgradeContentService;
|
|
/**
|
* 查询升级内容详情列表
|
*/
|
@PreAuthorize("@ss.hasPermi('system:content:list')")
|
@GetMapping("/list")
|
public TableDataInfo list(NettyUpgradeContent nettyUpgradeContent)
|
{
|
startPage();
|
List<NettyUpgradeContent> list = nettyUpgradeContentService.selectNettyUpgradeContentList(nettyUpgradeContent);
|
return getDataTable(list);
|
}
|
|
/**
|
* 导出升级内容详情列表
|
*/
|
@PreAuthorize("@ss.hasPermi('system:content:export')")
|
@Log(title = "升级内容详情", businessType = BusinessType.EXPORT)
|
@PostMapping("/export")
|
public void export(HttpServletResponse response, NettyUpgradeContent nettyUpgradeContent)
|
{
|
List<NettyUpgradeContent> list = nettyUpgradeContentService.selectNettyUpgradeContentList(nettyUpgradeContent);
|
ExcelUtil<NettyUpgradeContent> util = new ExcelUtil<NettyUpgradeContent>(NettyUpgradeContent.class);
|
util.exportExcel(response, list, "升级内容详情数据");
|
}
|
|
/**
|
* 获取升级内容详情详细信息
|
*/
|
@PreAuthorize("@ss.hasPermi('system:content:query')")
|
@GetMapping(value = "/{id}")
|
public AjaxResult getInfo(@PathVariable("id") Long id)
|
{
|
return AjaxResult.success(nettyUpgradeContentService.selectNettyUpgradeContentById(id));
|
}
|
|
/**
|
* 新增升级内容详情
|
*/
|
@PreAuthorize("@ss.hasPermi('system:content:add')")
|
@Log(title = "升级内容详情", businessType = BusinessType.INSERT)
|
@PostMapping
|
public AjaxResult add(@RequestBody NettyUpgradeContent nettyUpgradeContent)
|
{
|
return toAjax(nettyUpgradeContentService.insertNettyUpgradeContent(nettyUpgradeContent));
|
}
|
|
/**
|
* 修改升级内容详情
|
*/
|
@PreAuthorize("@ss.hasPermi('system:content:edit')")
|
@Log(title = "升级内容详情", businessType = BusinessType.UPDATE)
|
@PutMapping
|
public AjaxResult edit(@RequestBody NettyUpgradeContent nettyUpgradeContent)
|
{
|
return toAjax(nettyUpgradeContentService.updateNettyUpgradeContent(nettyUpgradeContent));
|
}
|
|
/**
|
* 删除升级内容详情
|
*/
|
@PreAuthorize("@ss.hasPermi('system:content:remove')")
|
@Log(title = "升级内容详情", businessType = BusinessType.DELETE)
|
@DeleteMapping("/{ids}")
|
public AjaxResult remove(@PathVariable Long[] ids)
|
{
|
return toAjax(nettyUpgradeContentService.deleteNettyUpgradeContentByIds(ids));
|
}
|
}
|