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 {
|
}
|