Pu Zhibing
2025-06-09 4c77ac6367145e4740141e872e1cda1c16efa9b1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.ruoyi.chargingPile.util.mongodb.service;
 
import com.ruoyi.chargingPile.util.mongodb.base.BaseService;
import com.ruoyi.integration.api.model.TransactionRecord;
 
public interface TransactionRecordService extends BaseService<TransactionRecord> {
    
    /**
     * 根据订单流水号查询数据
     * @param code
     * @return
     */
    TransactionRecord findOne(String code);
}