xuhy
3 天以前 ff265ba53df1d9e89ae2d4258007cd2e02811f8c
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.ruoyi.order.util.mongodb.service;
 
import com.ruoyi.integration.api.model.ChargingHandshake;
import com.ruoyi.order.util.mongodb.base.BaseService;
 
public interface ChargingHandshakeService extends BaseService<ChargingHandshake> {
    
    
    ChargingHandshake getDataByOrderCode(String code);
    
    
    
}