select id, goods_name, goods_code, goods_type, goods_img, goods_describe, goods_unit, goods_current_price, sale_price, suggestion_price, goods_inventory, inventory_cost, goods_state from qmjs_shopping_mall
insert into qmjs_shopping_mall
goods_name,
goods_code,
goods_type,
goods_img,
goods_describe,
goods_unit,
goods_current_price,
sale_price,
suggestion_price,
goods_inventory,
inventory_cost,
goods_state,
#{goodsName},
#{goodsCode},
#{goodsType},
#{goodsImg},
#{goodsDescribe},
#{goodsUnit},
#{goodsCurrentPrice},
#{salePrice},
#{suggestionPrice},
#{goodsInventory},
#{inventoryCost},
#{goodsState},
update qmjs_shopping_mall
goods_name = #{goodsName},
goods_code = #{goodsCode},
goods_type = #{goodsType},
goods_img = #{goodsImg},
goods_describe = #{goodsDescribe},
goods_unit = #{goodsUnit},
goods_current_price = #{goodsCurrentPrice},
sale_price = #{salePrice},
suggestion_price = #{suggestionPrice},
goods_inventory = #{goodsInventory},
inventory_cost = #{inventoryCost},
goods_state = #{goodsState},
where id = #{id}
delete from qmjs_shopping_mall where id = #{id}
delete from qmjs_shopping_mall where id in
#{id}