package com.ruoyi.system.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.ruoyi.system.mapper.TEarlyWarningMapper;
|
import com.ruoyi.system.model.TEarlyWarning;
|
import com.ruoyi.system.service.TEarlyWarningService;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* <p>
|
* 任务预警 服务实现类
|
* </p>
|
*
|
* @author xiaochen
|
* @since 2025-05-28
|
*/
|
@Service
|
public class TEarlyWarningServiceImpl extends ServiceImpl<TEarlyWarningMapper, TEarlyWarning> implements TEarlyWarningService {
|
|
}
|