|
|
@@ -105,8 +105,8 @@ public class StorageSealedConfirmationController {
|
|
105
|
105
|
* @param warehouseId 必传
|
|
106
|
106
|
* @return 储备信息为空表示非储备粮
|
|
107
|
107
|
*/
|
|
108
|
|
- @RequestMapping(value = "/checkGrainAttribute/{orgId}/{houseId}/{warehouseId}", produces = MediaType.APPLICATION_JSON_VALUE, method = RequestMethod.GET)
|
|
109
|
|
- public ResponseEntity checkGrainAttribute(@PathVariable("orgId") Integer orgId, @PathVariable("houseId") Integer houseId, @PathVariable("warehouseId") Integer warehouseId) {
|
|
|
108
|
+ @RequestMapping(value = "/checkGrainAttribute/{orgId}/{houseId}", produces = MediaType.APPLICATION_JSON_VALUE, method = RequestMethod.GET)
|
|
|
109
|
+ public ResponseEntity checkGrainAttribute(@PathVariable("orgId") Integer orgId, @PathVariable("houseId") Integer houseId, Integer warehouseId) {
|
|
110
|
110
|
return ResponseEntity.ok(confirmationService.checkGrainAttribute(orgId, houseId, warehouseId));
|
|
111
|
111
|
}
|
|
112
|
112
|
|