package com.boying.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.boying.entity.PayLog;
|
|
import java.util.List;
|
|
/**
|
* @author kdq
|
* @version 1.0.0
|
* @ClassName PayLogService.java
|
* @Description TODO
|
* @createTime 2023年12月12日 17:35:00
|
*/
|
public interface PayLogService extends IService<PayLog> {
|
|
PayLog findByPayCode(String payCode);
|
|
}
|