WayBillFileMapper.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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.jkcredit.invoice.mapper.waybill.WayBillFileMapper">
  4. <!-- 通用查询映射结果 -->
  5. <resultMap id="BaseResultMap" type="com.jkcredit.invoice.model.entity.waybill.NoCarWayBillFileInfo">
  6. <result column="wayBillNum" property="wayBillNum"/>
  7. <result column="batchNum" property="batchNum"/>
  8. <result column="updateTime" property="updateTime"/>
  9. </resultMap>
  10. <resultMap id="BaseResultWithFileMap" extends="BaseResultMap" type="com.jkcredit.invoice.model.entity.waybill.NoCarWayBillFileInfo">
  11. <result column="base64Str" property="base64Str"/>
  12. </resultMap>
  13. <sql id="baseSql">
  14. customerId,
  15. companyName,
  16. batchNum,
  17. wayBillNum,
  18. updateTime
  19. </sql>
  20. <select id="selectAllFiles" resultMap="BaseResultMap">
  21. select
  22. <include refid="baseSql" />
  23. from t_waybill_File
  24. <where>
  25. <if test="noCarWayBillFileInfo.customerId != null and noCarWayBillFileInfo.customerId != ''">
  26. and customerId = BINARY #{noCarWayBillFileInfo.customerId}
  27. </if>
  28. <if test="noCarWayBillFileInfo.batchNum != null and noCarWayBillFileInfo.batchNum != ''">
  29. and batchNum = BINARY #{noCarWayBillFileInfo.batchNum}
  30. </if>
  31. <if test="noCarWayBillFileInfo.wayBillNum != null and noCarWayBillFileInfo.wayBillNum != ''">
  32. and wayBillNum like concat(#{noCarWayBillFileInfo.wayBillNum,jdbcType=VARCHAR},'%')
  33. </if>
  34. </where>
  35. ORDER by batchNum desc
  36. </select>
  37. <insert id="insert" parameterType="com.jkcredit.invoice.model.entity.waybill.NoCarWayBillFileInfo" >
  38. insert into t_waybill_File (
  39. customerId,
  40. companyName,
  41. batchNum,
  42. wayBillNum,
  43. updateTime,
  44. base64Str
  45. )
  46. values( #{customerId,jdbcType=VARCHAR}, #{companyName,jdbcType=VARCHAR}, #{batchNum,jdbcType=VARCHAR}, #{wayBillNum,jdbcType=VARCHAR},
  47. #{updateTime,jdbcType=VARCHAR}, #{base64Str,jdbcType=VARCHAR})
  48. </insert>
  49. <select id="selectFileInfo" parameterType="java.lang.String" resultMap="BaseResultWithFileMap">
  50. select <include refid="baseSql" />,base64Str from t_waybill_File where batchNum=#{batchNum,jdbcType=VARCHAR} and wayBillNum like concat(#{wayBillNum,jdbcType=VARCHAR},'%')
  51. </select>
  52. <select id="selectFileInfoNoFile" parameterType="java.util.HashMap" resultMap="BaseResultMap">
  53. select <include refid="baseSql" /> from t_waybill_File where batchNum=#{batchNum,jdbcType=VARCHAR} and wayBillNum like concat(#{wayBillNum,jdbcType=VARCHAR},'%')
  54. </select>
  55. </mapper>