导粉记录

This commit is contained in:
xiezhijun
2021-05-17 18:35:53 +08:00
parent 11a4c69fef
commit cc6bbec22e
11 changed files with 784 additions and 0 deletions

View File

@ -0,0 +1,103 @@
package com.stdiet.web.controller.custom;
import java.util.List;
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.stdiet.common.annotation.Log;
import com.stdiet.common.core.controller.BaseController;
import com.stdiet.common.core.domain.AjaxResult;
import com.stdiet.common.enums.BusinessType;
import com.stdiet.custom.domain.SysImportFanRecord;
import com.stdiet.custom.service.ISysImportFanRecordService;
import com.stdiet.common.utils.poi.ExcelUtil;
import com.stdiet.common.core.page.TableDataInfo;
/**
* 导粉管理Controller
*
* @author xzj
* @date 2021-05-17
*/
@RestController
@RequestMapping("/custom/importFanRecord")
public class SysImportFanRecordController extends BaseController
{
@Autowired
private ISysImportFanRecordService sysImportFanRecordService;
/**
* 查询导粉管理列表
*/
@PreAuthorize("@ss.hasPermi('custom:importFanRecord:list')")
@GetMapping("/list")
public TableDataInfo list(SysImportFanRecord sysImportFanRecord)
{
startPage();
List<SysImportFanRecord> list = sysImportFanRecordService.selectSysImportFanRecordList(sysImportFanRecord);
return getDataTable(list);
}
/**
* 导出导粉管理列表
*/
@PreAuthorize("@ss.hasPermi('custom:importFanRecord:export')")
@Log(title = "导粉管理", businessType = BusinessType.EXPORT)
@GetMapping("/export")
public AjaxResult export(SysImportFanRecord sysImportFanRecord)
{
List<SysImportFanRecord> list = sysImportFanRecordService.selectSysImportFanRecordList(sysImportFanRecord);
ExcelUtil<SysImportFanRecord> util = new ExcelUtil<SysImportFanRecord>(SysImportFanRecord.class);
return util.exportExcel(list, "importFanRecord");
}
/**
* 获取导粉管理详细信息
*/
@PreAuthorize("@ss.hasPermi('custom:importFanRecord:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
return AjaxResult.success(sysImportFanRecordService.selectSysImportFanRecordById(id));
}
/**
* 新增导粉管理
*/
@PreAuthorize("@ss.hasPermi('custom:importFanRecord:add')")
@Log(title = "导粉管理", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody SysImportFanRecord sysImportFanRecord)
{
return toAjax(sysImportFanRecordService.insertSysImportFanRecord(sysImportFanRecord));
}
/**
* 修改导粉管理
*/
@PreAuthorize("@ss.hasPermi('custom:importFanRecord:edit')")
@Log(title = "导粉管理", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody SysImportFanRecord sysImportFanRecord)
{
return toAjax(sysImportFanRecordService.updateSysImportFanRecord(sysImportFanRecord));
}
/**
* 删除导粉管理
*/
@PreAuthorize("@ss.hasPermi('custom:importFanRecord:remove')")
@Log(title = "导粉管理", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
{
return toAjax(sysImportFanRecordService.deleteSysImportFanRecordByIds(ids));
}
}