HsFlowCcMapper.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="com.willalp.flow.mapper.HsFlowCcMapper">
  6. <resultMap type="com.willalp.flow.domain.HsFlowCc" id="HsFlowCcResult">
  7. <result property="id" column="id"/>
  8. <result property="title" column="title"/>
  9. <result property="formData" column="form_data"/>
  10. <result property="apply" column="apply"/>
  11. <result property="users" column="users"/>
  12. <result property="isDelete" column="is_delete"/>
  13. <result property="examplesId" column="examples_id"/>
  14. <result property="createBy" column="create_by"/>
  15. <result property="createTime" column="create_time"/>
  16. <result property="updateBy" column="update_by"/>
  17. <result property="updateTime" column="update_time"/>
  18. <result property="remark" column="remark"/>
  19. </resultMap>
  20. <sql id="selectHsFlowCcVo">
  21. select id,
  22. title,
  23. form_data,
  24. apply,
  25. users,
  26. is_delete,
  27. examples_id,
  28. create_by,
  29. create_time,
  30. update_by,
  31. update_time,
  32. remark
  33. from hs_flow_cc
  34. </sql>
  35. <select id="selectHsFlowCcList" parameterType="HsFlowCc" resultMap="HsFlowCcResult">
  36. <include refid="selectHsFlowCcVo"/>
  37. <where>
  38. is_delete = 0
  39. <if test="title != null and title != ''">
  40. and title = #{title}
  41. </if>
  42. <if test="jsonData != null and jsonData != ''">
  43. and json_data = #{jsonData}
  44. </if>
  45. <if test="apply != null and apply != ''">
  46. and apply = #{apply}
  47. </if>
  48. <if test="users != null and users != ''">
  49. and users = #{users}
  50. </if>
  51. <if test="examplesId != null and examplesId != ''">
  52. and examples_id = #{examplesId}
  53. </if>
  54. </where>
  55. order by update_time desc
  56. </select>
  57. </mapper>