FileAndFolderMapper.xml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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.wtkj.mapper.FileAndFolderMapper">
  4. <select id="selectByStage" resultType="com.wtkj.entity.FileAndFolder">
  5. select * from blade_file_and_folder where is_deleted = 0 and parent_id = 0 and stage_id = #{param1}
  6. order by type desc, is_private
  7. </select>
  8. <select id="getFileAmountByFolderId" resultType="java.lang.Integer">
  9. select count(id) from blade_file_and_folder where is_deleted = 0 and type = 1
  10. <if test="param1 != null">
  11. and stage_id = #{param1}
  12. </if>
  13. <if test="param2 != null">
  14. and parent_id = #{param2}
  15. </if>
  16. </select>
  17. <select id="getChildrenFolderList" resultType="com.wtkj.entity.FileAndFolder">
  18. select * from blade_file_and_folder where is_deleted = 0 and type = 2
  19. <if test="param1 != null">
  20. and stage_id = #{param1}
  21. </if>
  22. <if test="param2 != null">
  23. and parent_id = #{param2}
  24. </if>
  25. </select>
  26. <select id="selectByParent" resultType="com.wtkj.entity.FileAndFolder">
  27. select * from blade_file_and_folder where is_deleted = 0 and parent_id = #{param1}
  28. order by type desc, is_private
  29. </select>
  30. <select id="getChildrenFileList" resultType="com.wtkj.entity.FileAndFolder">
  31. select * from blade_file_and_folder where is_deleted = 0 and type = 1
  32. <if test="param1 != null">
  33. and stage_id = #{param1}
  34. </if>
  35. <if test="param2 != null">
  36. and parent_id = #{param2}
  37. </if>
  38. </select>
  39. <select id="getChildren" resultType="com.wtkj.entity.FileAndFolder">
  40. select * from blade_file_and_folder where is_deleted = 0
  41. <if test="param1 != null">
  42. and stage_id = #{param1}
  43. </if>
  44. <if test="param2 != null">
  45. and parent_id = #{param2}
  46. </if>
  47. </select>
  48. <select id="getPage" resultType="com.wtkj.entity.FileAndFolder">
  49. select * from blade_file_and_folder where is_deleted = 0 and type = 1 and project_id = #{param1}
  50. <if test="param2 != null">
  51. and stage_id = #{param2}
  52. </if>
  53. <if test="param3 != null ">
  54. and DATE(create_time) >=DATE_SUB(CURDATE(), INTERVAL 15 DAY)
  55. </if>
  56. order by create_time desc
  57. </select>
  58. <select id="selectFileAmountByStageId" resultType="java.lang.Integer">
  59. select count(id) from blade_file_and_folder where is_deleted = 0 and type = 1 and stage_id = #{param}
  60. </select>
  61. </mapper>