select goods_id, goods_name, goods_unit, goods_type, normal_vehicle_type, goods_status, remark, last_update_user, last_update_time from app_goods
insert into app_goods
goods_id,
goods_name,
goods_unit,
goods_type,
normal_vehicle_type,
goods_status,
remark,
last_update_user,
last_update_time,
#{goodsId},
#{goodsName},
#{goodsUnit},
#{goodsType},
#{normalVehicleType},
#{goodsStatus},
#{remark},
#{lastUpdateUser},
#{lastUpdateTime},
update app_goods
goods_name = #{goodsName},
goods_unit = #{goodsUnit},
goods_type = #{goodsType},
normal_vehicle_type = #{normalVehicleType},
goods_status = #{goodsStatus},
remark = #{remark},
last_update_user = #{lastUpdateUser},
last_update_time = #{lastUpdateTime},
where goods_id = #{goodsId}
delete from app_goods where goods_id = #{goodsId}
delete from app_goods where goods_id in
#{goodsId}