| | |
| | | <if test="ownersCommittee.imageUrl != null and ownersCommittee.imageUrl != ''">and image_url = #{ownersCommittee.imageUrl}</if> |
| | | <if test="ownersCommittee.joinTime != null ">and join_time = #{ownersCommittee.joinTime}</if> |
| | | <if test="ownersCommittee.mobile != null and ownersCommittee.mobile != ''">and mobile = #{ownersCommittee.mobile}</if> |
| | | <if test="ownersCommittee.name != null and ownersCommittee.name != ''">and name = #{ownersCommittee.name}</if> |
| | | <if test="ownersCommittee.name != null and ownersCommittee.name != ''">and name like concat('%',#{ownersCommittee.name},'%') </if> |
| | | <if test="ownersCommittee.ownersCommitteeName != null and ownersCommittee.ownersCommitteeName != ''">and owners_committee_name = |
| | | #{ownersCommittee.ownersCommitteeName} |
| | | </if> |
| | |
| | | <result property="updateTime" column="update_time"/> |
| | | <result property="createTime" column="create_time"/> |
| | | <result property="deleteFlag" column="delete_flag"/> |
| | | <result property="userId" column="user_id"/> |
| | | </resultMap> |
| | | |
| | | <sql id="selectOwnersCommitteeMember"> |
| | |
| | | update_id, |
| | | update_time, |
| | | create_time, |
| | | delete_flag |
| | | delete_flag, |
| | | user_id |
| | | from jczz_owners_committee_member |
| | | </sql> |
| | | |