| 1234567891011121314151617181920212223 |
- package com.template.mapper;
- import com.template.model.pojo.SmartWarning;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import org.springframework.stereotype.Repository;
- import java.util.List;
- /**
- * <p>
- * Mapper 接口
- * </p>
- *
- * @author ceshi
- * @since 2023-12-04
- */
- @Repository
- public interface SmartWarningMapper extends BaseMapper<SmartWarning> {
- List<String> warningType();
- }
|