PhotoResultMapper.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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.keystar.plane.inspection.mapper.PhotoResultMapper">
  4. <select id="queryResultByPhotoId" resultType="com.keystar.plane.inspection.entity.PhotoResultEntity">
  5. SELECT
  6. *
  7. FROM
  8. kr_photo_result
  9. WHERE
  10. photo_id = #{photoId}
  11. </select>
  12. <select id="queryFltPVString" resultType="com.keystar.plane.inspection.entity.PhotoResultEntity">
  13. SELECT DISTINCT
  14. r.photo_id, array_index
  15. FROM
  16. `kr_plane_photo` AS p,
  17. `kr_photo_result` AS r
  18. WHERE
  19. p.id = r.photo_id
  20. AND
  21. p.record_id = #{recordId}
  22. <if test = "type != null">
  23. AND `type` = #{type}
  24. </if>
  25. </select>
  26. <select id="queryFltPVPanel" resultType="com.keystar.plane.inspection.entity.PhotoResultEntity">
  27. SELECT DISTINCT
  28. r.photo_id, array_index, row_index, column_index
  29. FROM
  30. `kr_plane_photo` AS p,
  31. `kr_photo_result` AS r
  32. WHERE
  33. p.id = r.photo_id
  34. AND
  35. p.record_id = #{recordId}
  36. <if test = "type != null">
  37. AND `type` = #{type}
  38. </if>
  39. </select>
  40. <select id="queryFltPz" resultType="com.keystar.plane.inspection.entity.PlanePhotoEntity">
  41. SELECT DISTINCT
  42. p.pz_name
  43. FROM
  44. `kr_plane_photo` AS p,
  45. `kr_photo_result` AS r
  46. WHERE
  47. p.id = r.photo_id
  48. AND
  49. p.record_id = #{recordId}
  50. <if test = "type != null">
  51. AND `type` = #{type}
  52. </if>
  53. </select>
  54. <select id="queryResultByRecordId" resultType="com.keystar.plane.inspection.entity.PhotoResultEntity">
  55. SELECT
  56. *
  57. FROM
  58. kr_photo_result
  59. WHERE
  60. photo_id = #{recoedId}
  61. </select>
  62. </mapper>