lisy
2023-07-07 33658ae5597c9e395545fac39d8fe4bfc732f2ca
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.dsh.account.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.dsh.account.entity.RechargeRecords;
 
/**
 * <p>
 * 充值记录 服务类
 * </p>
 *
 * @author jqs
 * @since 2023-07-07
 */
public interface RechargeRecordsService extends IService<RechargeRecords> {
 
}