|  |  |  | 
|---|
|  |  |  | import com.doumee.core.model.ApiResponse; | 
|---|
|  |  |  | import com.doumee.core.model.PageWrap; | 
|---|
|  |  |  | import com.doumee.core.model.PageData; | 
|---|
|  |  |  | import com.doumee.core.utils.Constants; | 
|---|
|  |  |  | import com.doumee.dao.business.model.Solutions; | 
|---|
|  |  |  | import com.doumee.dao.business.model.SolutionsBase; | 
|---|
|  |  |  | import com.doumee.service.business.SolutionsBaseService; | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import java.util.ArrayList; | 
|---|
|  |  |  | import java.util.List; | 
|---|
|  |  |  | import java.util.Objects; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * @author 江蹄蹄 | 
|---|
|  |  |  | 
|---|
|  |  |  | @PostMapping("/updateById") | 
|---|
|  |  |  | @RequiresPermissions("business:solutionsbase:update") | 
|---|
|  |  |  | public ApiResponse updateById(@RequestBody SolutionsBase solutionsBase) { | 
|---|
|  |  |  | solutionsBaseService.updateById(solutionsBase); | 
|---|
|  |  |  | if(Objects.isNull(solutionsBase.getSaveType()) | 
|---|
|  |  |  | || Constants.equalsInteger(solutionsBase.getSaveType(),Constants.ZERO)){ | 
|---|
|  |  |  | solutionsBaseService.updateById(solutionsBase); | 
|---|
|  |  |  | }else{ | 
|---|
|  |  |  | solutionsBaseService.saveSolutionsRisk(solutionsBase); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | return ApiResponse.success(null); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | public ApiResponse findById(@PathVariable Integer id) { | 
|---|
|  |  |  | return ApiResponse.success(solutionsBaseService.findById(id)); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiOperation("测试生成主方案") | 
|---|
|  |  |  | @GetMapping("/createSolutionBase") | 
|---|
|  |  |  | public ApiResponse createSolutionBase(Integer solutionId) { | 
|---|
|  |  |  | solutionsBaseService.createSolutionBase(solutionId); | 
|---|
|  |  |  | return ApiResponse.success(null); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|