using Library;
using MySystem.Service.Main2;
using System.Collections.Generic;
using MySystem.Service.KxsMain;
namespace MySystem.Service.Main2
{
///
/// 商户修改结算卡审核表工具类
///
public class ChangeSettlementCardAuditRecordUtil
{
#region 添加或修改商户修改结算卡审核表
///
/// 添加或修改商户修改结算卡审核表
///
/// 记录Id
/// 任务Id
/// 商户Id
/// 商户编号
/// 审核状态(1 待审核 3 审核拒绝 4 任务失效 5 审核通过)
/// 备注
///
public static string AddOrEditChangeSettlementCardAuditRecord(int Id, int TaskId, int MerchantId, string MchtNo, int AuditStatus, string Remark)
{
return "success";
}
#endregion
}
}