select deduct_id, deduct_no, company_id, money, balance, create_time, create_user_id, is_audit, audit_user_id, audit_time,remark, business_type from company_deduct
insert into company_deduct
deduct_no,
company_id,
money,
balance,
create_time,
create_user_id,
is_audit,
audit_user_id,
audit_time,
remark,
business_type,
#{deductNo},
#{companyId},
#{money},
#{balance},
#{createTime},
#{createUserId},
#{isAudit},
#{auditUserId},
#{auditTime},
#{remark},
#{businessType},
update company_deduct
deduct_no = #{deductNo},
company_id = #{companyId},
money = #{money},
balance = #{balance},
create_time = #{createTime},
create_user_id = #{createUserId},
is_audit = #{isAudit},
audit_user_id = #{auditUserId},
audit_time = #{auditTime},
remark = #{remark},
where deduct_id = #{deductId}
delete from company_deduct where deduct_id = #{deductId}
delete from company_deduct where deduct_id in
#{deductId}