|
|
@@ -49,7 +49,6 @@ public class FinancialEvaluationController extends BaseController
|
|
|
* 查询财务评估报告列表
|
|
|
*/
|
|
|
@ApiOperation("查询财务评估报告列表")
|
|
|
- @PreAuthorize("@ss.hasPermi('invest:information:list')")
|
|
|
@GetMapping("/list")
|
|
|
public TableDataInfo list(TProjectInformation tProjectInformation)
|
|
|
{
|
|
|
@@ -63,7 +62,6 @@ public class FinancialEvaluationController extends BaseController
|
|
|
* 导出财务评估报告列表
|
|
|
*/
|
|
|
@ApiOperation("导出财务评估报告列表")
|
|
|
- @PreAuthorize("@ss.hasPermi('invest:information:export')")
|
|
|
@Log(title = "财务评估报告", businessType = BusinessType.EXPORT)
|
|
|
@PostMapping("/export")
|
|
|
public void export(HttpServletResponse response, TProjectInformation tProjectInformation)
|
|
|
@@ -85,7 +83,6 @@ public class FinancialEvaluationController extends BaseController
|
|
|
* 获取财务评估报告详细信息
|
|
|
*/
|
|
|
@ApiOperation("获取财务评估报告详细信息")
|
|
|
- @PreAuthorize("@ss.hasPermi('invest:information:query')")
|
|
|
@GetMapping(value = "/{id}")
|
|
|
public AjaxResult getInfo(@PathVariable("id") String id)
|
|
|
{
|
|
|
@@ -96,7 +93,6 @@ public class FinancialEvaluationController extends BaseController
|
|
|
* 新增财务评估报告
|
|
|
*/
|
|
|
@ApiOperation("新增财务评估报告")
|
|
|
- @PreAuthorize("@ss.hasPermi('invest:information:add')")
|
|
|
@Log(title = "财务评估报告", businessType = BusinessType.INSERT)
|
|
|
@PostMapping
|
|
|
public AjaxResult add(@RequestBody TProjectInformation tProjectInformation)
|
|
|
@@ -120,7 +116,6 @@ public class FinancialEvaluationController extends BaseController
|
|
|
* 修改财务评估报告
|
|
|
*/
|
|
|
@ApiOperation("修改财务评估报告")
|
|
|
- @PreAuthorize("@ss.hasPermi('invest:information:edit')")
|
|
|
@Log(title = "财务评估报告", businessType = BusinessType.UPDATE)
|
|
|
@PutMapping
|
|
|
public AjaxResult edit(@RequestBody TProjectInformation tProjectInformation)
|
|
|
@@ -139,7 +134,6 @@ public class FinancialEvaluationController extends BaseController
|
|
|
* 删除财务评估报告
|
|
|
*/
|
|
|
@ApiOperation("删除财务评估报告")
|
|
|
- @PreAuthorize("@ss.hasPermi('invest:information:remove')")
|
|
|
@Log(title = "财务评估报告", businessType = BusinessType.DELETE)
|
|
|
@DeleteMapping("/{ids}")
|
|
|
public AjaxResult remove(@PathVariable String[] ids)
|
|
|
@@ -153,7 +147,6 @@ public class FinancialEvaluationController extends BaseController
|
|
|
* 根据项目ID获取会议记录
|
|
|
*/
|
|
|
@ApiOperation("根据项目ID获取会议记录")
|
|
|
- @PreAuthorize("@ss.hasPermi('invest:information:query')")
|
|
|
@GetMapping(value = "/listProjectPoolId")
|
|
|
public AjaxResult listProjectPoolId(String projectPoolId)
|
|
|
{
|