You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
475 B
20 lines
475 B
11 months ago
|
package com.yingji.service.impl;
|
||
|
|
||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||
|
import com.yingji.entity.Event;
|
||
|
import com.yingji.mapper.EventMapper;
|
||
|
import com.yingji.service.EventService;
|
||
|
import org.springframework.stereotype.Service;
|
||
|
|
||
|
/**
|
||
|
* 事故(Event)表服务实现类
|
||
|
*
|
||
|
* @author wu
|
||
|
* @since 2024-05-10 17:10:33
|
||
|
*/
|
||
|
@Service("eventService")
|
||
|
public class EventServiceImpl extends ServiceImpl<EventMapper, Event> implements EventService {
|
||
|
|
||
|
}
|
||
|
|