kongdeqiang
2 天以前 199202813dd8ca536ed2334f5eeb6aba3ad25b21
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 {
}