using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.IBaseDAL;
using CY.Model;
namespace CY.IDAL
{
///
///车辆维修记录-数据库操作接口
///
public interface IOA_CarrepairDAL : ICommonDAL, IPaging, IGetAllModel
{
///
/// 根据编号获得信息
///
/// 编号
///
OA_Carrepair GetModelByKeyid(int? Keyid);
///
/// 分页查询
///
///
///
IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination, int? _CarId, string _repairPerson, DateTime? _BeginrepairTime, DateTime? _EndrepairTime, string _repairType, decimal? _repairMoney, string _repairRecord, DateTime? _BeginLastUpdateTime, DateTime? _EndLastUpdateTime, string _Operator);
}
}