kongdeqiang
2023-04-26 8cf6f6c327dc4258c7dc265765552eced8296815
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.boying.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.boying.entity.EnterPark;
import com.boying.entity.ErrorLog;
import com.boying.mapper.EnterParkMapper;
import com.boying.mapper.ErrorLogMapper;
import com.boying.service.EnterParkService;
import com.boying.service.ErrorLogService;
import lombok.AllArgsConstructor;
import org.springframework.stereotype.Service;
 
/**
 * @author kdq
 * @version 1.0.0
 * @ClassName ErrorLogServiceImpl.java
 * @Description TODO
 * @createTime 2023年04月24日 15:50:00
 */
@Service
@AllArgsConstructor
public class ErrorLogServiceImpl extends ServiceImpl<ErrorLogMapper, ErrorLog> implements ErrorLogService {
}