Commit 939ea701 by gechengyang

提交smh模型,新增docmd5,doclen,xxxcnt,mpiinr

parent b0a31abb
......@@ -144,5 +144,12 @@ public class Smh implements Serializable {
//原ISO报文类型
private String orimsgtyp = NULLSTR;
private String mpiinr=NULLSTR;
private String docmd5 = NULLSTR;
private long doclen ;
private int xxxcnt ;
}
......@@ -170,4 +170,6 @@ public interface SmhMapper {
Smh getSmhByApfcnt(@Param("apfcnt")String apfcnt);
Smh selectByMpiinr(@Param("mpiinr") String mpiinr);
}
\ No newline at end of file
......@@ -815,6 +815,12 @@
apfcnt =#{apfcnt,jdbcType=VARCHAR}
limit 1
</select>
<select id="selectByMpiinr" resultType="com.brilliance.isc.core.bo.Smh">
select
<include refid="Base_Column_List"/>
from smh
where mpiinr = #{mpiinr}
</select>
</mapper>
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