select id, task_id, strain_id, plan_weight, result_weight, is_completed, del_flag, create_by, create_time, update_by, update_time, remark from csa_pick_detail
insert into csa_pick_detail
task_id,
strain_id,
plan_weight,
result_weight,
is_completed,
del_flag,
create_by,
create_time,
update_by,
update_time,
remark,
#{taskId},
#{strainId},
#{planWeight},
#{resultWeight},
#{isCompleted},
#{delFlag},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{remark},
update csa_pick_detail
task_id = #{taskId},
strain_id = #{strainId},
plan_weight = #{planWeight},
result_weight = #{resultWeight},
is_completed = #{isCompleted},
del_flag = #{delFlag},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
remark = #{remark},
where id = #{id}
delete from csa_pick_detail where id = #{id}
delete from csa_pick_detail where id in
#{id}