|
@@ -13,6 +13,7 @@ import com.steerinfo.framework.service.pagehelper.PageHelper;
|
|
|
import io.swagger.annotations.ApiImplicitParam;
|
|
|
import io.swagger.annotations.ApiImplicitParams;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
+import org.apache.shiro.crypto.hash.Hash;
|
|
|
import org.apache.xmlbeans.impl.xb.xsdschema.All;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
@@ -54,7 +55,9 @@ public class QmsQueueResultController extends BaseRESTfulController {
|
|
|
})
|
|
|
|
|
|
@PostMapping(value = "/addQueueResult")
|
|
|
- public String addQueueResult(Map<String, Object> map){
|
|
|
+ public String addQueueResult(String vno){
|
|
|
+ Map<String, Object> map = new HashMap<>();
|
|
|
+ map.put("vno",vno);
|
|
|
int i = qmsQueueResultService.addQueueResult(map);
|
|
|
if(i > 0){
|
|
|
return "success";
|