using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.IBaseDAL;
using CY.Model;
namespace CY.IDAL
{
///
/// 预付款明细表-数据库操作接口
///
public interface IOA_AdvanceMoneyRecordDAL : ICommonDAL, IPaging, IGetAllModel
{
///
/// 预付款存入
///
///
///
///
///
///
bool DepositsMoney(OA_FirmAccount m_OA_FirmAccount, OA_CorporateClients m_OA_CorporateClients, OA_FirmAccountRecord m_OA_FirmAccountRecord, OA_AdvanceMoneyRecord m_OA_AdvanceMoneyRecord);
}
}