fxkh-txl-service/src/main/java/com/whdc/mapper/QXWarningMapper.java

19 lines
635 B
Java
Raw Normal View History

package com.whdc.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
2024-06-17 11:17:33 +08:00
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.whdc.model.dto.GroupWarningDto;
import com.whdc.model.entity.QXWarning;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface QXWarningMapper extends BaseMapper<QXWarning> {
List<QXWarning> find(@Param("dto")QXWarning dto);
List<QXWarning> findByMsgIsNull();
2024-06-13 15:11:45 +08:00
2024-06-17 11:17:33 +08:00
IPage<QXWarning> page(@Param("page") IPage<QXWarning> page, @Param("dto") GroupWarningDto dto);
2024-06-13 15:11:45 +08:00
List<QXWarning> getWarnAndMsg(@Param("stm") String stm,@Param("etm") String etm);
}