#region 入库
string sql = "insert into xm_bfjh(xmid,userid,userxm,xmjd,bfsx,bfsj,pic,jd,wd,country,province,city,district,township,formatted_address,json) values(@xmid,@userid,@userxm,@xmjd,@bfsx,@bfsj,@pic,@jd,@wd,@country,@province,@city,@district,@township,@formatted_address,@json)";
var parameters = new List<SugarParameter>
{
new SugarParameter("@xmid", xmid),
new SugarParameter("@userid", userid),
new SugarParameter("@userxm", userxm),
new SugarParameter("@xmjd", xmjd),
new SugarParameter("@bfsx", bfsx),
new SugarParameter("@bfsj", DateTime.Now),
new SugarParameter("@pic", pic),
new SugarParameter("@jd", jd),
new SugarParameter("@wd", wd),
new SugarParameter("@country", country),
new SugarParameter("@province", province),
new SugarParameter("@city", city),
new SugarParameter("@district", district),
new SugarParameter("@township", township),
new SugarParameter("@formatted_address",formatted_address),
new SugarParameter("@json", response)
};
var Rn = await _db.Ado.ExecuteCommandAsync(sql, parameters);
#endregion