27 lines
754 B
C#
27 lines
754 B
C#
using System.Text;
|
|
using WX.CRM.BLL.Util;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.IBLL.Isvr;
|
|
|
|
|
|
namespace WX.CRM.BLL.Isvr
|
|
{
|
|
public class ISVR_PublicRiaService_BL : IISVR_PublicRiaService
|
|
{
|
|
SecurityHelper sHelper = new SecurityHelper();
|
|
public string RiaSevicePostData(string json, string url)
|
|
{
|
|
json = sHelper.createSignEncodingStr(json);
|
|
string retmsg = Utility.PostData(url + "?" + json, Encoding.UTF8);
|
|
return retmsg;
|
|
}
|
|
public string RiaSevicePostDataV2(string json, string url)
|
|
{
|
|
json = sHelper.createSignEncodingStr2(json);
|
|
string retmsg = Utility.PostData(url + "?" + json, Encoding.UTF8);
|
|
|
|
return retmsg;
|
|
}
|
|
}
|
|
}
|