优化
This commit is contained in:
@ -45,6 +45,14 @@ public class AppZbfProjectController extends BaseController {
|
||||
return AjaxResult.success(iZbfProjectService.add(dto));
|
||||
}
|
||||
|
||||
@ApiOperation("总包方编辑项目")
|
||||
@Log(title = "总包方编辑项目", businessType = BusinessType.UPDATE)
|
||||
@RepeatSubmit
|
||||
@PutMapping()
|
||||
public AjaxResult<Boolean> edit(@Validated @RequestBody ZbfProjectAddDTO dto) {
|
||||
return AjaxResult.success(iZbfProjectService.edit(dto));
|
||||
}
|
||||
|
||||
@ApiOperation("总包方查询我的项目列表")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo<ZbfProjectListVO> list(@Validated ZbfProjectListDTO dto) {
|
||||
|
Reference in New Issue
Block a user