update 校验支付单

This commit is contained in:
2023-10-24 14:49:49 +08:00
parent 238784d987
commit a4352ebc64
4 changed files with 49 additions and 37 deletions

View File

@@ -237,8 +237,10 @@ public class SpringBootTestController {
@Test
public void checkPaymentTest() {
QueryOrderDTO dto = new QueryOrderDTO();
dto.setStartTime("2023-07-01 00:00:00");
dto.setEndTime("2023-07-01 23:59:59");
String startTime = "2023-07-01 00:00:00";
String endTime = "2023-07-31 23:59:59";
dto.setStartTime(startTime);
dto.setEndTime(endTime);
try {
tempService.checkPayment(dto);