carbon_emission/server/src/main/java/net/carbon/mapper/TimelyWarningMapper.java

12 lines
261 B
Java
Raw Normal View History

2025-02-27 12:47:33 +08:00
package net.carbon.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import net.carbon.model.po.TimelyWarningDO;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface TimelyWarningMapper extends BaseMapper<TimelyWarningDO> {
}