| | |
| | | <result property="imageList" column="image_list" /> |
| | | <result property="point" column="point" /> |
| | | <result property="repairId" column="repair_id" /> |
| | | <result property="videoList" column="video_list" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectTaskRepairAppraise"> |
| | |
| | | create_time, |
| | | image_list, |
| | | point, |
| | | repair_id |
| | | repair_id, |
| | | video_list |
| | | from |
| | | jczz_task_repair_appraise |
| | | </sql> |
| | |
| | | <if test="imageList != null and imageList != ''"> and image_list = #{imageList}</if> |
| | | <if test="point != null and point != ''"> and point = #{point}</if> |
| | | <if test="repairId != null "> and repair_id = #{repairId}</if> |
| | | <if test="videoList != null and videoList != ''"> and video_list = #{videoList}</if> |
| | | </where> |
| | | </select> |
| | | </mapper> |