select product_id,openid,order_number, name, delivery_type, phonenumber,quantity,province_id,province,city_id,city,county_id,county,lon,lat,status, address,
flow_type,goods_name,total_price, mail_no, create_by, create_time, update_by, update_time, remark from doumu_product_info
insert into doumu_product_info
openid,
order_number,
name,
delivery_type,
phonenumber,
quantity,
province_id,
province,
city_id,
city,
county_id,
county,
address,
lon,
lat,
flow_type,
status,
goods_name,
total_price,
mailNo,
create_by,
create_time,
update_by,
update_time,
remark,
#{openid},
#{orderNumber},
#{name},
#{deliveryType},
#{phonenumber},
#{quantity},
#{provinceId},
#{province},
#{cityId},
#{city},
#{countyId},
#{county},
#{address},
#{lon},
#{lat},
#{flowType},
#{status},
#{goodsName},
#{totalPrice},
#{mailNo},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{remark},
update doumu_product_info
openid = #{openid},
order_number = #{orderNumber},
name = #{name},
delivery_type = #{deliveryType},
phonenumber = #{phonenumber},
quantity = #{quantity},
province_id = #{provinceId},
province = #{province},
city_id = #{cityId},
city = #{city},
county_id = #{countyId},
county = #{county},
address = #{address},
lon = #{lon},
lat = #{lat},
flow_type = #{flowType},
status = #{status},
goods_name = #{goodsName},
total_price = #{totalPrice},
mailNo = #{mailNo},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
remark = #{remark},
where product_id = #{productId}
update doumu_product_info set flow_type = #{flowType} where product_id in
#{productId}
delete from doumu_product_info where product_id = #{productId}
delete from doumu_product_info where product_id in
#{productId}