|
|
@@ -11,7 +11,6 @@ import com.goafanti.common.utils.excel.FileUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.http.MediaType;
|
|
|
-import org.springframework.validation.BindingResult;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMethod;
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
|
@@ -41,7 +40,7 @@ public class RDController extends BaseApiController {
|
|
|
|
|
|
|
|
|
@RequestMapping(value="/update",method = RequestMethod.POST)
|
|
|
- public Result update( InputRdDetails in ,BindingResult bindingResult) {
|
|
|
+ public Result update( InputRdDetails in) {
|
|
|
Result res= new Result();
|
|
|
res.data(rdService.update(in));
|
|
|
return res;
|