SmartWarningMapper.java 499 B

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