|
@@ -24,8 +24,9 @@ namespace MySystem
|
|
|
/// <param name="IsAct"></param>
|
|
|
/// <param name="MerchantActualAmount"></param>
|
|
|
/// <param name="SeoDescription"></param>
|
|
|
+ /// <param name="SetRecordId"></param>
|
|
|
/// <returns></returns>
|
|
|
- public static AppResultJson AddConsumerOrders(int MerchantId, int ConsumerId, int UserId, int PayMode, decimal PayMoney, string SnNo, string OrderNo, decimal MaxDivi, uint IsAct, decimal MerchantActualAmount, string SeoDescription)
|
|
|
+ public static AppResultJson AddConsumerOrders(int MerchantId, int ConsumerId, int UserId, int PayMode, decimal PayMoney, string SnNo, string OrderNo, decimal MaxDivi, uint IsAct, decimal MerchantActualAmount, string SeoDescription, int SetRecordId)
|
|
|
{
|
|
|
Dictionary<string, object> Fields = new Dictionary<string, object>();
|
|
|
Fields.Add("MerchantId", MerchantId);
|
|
@@ -39,6 +40,7 @@ namespace MySystem
|
|
|
Fields.Add("IsAct", IsAct);
|
|
|
Fields.Add("MerchantActualAmount", MerchantActualAmount);
|
|
|
Fields.Add("SeoDescription", SeoDescription);
|
|
|
+ Fields.Add("SetRecordId", SetRecordId);
|
|
|
var info = ConsumerOrdersService.Add(Fields);
|
|
|
return info;
|
|
|
}
|