using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.IBaseDAL;
using CY.Model;
namespace CY.IDAL
{
///
/// 办公系统合作客户通讯表-数据库操作接口
///
public interface IOA_CustomerCommunicationsDAL : ICommonDAL, IPaging, IGetAllModel
{
///
/// 单个查询
///
/// 编号
///
OA_CustomerCommunications SelectModelByKeyid(Guid Keyid);
}
}