kongdeqiang
2 天以前 199202813dd8ca536ed2334f5eeb6aba3ad25b21
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.boying.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.boying.entity.PayLog;
import com.boying.entity.PaymentLog;
 
/**
 * @author kdq
 * @version 1.0.0
 * @ClassName PaymentLogService.java
 * @Description TODO
 * @createTime 2023年12月12日 17:35:00
 */
public interface PaymentLogService extends IService<PaymentLog> {
 
}