Pu Zhibing
2025-02-06 1533ed2ef41d32033a5ffc4aa08e2b0c9e7d14db
1
2
3
4
5
6
7
8
9
10
11
package com.ruoyi.integration.mongodb.service;
 
import com.ruoyi.integration.api.model.ChargingHandshake;
import com.ruoyi.integration.mongodb.base.BaseService;
 
public interface ChargingHandshakeService extends BaseService<ChargingHandshake> {
    
    
    ChargingHandshake getDataByOrderCode(String code);
 
}