select f_complain_deal_man_sys_set_id, f_type, f_day, f_hours, f_minutes, f_seconds, f_remarks from t_complain_deal_man_sys_set
insert into t_complain_deal_man_sys_set
f_type,
f_day,
f_hours,
f_minutes,
f_seconds,
f_remarks,
#{fType},
#{fDay},
#{fHours},
#{fMinutes},
#{fSeconds},
#{fRemarks},
update t_complain_deal_man_sys_set
f_type = #{fType},
f_day = #{fDay},
f_hours = #{fHours},
f_minutes = #{fMinutes},
f_seconds = #{fSeconds},
f_remarks = #{fRemarks},
where f_complain_deal_man_sys_set_id = #{fComplainDealManSysSetId}
UPDATE t_complain_deal_man_sys_set
SET f_day = #{item.fDay},
f_hours = #{item.fHours},
f_minutes = #{item.fMinutes},
f_seconds = #{item.fSeconds},
f_remarks = #{item.fRemarks}
WHERE f_complain_deal_man_sys_set_id = #{item.fComplainDealManSysSetId}
delete from t_complain_deal_man_sys_set where f_complain_deal_man_sys_set_id = #{fComplainDealManSysSetId}
delete from t_complain_deal_man_sys_set where f_complain_deal_man_sys_set_id in
#{fComplainDealManSysSetId}