package com.ruoyi.service.impl;
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.ruoyi.domain.ZfLog;
|
import com.ruoyi.mapper.ZfLogMapper;
|
import com.ruoyi.service.ZfLogService;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* <p>
|
* 服务实现类
|
* </p>
|
*
|
* @author ojq
|
* @since 2023-09-06
|
*/
|
@Service
|
public class ZfLogServiceImpl extends ServiceImpl<ZfLogMapper, ZfLog> implements ZfLogService {
|
|
}
|