liujie
6 天以前 e99c7cde9bfa219af9cf8405fc4d9d2ee6f86fa1
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);
    
    
    
}