|
@@ -33,7 +33,7 @@ public class Fdj50hzInfoController extends BaseController{
|
|
|
/**
|
|
|
* 查询发电机50hz报价列表
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('fdj:info:list')")
|
|
|
+
|
|
|
@GetMapping("/list")
|
|
|
@ApiOperation("查询发电机50hz报价列表")
|
|
|
@ApiImplicitParams({
|
|
@@ -49,7 +49,7 @@ public class Fdj50hzInfoController extends BaseController{
|
|
|
/**
|
|
|
* 导出发电机50hz报价列表
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('fdj:info:export')")
|
|
|
+
|
|
|
@Log(title = "发电机50hz报价", businessType = BusinessTypeEnum.EXPORT)
|
|
|
@GetMapping("/export")
|
|
|
@ApiOperation("导出发电机50hz报价列表Excel")
|
|
@@ -62,7 +62,7 @@ public class Fdj50hzInfoController extends BaseController{
|
|
|
/**
|
|
|
* 获取发电机50hz报价详细信息
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('fdj:info:query')")
|
|
|
+
|
|
|
@GetMapping(value = "/{id}")
|
|
|
@ApiOperation("获取发电机50hz报价详细信息")
|
|
|
public Response<Fdj50hzInfo> getInfo(
|
|
@@ -83,7 +83,7 @@ public class Fdj50hzInfoController extends BaseController{
|
|
|
/**
|
|
|
* 新增发电机50hz报价
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('fdj:info:add')")
|
|
|
+
|
|
|
@Log(title = "发电机50hz报价", businessType = BusinessTypeEnum.INSERT)
|
|
|
@PostMapping
|
|
|
@ApiOperation("新增发电机50hz报价")
|
|
@@ -94,7 +94,7 @@ public class Fdj50hzInfoController extends BaseController{
|
|
|
/**
|
|
|
* 修改发电机50hz报价
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('fdj:info:edit')")
|
|
|
+
|
|
|
@Log(title = "发电机50hz报价", businessType = BusinessTypeEnum.UPDATE)
|
|
|
@PutMapping
|
|
|
@ApiOperation("修改发电机50hz报价")
|
|
@@ -105,7 +105,7 @@ public class Fdj50hzInfoController extends BaseController{
|
|
|
/**
|
|
|
* 删除发电机50hz报价
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('fdj:info:remove')")
|
|
|
+
|
|
|
@Log(title = "发电机50hz报价", businessType = BusinessTypeEnum.DELETE)
|
|
|
@DeleteMapping("/{ids}")
|
|
|
@ApiOperation("删除发电机50hz报价")
|