parent
f7949cf8a4
commit
2075881c93
@ -0,0 +1,15 @@
|
||||
package com.ruoyi.pt.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.ruoyi.pt.entity.EventsCopy;
|
||||
|
||||
/**
|
||||
* 事件集合临时表(EventsCopy)表数据库访问层
|
||||
*
|
||||
* @author wu
|
||||
* @since 2023-12-29 19:55:49
|
||||
*/
|
||||
public interface EventsCopyMapper extends BaseMapper<EventsCopy> {
|
||||
|
||||
}
|
||||
|
@ -0,0 +1,15 @@
|
||||
package com.ruoyi.pt.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.ruoyi.pt.entity.EventsCopy;
|
||||
|
||||
/**
|
||||
* 事件集合临时表(EventsCopy)表服务接口
|
||||
*
|
||||
* @author wu
|
||||
* @since 2023-12-29 19:55:49
|
||||
*/
|
||||
public interface EventsCopyService extends IService<EventsCopy> {
|
||||
|
||||
}
|
||||
|
@ -0,0 +1,19 @@
|
||||
package com.ruoyi.pt.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.ruoyi.pt.mapper.EventsCopyMapper;
|
||||
import com.ruoyi.pt.entity.EventsCopy;
|
||||
import com.ruoyi.pt.service.EventsCopyService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* 事件集合临时表(EventsCopy)表服务实现类
|
||||
*
|
||||
* @author wu
|
||||
* @since 2023-12-29 19:55:49
|
||||
*/
|
||||
@Service("eventsCopyService")
|
||||
public class EventsCopyServiceImpl extends ServiceImpl<EventsCopyMapper, EventsCopy> implements EventsCopyService {
|
||||
|
||||
}
|
||||
|
Loading…
Reference in new issue