Commit ede01d30 by jiang'yun

修改

parent b9b9ea25
...@@ -37,11 +37,11 @@ public class SjFdsgcsDcyxController extends BaseController ...@@ -37,11 +37,11 @@ public class SjFdsgcsDcyxController extends BaseController
/** /**
* 查询设计-分段施工措施-地层岩性列表 * 查询设计-分段施工措施-地层岩性列表
*/ */
@PreAuthorize("@ss.hasPermi('system:sjFdsgcsDcyx:list')") //@PreAuthorize("@ss.hasPermi('system:sjFdsgcsDcyx:list')")
@GetMapping("/list") @GetMapping("/list")
public TableDataInfo list(SjFdsgcsDcyx sjFdsgcsDcyx) public TableDataInfo list(SjFdsgcsDcyx sjFdsgcsDcyx)
{ {
startPage(); // startPage();
List<SjFdsgcsDcyx> list = sjFdsgcsDcyxService.selectSjFdsgcsDcyxList(sjFdsgcsDcyx); List<SjFdsgcsDcyx> list = sjFdsgcsDcyxService.selectSjFdsgcsDcyxList(sjFdsgcsDcyx);
return getDataTable(list); return getDataTable(list);
} }
...@@ -49,7 +49,7 @@ public class SjFdsgcsDcyxController extends BaseController ...@@ -49,7 +49,7 @@ public class SjFdsgcsDcyxController extends BaseController
/** /**
* 导出设计-分段施工措施-地层岩性列表 * 导出设计-分段施工措施-地层岩性列表
*/ */
@PreAuthorize("@ss.hasPermi('system:sjFdsgcsDcyx:export')") //@PreAuthorize("@ss.hasPermi('system:sjFdsgcsDcyx:export')")
@Log(title = "设计-分段施工措施-地层岩性", businessType = BusinessType.EXPORT) @Log(title = "设计-分段施工措施-地层岩性", businessType = BusinessType.EXPORT)
@PostMapping("/export") @PostMapping("/export")
public void export(HttpServletResponse response, SjFdsgcsDcyx sjFdsgcsDcyx) public void export(HttpServletResponse response, SjFdsgcsDcyx sjFdsgcsDcyx)
...@@ -62,7 +62,7 @@ public class SjFdsgcsDcyxController extends BaseController ...@@ -62,7 +62,7 @@ public class SjFdsgcsDcyxController extends BaseController
/** /**
* 获取设计-分段施工措施-地层岩性详细信息 * 获取设计-分段施工措施-地层岩性详细信息
*/ */
@PreAuthorize("@ss.hasPermi('system:sjFdsgcsDcyx:query')") //@PreAuthorize("@ss.hasPermi('system:sjFdsgcsDcyx:query')")
@GetMapping(value = "/{id}") @GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id) public AjaxResult getInfo(@PathVariable("id") Long id)
{ {
...@@ -72,7 +72,7 @@ public class SjFdsgcsDcyxController extends BaseController ...@@ -72,7 +72,7 @@ public class SjFdsgcsDcyxController extends BaseController
/** /**
* 新增设计-分段施工措施-地层岩性 * 新增设计-分段施工措施-地层岩性
*/ */
@PreAuthorize("@ss.hasPermi('system:sjFdsgcsDcyx:add')") //@PreAuthorize("@ss.hasPermi('system:sjFdsgcsDcyx:add')")
@Log(title = "设计-分段施工措施-地层岩性", businessType = BusinessType.INSERT) @Log(title = "设计-分段施工措施-地层岩性", businessType = BusinessType.INSERT)
@PostMapping @PostMapping
public AjaxResult add(@RequestBody SjFdsgcsDcyx sjFdsgcsDcyx) public AjaxResult add(@RequestBody SjFdsgcsDcyx sjFdsgcsDcyx)
...@@ -83,7 +83,7 @@ public class SjFdsgcsDcyxController extends BaseController ...@@ -83,7 +83,7 @@ public class SjFdsgcsDcyxController extends BaseController
/** /**
* 修改设计-分段施工措施-地层岩性 * 修改设计-分段施工措施-地层岩性
*/ */
@PreAuthorize("@ss.hasPermi('system:sjFdsgcsDcyx:edit')") //@PreAuthorize("@ss.hasPermi('system:sjFdsgcsDcyx:edit')")
@Log(title = "设计-分段施工措施-地层岩性", businessType = BusinessType.UPDATE) @Log(title = "设计-分段施工措施-地层岩性", businessType = BusinessType.UPDATE)
@PutMapping @PutMapping
public AjaxResult edit(@RequestBody SjFdsgcsDcyx sjFdsgcsDcyx) public AjaxResult edit(@RequestBody SjFdsgcsDcyx sjFdsgcsDcyx)
...@@ -94,7 +94,7 @@ public class SjFdsgcsDcyxController extends BaseController ...@@ -94,7 +94,7 @@ public class SjFdsgcsDcyxController extends BaseController
/** /**
* 删除设计-分段施工措施-地层岩性 * 删除设计-分段施工措施-地层岩性
*/ */
@PreAuthorize("@ss.hasPermi('system:sjFdsgcsDcyx:remove')") //@PreAuthorize("@ss.hasPermi('system:sjFdsgcsDcyx:remove')")
@Log(title = "设计-分段施工措施-地层岩性", businessType = BusinessType.DELETE) @Log(title = "设计-分段施工措施-地层岩性", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}") @DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids) public AjaxResult remove(@PathVariable Long[] ids)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment