// using MySystem.Models.Main;
// using Library;
// using MySystem.Service.Main;
// using System.Collections.Generic;
// namespace MySystem
// {
// ///
// /// 商户服务费缴纳记录工具类
// ///
// public class MerchantDepositOrderUtil
// {
// #region 添加商户服务费缴纳记录
// ///
// /// 添加商户服务费缴纳记录
// ///
// /// 消费者Id
// /// 商户的OpenId
// ///
// public static int AddMerchantDepositOrder(string OrderNo, int UserId, int MerchantId, decimal ActPayPrice)
// {
// Dictionary fields = new Dictionary();
// fields.Add("OrderNo", OrderNo); //订单号
// fields.Add("UserId", UserId); //所属创客Id
// fields.Add("MerchantId", MerchantId); //商户Id
// fields.Add("ActPayPrice", ActPayPrice); //服务费总额
// AppResultJson resultJson = MerchantDepositOrderService.Add(fields, false);
// var Id = int.Parse(resultJson.Data.ToString());
// return Id;
// }
// #endregion
// }
// }