| | |
| | | <result column="response_mechanism" property="responseMechanism"/> |
| | | <result column="control_level" property="controlLevel"/> |
| | | <result column="police_station_id" property="policeStationId"/> |
| | | <result column="fly_time_start" property="flyTimeStart"/> |
| | | <result column="fly_time_end" property="flyTimeEnd"/> |
| | | <result column="fly_date_start" property="flyDateStart"/> |
| | | <result column="fly_date_end" property="flyDateEnd"/> |
| | | <result column="area_code" property="areaCode"/> |
| | |
| | | ad.response_mechanism, |
| | | ad.control_level, |
| | | ad.police_station_id, |
| | | ad.fly_time_start, |
| | | ad.fly_time_end, |
| | | ad.fly_date_start, |
| | | ad.fly_date_end, |
| | | ad.area_code, |
| | |
| | | <if test="param2.policeStationId != null and param2.policeStationId != ''"> |
| | | and ad.police_station_id = #{param2.policeStationId} |
| | | </if> |
| | | <if test="param2.flyTimeStart != null and param2.flyTimeStart != ''"> |
| | | and ad.fly_time_start >= #{param2.flyTimeStart} |
| | | </if> |
| | | <if test="param2.flyTimeEnd != null and param2.flyTimeEnd != ''"> |
| | | and ad.fly_time_end <= #{param2.flyTimeEnd} |
| | | </if> |
| | | <if test="param2.flyDateStart != null and param2.flyDateStart != ''"> |
| | | and ad.fly_date_start >= #{param2.flyDateStart} |
| | | </if> |
| | |
| | | ad.response_mechanism, |
| | | ad.control_level, |
| | | ad.police_station_id, |
| | | ad.fly_time_start, |
| | | ad.fly_time_end, |
| | | ad.fly_date_start, |
| | | ad.fly_date_end, |
| | | ad.area_code, |
| | |
| | | response_mechanism, |
| | | control_level, |
| | | police_station_id, |
| | | fly_time_start, |
| | | fly_time_end, |
| | | fly_date_start, |
| | | fly_date_end, |
| | | area_code, |
| | |
| | | response_mechanism, |
| | | control_level, |
| | | police_station_id, |
| | | fly_time_start, |
| | | fly_time_end, |
| | | fly_date_start, |
| | | fly_date_end, |
| | | area_code, |
| | |
| | | #{responseMechanism}, |
| | | #{controlLevel}, |
| | | #{policeStationId}, |
| | | #{flyTimeStart}, |
| | | #{flyTimeEnd}, |
| | | #{flyDateStart}, |
| | | #{flyDateEnd}, |
| | | #{areaCode}, |
| | |
| | | <if test="responseMechanism != null">response_mechanism = #{responseMechanism},</if> |
| | | <if test="controlLevel != null">control_level = #{controlLevel},</if> |
| | | <if test="policeStationId != null">police_station_id = #{policeStationId},</if> |
| | | <if test="flyTimeStart != null">fly_time_start = #{flyTimeStart},</if> |
| | | <if test="flyTimeEnd != null">fly_time_end = #{flyTimeEnd},</if> |
| | | <if test="flyDateStart != null">fly_date_start = #{flyDateStart},</if> |
| | | <if test="flyDateEnd != null">fly_date_end = #{flyDateEnd},</if> |
| | | <if test="areaCode != null">area_code = #{areaCode},</if> |