1
This commit is contained in:
@@ -0,0 +1,97 @@
|
||||
package com.ruoyi.web.controller.jarvis;
|
||||
|
||||
import java.util.List;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
|
||||
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.jarvis.domain.XbGroup;
|
||||
import com.ruoyi.jarvis.service.IXbGroupService;
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 线报群信息Controller
|
||||
*
|
||||
* @author ruoyi
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/jarvis/xbgroup")
|
||||
public class XbGroupController extends BaseController
|
||||
{
|
||||
@Autowired
|
||||
private IXbGroupService xbGroupService;
|
||||
|
||||
/**
|
||||
* 查询线报群信息列表
|
||||
*/
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(XbGroup xbGroup)
|
||||
{
|
||||
startPage();
|
||||
List<XbGroup> list = xbGroupService.selectXbGroupList(xbGroup);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出线报群信息列表
|
||||
*/
|
||||
@Log(title = "线报群信息", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, XbGroup xbGroup)
|
||||
{
|
||||
List<XbGroup> list = xbGroupService.selectXbGroupList(xbGroup);
|
||||
ExcelUtil<XbGroup> util = new ExcelUtil<XbGroup>(XbGroup.class);
|
||||
util.exportExcel(response, list, "线报群信息数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取线报群信息详细信息
|
||||
*/
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Integer id)
|
||||
{
|
||||
return success(xbGroupService.selectXbGroupById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增线报群信息
|
||||
*/
|
||||
@Log(title = "线报群信息", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody XbGroup xbGroup)
|
||||
{
|
||||
return toAjax(xbGroupService.insertXbGroup(xbGroup));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改线报群信息
|
||||
*/
|
||||
@Log(title = "线报群信息", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody XbGroup xbGroup)
|
||||
{
|
||||
return toAjax(xbGroupService.updateXbGroup(xbGroup));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除线报群信息
|
||||
*/
|
||||
@Log(title = "线报群信息", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Integer[] ids)
|
||||
{
|
||||
return toAjax(xbGroupService.deleteXbGroupByIds(ids));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user