select goods_id, live_id, goods_name, goods_desc, img_url, images, price, op_price, status, stock, sort, create_time, create_by, update_by, update_time, remark from live_goods
insert into live_goods
live_id,
goods_name,
goods_desc,
img_url,
images,
price,
op_price,
status,
stock,
sort,
create_time,
create_by,
update_by,
update_time,
remark,
#{liveId},
#{goodsName},
#{goodsDesc},
#{imgUrl},
#{images},
#{price},
#{opPrice},
#{status},
#{stock},
#{sort},
#{createTime},
#{createBy},
#{updateBy},
#{updateTime},
#{remark},
update live_goods
live_id = #{liveId},
goods_name = #{goodsName},
goods_desc = #{goodsDesc},
img_url = #{imgUrl},
images = #{images},
price = #{price},
op_price = #{opPrice},
status = #{status},
stock = #{stock},
sort = #{sort},
create_time = #{createTime},
create_by = #{createBy},
update_by = #{updateBy},
update_time = #{updateTime},
remark = #{remark},
where goods_id = #{goodsId}
delete from live_goods where goods_id = #{goodsId}
delete from live_goods where goods_id in
#{goodsId}