| | |
| | | <mapper namespace="com.zy.third.mapper.ExdInstockSourceMapper"> |
| | | |
| | | <resultMap id="BaseResultMap" type="com.zy.third.entity.ExdInstockSource"> |
| | | <id property="id" column="ID" /> |
| | | <id property="ID" column="ID" /> |
| | | <result property="finterid" column="FInterID" /> |
| | | <result property="fbillno" column="FBillNo" /> |
| | | <result property="ftrantype" column="FTranType" /> |
| | |
| | | <select id="listOrderNo" resultType="java.lang.String"> |
| | | select distinct fbillno |
| | | from Exd_Instock_Source |
| | | where status = 0 |
| | | where status in(0,4) |
| | | </select> |
| | | |
| | | <select id="deletelistOrderNo" resultType="com.zy.third.entity.ExdInstockSource"> |
| | | select * |
| | | from Exd_Instock_Source |
| | | where status = 5 |
| | | </select> |
| | | |
| | | |
| | | <select id="listAll" resultType="com.zy.third.entity.ExdInstockSource"> |
| | | select * from Exd_Instock_Source where fbillno = #{orderNo} |
| | | select * from Exd_Instock_Source where fbillno = #{orderNo} and Status in(0,1,2,3,4) |
| | | </select> |
| | | |
| | | |