|
@@ -23,7 +23,14 @@ namespace MySystem
|
|
|
dataContent.Add("id_card", mer.MerIdcardNo); //商户身份证
|
|
|
dataContent.Add("mer_name", mer.MerName); //商户姓名
|
|
|
dataContent.Add("mer_mobile", mer.MerMobile); //商户手机号
|
|
|
- dataContent.Add("request_id", getRequestId(mer.Id, "bind")); //流水号
|
|
|
+ if(mer.ProductType == "14")
|
|
|
+ {
|
|
|
+ dataContent.Add("request_id", getRequestId(mer.Id + function.get_Random(5), "bind")); //流水号
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ dataContent.Add("request_id", getRequestId(mer.Id, "bind")); //流水号
|
|
|
+ }
|
|
|
dataContent.Add("bind_time", mer.CreateTime.Value.ToString("yyyy-MM-dd HH:mm:ss")); //绑定时间
|
|
|
dataContent.Add("brand", int.Parse(function.CheckInt(mer.ProductType))); //品牌
|
|
|
Push("bind", dataContent);
|