package com.boying.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.boying.entity.PaymentLog;
|
import com.boying.mapper.PaymentLogMapper;
|
import com.boying.service.PaymentLogService;
|
import lombok.AllArgsConstructor;
|
import org.springframework.stereotype.Service;
|
|
|
/**
|
* @author kdq
|
* @version 1.0.0
|
* @ClassName PayLogServiceImpl.java
|
* @Description TODO
|
* @createTime 2023年12月12日 17:35:00
|
*/
|
@Service
|
@AllArgsConstructor
|
public class PaymentLogServiceImpl extends ServiceImpl<PaymentLogMapper, PaymentLog> implements PaymentLogService {
|
}
|