select task_id, type_id, ma_code, qr_code, fix_code, code_type, status, create_by, create_time, update_by, update_time, remark, company_id from purchase_macode_info
insert into purchase_macode_info
task_id,
type_id,
ma_code,
fix_code,
code_type,
status,
create_by,
create_time,
update_by,
update_time,
remark,
company_id,
#{taskId},
#{typeId},
#{maCode},
#{fixCode},
#{codeType},
#{status},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{remark},
#{companyId},
update purchase_macode_info
task_id = #{taskId},
type_id = #{typeId},
ma_code = #{maCode},
fix_code = #{fixCode},
code_type = #{codeType},
status = #{status},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
remark = #{remark},
company_id = #{companyId},
where id = #{id}
delete from purchase_macode_info where task_id = #{taskId}
delete from purchase_macode_info where task_id in
#{taskId}
delete from purchase_macode_info where id = #{id}
insert into ma_machine (
type_id,
ma_code,
pre_code,
ma_status,
qr_code,
buy_price,
ma_vender,
out_fac_time,
out_fac_code,
assets_code,
check_man,
this_check_time,
next_check_time,
gps_code,
rfid_code,
erp_code,
transfer_code,
in_out_num,
buy_task,
own_house,
company_id
)values(
#{typeId},
#{maCode},
#{preCode},
#{maStatus},
#{qrCode},
#{buyPrice},
#{maVender},
#{outFacTime},
#{outFacCode},
#{assetsCode},
#{checkMan},
#{thisCheckTime},
#{nextCheckTime},
#{gpsCode},
#{rfidCode},
#{erpCode},
#{transferCode},
#{inOutNum},
#{buyTask},
#{ownHouse},
#{companyId}
)
insert into ma_input_record
task_id,
type_id,
ma_id,
input_type,
input_num,
status,
create_by,
create_time,
update_by,
update_time,
remark,
company_id,
#{taskId},
#{typeId},
#{maId},
#{inputType},
#{inputNum},
#{status},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{remark},
#{companyId},
update ma_type set num = #{num} where type_id = #{typeId}
update ma_machine set ma_status = #{maStatus} where ma_id = #{maId}