|
@@ -11,6 +11,7 @@ import org.springframework.web.bind.annotation.*;
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
import org.springframework.web.multipart.MultipartRequest;
|
|
import org.springframework.web.multipart.MultipartRequest;
|
|
|
|
|
|
|
|
+import java.math.BigDecimal;
|
|
import java.util.List;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import java.util.Map;
|
|
|
|
|
|
@@ -518,7 +519,18 @@ public interface TmsTruckFeign {
|
|
@RequestParam String con
|
|
@RequestParam String con
|
|
);
|
|
);
|
|
|
|
|
|
|
|
+ @PostMapping("api/v1/truckTms/tmstruckreceiptresults/getReceiptResult")
|
|
|
|
+ Map<String, Object> getReceiptResult(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
|
+ @RequestParam Integer apiId,
|
|
|
|
+ @RequestParam Integer pageNum,
|
|
|
|
+ @RequestParam Integer pageSize,
|
|
|
|
+ @RequestParam String con,
|
|
|
|
+ @RequestParam String startTime,
|
|
|
|
+ @RequestParam String endTime
|
|
|
|
+ );
|
|
|
|
|
|
|
|
+ @PostMapping("api/v1/truckTms/tmstruckreceiptresults/getReceiptPhoto")
|
|
|
|
+ String getReceiptPhoto(@RequestParam String orderNumber);
|
|
|
|
|
|
@PostMapping("/api/v1/truckTms/pathDisplay/fullPath")
|
|
@PostMapping("/api/v1/truckTms/pathDisplay/fullPath")
|
|
public Object fullPath(@RequestParam("orderNumber") String orderNumber) throws Exception;
|
|
public Object fullPath(@RequestParam("orderNumber") String orderNumber) throws Exception;
|