list of assessments #85
@ -1,11 +1,11 @@
|
|||||||
package ru.ulstu.extractor.recommendation.controller;
|
package ru.ulstu.extractor.assessment.controller;
|
||||||
|
|
||||||
import org.springframework.stereotype.Controller;
|
import org.springframework.stereotype.Controller;
|
||||||
import org.springframework.ui.Model;
|
import org.springframework.ui.Model;
|
||||||
import org.springframework.web.bind.annotation.GetMapping;
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
import org.springframework.web.bind.annotation.RequestParam;
|
import org.springframework.web.bind.annotation.RequestParam;
|
||||||
|
import ru.ulstu.extractor.assessment.model.FilterBranchForm;
|
||||||
import ru.ulstu.extractor.branch.service.BranchService;
|
import ru.ulstu.extractor.branch.service.BranchService;
|
||||||
import ru.ulstu.extractor.recommendation.model.FilterBranchForm;
|
|
||||||
import ru.ulstu.extractor.rule.service.FuzzyInferenceService;
|
import ru.ulstu.extractor.rule.service.FuzzyInferenceService;
|
||||||
import springfox.documentation.annotations.ApiIgnore;
|
import springfox.documentation.annotations.ApiIgnore;
|
||||||
|
|
||||||
@ -15,11 +15,11 @@ import static ru.ulstu.extractor.core.Route.ASSESSMENTS;
|
|||||||
|
|
||||||
@Controller
|
@Controller
|
||||||
@ApiIgnore
|
@ApiIgnore
|
||||||
public class RecommendationController {
|
public class AssessmentController {
|
||||||
private final FuzzyInferenceService fuzzyInferenceService;
|
private final FuzzyInferenceService fuzzyInferenceService;
|
||||||
private final BranchService branchService;
|
private final BranchService branchService;
|
||||||
|
|
||||||
public RecommendationController(FuzzyInferenceService fuzzyInferenceService,
|
public AssessmentController(FuzzyInferenceService fuzzyInferenceService,
|
||||||
BranchService branchService) {
|
BranchService branchService) {
|
||||||
this.fuzzyInferenceService = fuzzyInferenceService;
|
this.fuzzyInferenceService = fuzzyInferenceService;
|
||||||
this.branchService = branchService;
|
this.branchService = branchService;
|
@ -1,4 +1,4 @@
|
|||||||
package ru.ulstu.extractor.recommendation.model;
|
package ru.ulstu.extractor.assessment.model;
|
||||||
|
|
||||||
import ru.ulstu.extractor.ts.model.TimeSeriesType;
|
import ru.ulstu.extractor.ts.model.TimeSeriesType;
|
||||||
|
|
@ -1,4 +1,4 @@
|
|||||||
package ru.ulstu.extractor.recommendation.model;
|
package ru.ulstu.extractor.assessment.model;
|
||||||
|
|
||||||
public class FilterBranchForm {
|
public class FilterBranchForm {
|
||||||
private Integer branchId;
|
private Integer branchId;
|
Loading…
Reference in New Issue
Block a user