mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 19:15:35 +08:00
订单分账逻辑
This commit is contained in:
@@ -51,7 +51,7 @@ public class PileMerchantInfoController extends BaseController {
|
||||
@PreAuthorize("@ss.hasPermi('pile:merchant:list')")
|
||||
@GetMapping("queryFirstLevelMerchant")
|
||||
public TableDataInfo queryFirstLevelMerchant() {
|
||||
List<PileMerchantInfo> list = pileMerchantInfoService.queryFirstLevelMerchant();
|
||||
List<PileMerchantInfo> list = pileMerchantInfoService.queryFirstLevelMerchantList();
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
|
||||
@@ -206,6 +206,16 @@ public class SpringBootTestController {
|
||||
@Autowired
|
||||
private LTYTService ltytService;
|
||||
|
||||
@Autowired
|
||||
private IPileMerchantInfoService pileMerchantInfoService;
|
||||
|
||||
@Test
|
||||
public void getFirstLevelMerchantByMerchantIdTest() {
|
||||
String merchantId = "13";
|
||||
PileMerchantInfo merchantInfo = pileMerchantInfoService.getFirstLevelMerchantByMerchantId(merchantId);
|
||||
System.out.println(JSON.toJSONString(merchantInfo));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void queryPaymentInfoTest() throws BaseAdaPayException {
|
||||
String wechatAppId = "wxbb3e0d474569481d";
|
||||
|
||||
Reference in New Issue
Block a user