| | |
| | | <result property="operatorExpired" column="operator_expired"/> |
| | | <result property="camMaxVisibleDistance" column="cam_max_visible_distance"/> |
| | | <result property="camAlarmGuideEnable" column="cam_alarm_guide_enable"/> |
| | | <result property="state" column="state"/> |
| | | </resultMap> |
| | | |
| | | <sql id="selectArdCamerasVo"> |
| | |
| | | c.operator_id, |
| | | c.operator_expired, |
| | | c.cam_max_visible_distance, |
| | | c.cam_alarm_guide_enable |
| | | c.cam_alarm_guide_enable, |
| | | c.state |
| | | from ard_cameras c |
| | | left join sys_dept d on d.dept_id = c.dept_id |
| | | left join sys_user u on u.user_id = c.user_id |
| | |
| | | <if test="updateTime != null">update_time = #{updateTime},</if> |
| | | <if test="operatorId != null">operator_id = #{operatorId},</if> |
| | | <if test="operatorExpired != null">operator_expired = #{operatorExpired},</if> |
| | | <if test="state != null">state = #{state},</if> |
| | | </trim> |
| | | where id = #{id} |
| | | </update> |