This commit is contained in:
Lemon
2023-11-04 09:01:37 +08:00
6 changed files with 80 additions and 13 deletions

View File

@@ -58,7 +58,7 @@ public class PileMerchantInfoController extends BaseController {
* @param pileMerchantInfo
* @return
*/
@PreAuthorize("@ss.hasPermi('pile:merchant:list')")
// @PreAuthorize("@ss.hasPermi('pile:merchant:list')")
@GetMapping("/getMerchantList")
public TableDataInfo getMerchantList(PileMerchantInfo pileMerchantInfo) {
List<PileMerchantInfo> list = pileMerchantInfoService.selectPileMerchantInfoListWithAuth(pileMerchantInfo);

View File

@@ -242,8 +242,9 @@ public class SpringBootTestController {
@Test
public void queryPaymentByOrderNoTest() {
String orderNo = "C44903356969";
String wechatAppId = "wxbb3e0d474569481d";
try {
List<AdaPayment> adaPayments = adapayService.queryPaymentByOrderNo(orderNo);
List<AdaPayment> adaPayments = adapayService.queryPaymentByOrderNo(orderNo, wechatAppId);
System.out.println(JSON.toJSONString(adaPayments));
} catch (BaseAdaPayException e) {
throw new RuntimeException(e);