| | |
| | | <result column="task_id" property="taskId"/> |
| | | <result column="hotel_name" property="hotelName"/> |
| | | <result column="place_id" property="placeId"/> |
| | | <result column="district_id" property="districtId"/> |
| | | <result column="district_name" property="districtName"/> |
| | | <result column="check_time" property="checkTime"/> |
| | | <result column="check_user_id" property="checkUserId"/> |
| | | <result column="check_user_name" property="checkUserName"/> |
| | |
| | | <result column="sc_flag" property="scFlag"/> |
| | | <result column="confirm_notion" property="confirmNotion"/> |
| | | <result column="confirm_flag" property="confirmFlag"/> |
| | | <result column="event_type" property="eventType"/> |
| | | </resultMap> |
| | | |
| | | |
| | | <select id="selectTaskHotelReportingPage" resultMap="taskHotelReportingResultMap"> |
| | | select * from jczz_task_hotel_reporting where is_deleted = 0 |
| | | select id, |
| | | task_id, |
| | | hotel_name, |
| | | place_id, |
| | | check_time, |
| | | check_user_id, |
| | | check_user_name, |
| | | check_telephone, |
| | | location, |
| | | fire_nums, |
| | | fire_status, |
| | | fire_image_urls, |
| | | sc_status, |
| | | sc_image_urls, |
| | | pf_flag, |
| | | pf_name, |
| | | pf_image_urls, |
| | | five_must, |
| | | uan_image_urls, |
| | | real_name, |
| | | confirm_time, |
| | | confirm_user_id, |
| | | confirm_user_name, |
| | | sc_flag, |
| | | confirm_notion, |
| | | confirm_flag, |
| | | is_deleted, |
| | | create_time, |
| | | update_time, |
| | | create_user, |
| | | update_user, |
| | | event_type |
| | | from jczz_task_hotel_reporting where is_deleted = 0 |
| | | <if test="taskHotelReporting.checkUserId != null and taskHotelReporting.checkUserId != ''"> |
| | | AND check_user_id = #{taskHotelReporting.checkUserId} |
| | | </if> |