select id, uid, oid, order_id, price, reamk,created_at, updated_at from worker_margin_log
insert into worker_margin_log
uid,oid,order_id,price,reamk,
created_at,
updated_at
#{uid},#{oid},#{orderId},#{price},#{reamk},
NOW(),
NOW()
update worker_margin_log
uid = #{uid},oid = #{oid},order_id = #{orderId},price = #{price},reamk = #{reamk},
updated_at = NOW()
where id = #{id}
delete from worker_margin_log where id = #{id}
delete from worker_margin_log where id in
#{id}