select id, 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
id,
goods_id,
goods_name,
goods_unit,
goods_type,
normal_vehicle_type,
goods_status,
remark,
last_update_user,
last_update_time,
#{id},
#{goodsId},
#{goodsName},
#{goodsUnit},
#{goodsType},
#{normalVehicleType},
#{goodsStatus},
#{remark},
#{lastUpdateUser},
#{lastUpdateTime},
update app_goods
goods_id = #{goodsId},
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 id = #{id}
delete from app_goods where id = #{id}
delete from app_goods where id in
#{id}