Commit 09f96261 by xsc

smhmapper新增接口及sql语句,用于qaa服务

parent cdc72df6
......@@ -43,6 +43,8 @@ public interface SmhMapper {
Smh selectByGrpinrAndDirAndCortypAndMsgtyp(@Param("grpinr") String grpinr, @Param("dir") String dir, @Param("msgtyp") String msgtyp, @Param("cortyp") String cortyp);
Smh selectByCrefrmAndMpiinr (@Param("crefrm") String crefrm,@Param("mpiinr") String mpiinr);
/**
* 查询待发送的ero报文
*
......
......@@ -495,6 +495,15 @@
and CORTYP = #{cortyp}
</select>
<select id="selectByCrefrmAndMpiinr" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from smh
where CREFRM = #{crefrm}
and MPIINR = #{mpiinr}
</select>
<select id="selectEroSmh" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment