|
|
@@ -1,5 +1,6 @@
|
|
|
package easydo.technology.controller;
|
|
|
|
|
|
+import easydo.technology.annotation.WebLog;
|
|
|
import easydo.technology.components.JdbcClient;
|
|
|
import easydo.technology.enums.ChengfaEnum;
|
|
|
import easydo.technology.exception.BizException;
|
|
|
@@ -37,6 +38,7 @@ public class SupplierEvaluateController {
|
|
|
@Resource
|
|
|
OAService oaService;
|
|
|
|
|
|
+ @WebLog
|
|
|
@RequestMapping(value = "/getPage")
|
|
|
public Object getPage(@RequestBody Map<String, Object> map) {
|
|
|
Connection connection = null;
|
|
|
@@ -64,6 +66,7 @@ public class SupplierEvaluateController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @WebLog
|
|
|
@RequestMapping(value = "/getList")
|
|
|
public Object getList(@RequestBody Map<String, Object> map) throws Exception {
|
|
|
Connection connection = null;
|
|
|
@@ -79,6 +82,7 @@ public class SupplierEvaluateController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @WebLog
|
|
|
@RequestMapping(value = "/save")
|
|
|
public Object save(@RequestBody SupplierEvaluate model) throws Exception {
|
|
|
Connection connection = null;
|
|
|
@@ -105,6 +109,7 @@ public class SupplierEvaluateController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @WebLog
|
|
|
@RequestMapping(value = "/evaluate")
|
|
|
public Object evaluate(@RequestBody SupplierEvaluateDetail model) throws Exception {
|
|
|
Connection connection = null;
|
|
|
@@ -190,6 +195,7 @@ public class SupplierEvaluateController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @WebLog
|
|
|
@RequestMapping(value = "/revert")
|
|
|
public Object revert(@RequestBody SupplierEvaluateDetail model) throws Exception {
|
|
|
Connection connection = null;
|
|
|
@@ -249,6 +255,7 @@ public class SupplierEvaluateController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @WebLog
|
|
|
@RequestMapping(value = "/active")
|
|
|
public Object active(@RequestBody SupplierEvaluate model) throws Exception {
|
|
|
Connection connection = null;
|
|
|
@@ -310,6 +317,7 @@ public class SupplierEvaluateController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @WebLog
|
|
|
@RequestMapping(value = "/update")
|
|
|
public Object update(@RequestBody SupplierEvaluate model) throws Exception {
|
|
|
Connection connection = null;
|
|
|
@@ -348,6 +356,7 @@ public class SupplierEvaluateController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @WebLog
|
|
|
@RequestMapping(value = "/getById")
|
|
|
public Object getById(@RequestBody SupplierEvaluate model) throws Exception {
|
|
|
Map<String, Object> result = new HashMap<>();
|
|
|
@@ -380,6 +389,7 @@ public class SupplierEvaluateController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @WebLog
|
|
|
@RequestMapping(value = "/remove")
|
|
|
public Object remove(@RequestBody SupplierEvaluate model) throws Exception {
|
|
|
Connection connection = null;
|
|
|
@@ -412,6 +422,7 @@ public class SupplierEvaluateController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @WebLog
|
|
|
@RequestMapping(value = "/getTongJi")
|
|
|
public Object getTongJi() throws Exception {
|
|
|
Map<String, Object> result = new HashMap<>();
|
|
|
@@ -442,6 +453,7 @@ public class SupplierEvaluateController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @WebLog
|
|
|
@RequestMapping(value = "/calculate")
|
|
|
public Object calculate(@RequestBody List<Map<String, BigDecimal>> list) throws Exception {
|
|
|
List<BigDecimal> result = new ArrayList<>();
|