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

15 lines
438 B
Java
Raw Normal View History

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);
List<QXWarning> findByMsgIsNull();
2024-06-13 15:11:45 +08:00
List<QXWarning> getWarnAndMsg(@Param("stm") String stm,@Param("etm") String etm);
}