|
@@ -4,7 +4,6 @@ import java.util.List;
|
|
|
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
|
-import com.phm.manage.domain.dto.DataParameterRequest;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
import org.springframework.web.bind.annotation.DeleteMapping;
|
|
@@ -24,6 +23,7 @@ import com.phm.common.enums.BusinessType;
|
|
|
import com.phm.common.utils.poi.ExcelUtil;
|
|
|
import com.phm.manage.domain.SortieParameter;
|
|
|
import com.phm.manage.domain.common.CommonResult;
|
|
|
+import com.phm.manage.domain.dto.DataParameterRequest;
|
|
|
import com.phm.manage.service.ISortieParameterService;
|
|
|
|
|
|
/**
|
|
@@ -43,6 +43,11 @@ public class SortieParameterController extends BaseController {
|
|
|
return CommonResult.success(sortieParameterService.getSortieData(id));
|
|
|
}
|
|
|
|
|
|
+ @GetMapping(value = "dataParams/{id}")
|
|
|
+ public CommonResult<List<String>> getSortieDataParams(@PathVariable("id") Long id) {
|
|
|
+ return CommonResult.success(sortieParameterService.getSortieDataParams(id));
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 查询模型参数信息列表
|
|
|
*/
|