SmartWarningMapper.java 408 B

1234567891011121314151617181920212223
  1. package com.template.mapper;
  2. import com.template.model.pojo.SmartWarning;
  3. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  4. import org.springframework.stereotype.Repository;
  5. import java.util.List;
  6. /**
  7. * <p>
  8. * Mapper 接口
  9. * </p>
  10. *
  11. * @author ceshi
  12. * @since 2023-12-04
  13. */
  14. @Repository
  15. public interface SmartWarningMapper extends BaseMapper<SmartWarning> {
  16. List<String> warningType();
  17. }