Commit df501b0d by jianglong

Merge branch 'develop' of http://114.115.138.98:8900/isc-v3.1/isc-core into develop

parents 6636dbfe 09f96261
......@@ -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