|
|
@@ -1150,7 +1150,8 @@ public class TMSController extends BaseRESTfulController {
|
|
|
@PostMapping("/getgenerateOperateDaily")
|
|
|
public Map<String,Object> generateOperateDaily(@RequestBody Map<String,Object> map) {
|
|
|
return tmsFeign.getgenerateOperateDaily(map);
|
|
|
- } @ApiOperation(value = "保存WMS传递的内转出库数据", notes = "保存WMS传递的内转出库数据")
|
|
|
+ }
|
|
|
+ @ApiOperation(value = "保存WMS传递的内转出库数据", notes = "保存WMS传递的内转出库数据")
|
|
|
@PostMapping(value = "/preserveMoveListIn")
|
|
|
public RESTfulResult preserveMoveListIn(@RequestBody Map<String, Object> mapList) {
|
|
|
return tmsFeign.preserveMoveListIn(mapList);
|
|
|
@@ -1179,4 +1180,10 @@ public class TMSController extends BaseRESTfulController {
|
|
|
public RESTfulResult modifyChange(@RequestBody Map<String, Object> params) {
|
|
|
return tmsFeign.modifyChange(params);
|
|
|
}
|
|
|
+
|
|
|
+ @ApiOperation(value = "针对签到过期的计时单子重新赋权", notes = "针对签到过期的计时单子重新赋权")
|
|
|
+ @PostMapping(value = "/resartStartTimming")
|
|
|
+ public RESTfulResult resartStartTimming(@RequestBody Map<String, Object> params) {
|
|
|
+ return tmsFeign.resartStartTimming(params);
|
|
|
+ }
|
|
|
}
|