|
@@ -135,7 +135,7 @@ public class BillCleanController {
|
|
|
|
|
|
@PostMapping("/goodsCarClean")
|
|
|
public Result goodsCarClean(HttpServletRequest httpServletRequest, @RequestParam("id") String id,
|
|
|
- @RequestParam("data") String data,
|
|
|
+ @RequestParam("date") String date,
|
|
|
@RequestParam(value = "img1", required = false) MultipartFile img1,
|
|
|
@RequestParam(value = "img2", required = false) MultipartFile img2,
|
|
|
@RequestParam(value = "img3", required = false) MultipartFile img3,
|
|
@@ -144,7 +144,7 @@ public class BillCleanController {
|
|
|
@RequestParam("farmId") String farmId,
|
|
|
@RequestParam("type") String type,
|
|
|
@RequestParam("result") String result) throws IOException, ParseException {
|
|
|
- return cleanService.goodsCarClean(httpServletRequest, farmId, id, data, img1, img2, img3, img4, img5, type, result);
|
|
|
+ return cleanService.goodsCarClean(httpServletRequest, farmId, id, date, img1, img2, img3, img4, img5, type, result);
|
|
|
}
|
|
|
|
|
|
|