MedicineReturnMapper.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.miyzh.dao.MedicineReturnDao">
  4. <resultMap id="BaseResultMap" type="com.miyzh.entity.MedicineReturnTemp" extends="com.miyzh.dao.MedicineDao.BaseResultMap">
  5. <!--退货数量-->
  6. <result column="return_quantity" jdbcType="VARCHAR" property="returnQuantity" />
  7. <!--机构出库编码-->
  8. <result column="store_return_code" jdbcType="VARCHAR" property="storeReturnCode" />
  9. <!--机构入库编码-->
  10. <result column="store_storage_code" jdbcType="VARCHAR" property="storeStorageCode" />
  11. <!--出库人-->
  12. <result column="return_man" jdbcType="VARCHAR" property="returnMan" />
  13. <!--出库时间-->
  14. <result column="return_time" jdbcType="VARCHAR" property="returnTime" />
  15. </resultMap>
  16. <!--西药销售出库记录-->
  17. <select id="listMedicineOutbound" resultMap="BaseResultMap" parameterType="java.lang.String">
  18. </select>
  19. <!--中药销售出库记录-->
  20. <select id="listChinaMedicineOutbound" resultMap="BaseResultMap" parameterType="java.lang.String">
  21. </select>
  22. <!--西药损耗/领用出库记录-->
  23. <select id="listMedicineOutTreasury" resultMap="BaseResultMap" parameterType="java.lang.String">
  24. </select>
  25. <!--中药损耗/领用出库记录-->
  26. <select id="listChinaMedicineOutTreasury" resultMap="BaseResultMap" parameterType="java.lang.String">
  27. </select>
  28. <!--西药销售出库记录-->
  29. <select id="listChinaMedicineStore" resultMap="BaseResultMap" parameterType="java.lang.String">
  30. </select>
  31. <!--西药采购退货出库记录-->
  32. <select id="listMedicineBack" resultMap="BaseResultMap" parameterType="java.lang.String">
  33. </select>
  34. <!--中药采购退货出库记录-->
  35. <select id="listChinaMedicineBack" resultMap="BaseResultMap" parameterType="java.lang.String">
  36. </select>
  37. <!--西药盘点盘亏出库记录-->
  38. <select id="listMedicineInventory" resultMap="BaseResultMap" parameterType="java.lang.String">
  39. </select>
  40. <!--中药盘点盘亏出库记录-->
  41. <select id="listChinaMedicineInventory" resultMap="BaseResultMap" parameterType="java.lang.String">
  42. </select>
  43. </mapper>