2024-06-11 17:34:24 +08:00
|
|
|
package com.whdc.mapper;
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
|
|
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);
|
2024-06-13 16:06:46 +08:00
|
|
|
List<QXWarning> findByMsgIsNull();
|
2024-06-13 15:11:45 +08:00
|
|
|
|
|
|
|
|
List<QXWarning> getWarnAndMsg(@Param("stm") String stm,@Param("etm") String etm);
|
2024-06-11 17:34:24 +08:00
|
|
|
}
|