|
@@ -37,7 +37,7 @@ public class TXinyiMedicineRemoteController extends BaseController
|
|
|
/**
|
|
|
* 查询调参逻辑设定列表
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('business:remote:list')")
|
|
|
+// @PreAuthorize("@ss.hasPermi('business:remote:list')")
|
|
|
@GetMapping("/list")
|
|
|
public TableDataInfo list(TXinyiMedicineRemote tXinyiMedicineRemote)
|
|
|
{
|
|
@@ -49,7 +49,7 @@ public class TXinyiMedicineRemoteController extends BaseController
|
|
|
/**
|
|
|
* 导出调参逻辑设定列表
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('business:remote:export')")
|
|
|
+// @PreAuthorize("@ss.hasPermi('business:remote:export')")
|
|
|
@Log(title = "调参逻辑设定", businessType = BusinessType.EXPORT)
|
|
|
@PostMapping("/export")
|
|
|
public void export(HttpServletResponse response, TXinyiMedicineRemote tXinyiMedicineRemote)
|
|
@@ -62,7 +62,7 @@ public class TXinyiMedicineRemoteController extends BaseController
|
|
|
/**
|
|
|
* 获取调参逻辑设定详细信息
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('business:remote:query')")
|
|
|
+// @PreAuthorize("@ss.hasPermi('business:remote:query')")
|
|
|
@GetMapping(value = "/{id}")
|
|
|
public AjaxResult getInfo(@PathVariable("id") Long id)
|
|
|
{
|
|
@@ -72,7 +72,7 @@ public class TXinyiMedicineRemoteController extends BaseController
|
|
|
/**
|
|
|
* 新增调参逻辑设定
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('business:remote:add')")
|
|
|
+// @PreAuthorize("@ss.hasPermi('business:remote:add')")
|
|
|
@Log(title = "调参逻辑设定", businessType = BusinessType.INSERT)
|
|
|
@PostMapping
|
|
|
public AjaxResult add(@RequestBody TXinyiMedicineRemote tXinyiMedicineRemote)
|
|
@@ -84,7 +84,7 @@ public class TXinyiMedicineRemoteController extends BaseController
|
|
|
/**
|
|
|
* 修改调参逻辑设定
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('business:remote:edit')")
|
|
|
+// @PreAuthorize("@ss.hasPermi('business:remote:edit')")
|
|
|
@Log(title = "调参逻辑设定", businessType = BusinessType.UPDATE)
|
|
|
@PutMapping
|
|
|
public AjaxResult edit(@RequestBody TXinyiMedicineRemote tXinyiMedicineRemote)
|
|
@@ -96,7 +96,7 @@ public class TXinyiMedicineRemoteController extends BaseController
|
|
|
/**
|
|
|
* 删除调参逻辑设定
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('business:remote:remove')")
|
|
|
+// @PreAuthorize("@ss.hasPermi('business:remote:remove')")
|
|
|
@Log(title = "调参逻辑设定", businessType = BusinessType.DELETE)
|
|
|
@DeleteMapping("/{ids}")
|
|
|
public AjaxResult remove(@PathVariable Long[] ids)
|