select id, staff_id, name, dept_id, attendance_date, work_start_time, work_end_time, work_hours, remarks, del_flag, create_by, create_time, update_by, update_time from rz_special_attendance
insert into rz_special_attendance
staff_id,
name,
dept_id,
attendance_date,
work_start_time,
work_end_time,
work_hours,
remarks,
del_flag,
create_by,
create_time,
update_by,
update_time,
#{staffId},
#{name},
#{deptId},
#{attendanceDate},
#{workStartTime},
#{workEndTime},
#{workHours},
#{remarks},
#{delFlag},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
update rz_special_attendance
staff_id = #{staffId},
name = #{name},
dept_id = #{deptId},
attendance_date = #{attendanceDate},
work_start_time = #{workStartTime},
work_end_time = #{workEndTime},
work_hours = #{workHours},
remarks = #{remarks},
del_flag = #{delFlag},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
where id = #{id}