- package com.gyee.impala.mapper.slave;
- import com.gyee.impala.model.slave.WarningClassify;
- import org.apache.ibatis.annotations.Mapper;
- import java.util.List;
- /**
- * @author:Wanghs
- * @date:2020-01-08
- */
- @Mapper
- public interface WarningClassifyMapper {
- List<WarningClassify> getAll();
- }
|