| | |
| | | <result column="id" property="id"/> |
| | | <result column="task_id" property="taskId"/> |
| | | <result column="place_id" property="placeId"/> |
| | | <result column="house_id" property="houseId"/> |
| | | <result column="district_id" property="districtId"/> |
| | | <result column="happen_time" property="happenTime"/> |
| | | <result column="user_id" property="userId"/> |
| | | <result column="image_urls" property="imageUrls"/> |
| | |
| | | <result column="confirm_notion" property="confirmNotion"/> |
| | | <result column="owner" property="owner"/> |
| | | <result column="phone_number" property="phoneNumber"/> |
| | | <result column="house_name" property="houseName"/> |
| | | <result column="task_name" property="taskName"/> |
| | | <result column="transaction_object_tel" property="transactionObjectTel"/> |
| | | <result column="transaction_money" property="transactionMoney"/> |
| | | <result column="goods_nums" property="goodsNums"/> |
| | |
| | | |
| | | <select id="selectTaskLabelReportingEventPage" resultMap="taskLabelReportingEventResultMap"> |
| | | select * from jczz_task_label_reporting_event where is_deleted = 0 |
| | | <if test="vo.userId != null and vo.userId != ''"> |
| | | AND user_id = #{vo.checkUserId} |
| | | <if test="taskLabelReportingEvent.userId != null and taskLabelReportingEvent.userId != ''"> |
| | | AND user_id = #{taskLabelReportingEvent.userId} |
| | | </if> |
| | | <if test="taskLabelReportingEvent.eventType != null and taskLabelReportingEvent.eventType != ''"> |
| | | AND event_type = #{taskLabelReportingEvent.eventType} |
| | | </if> |
| | | </select> |
| | | |