username@email.com
2024-11-15 f47da9571d16108fcab2bf6d55279a08ce2e7cbf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.IBaseDAL;
using CY.Model;
 
namespace CY.IDAL
{
    /// <summary>
    ///车辆维修记录-数据库操作接口
    /// </summary>
    public interface IOA_CarrepairDAL : ICommonDAL, IPaging<OA_Carrepair>, IGetAllModel<OA_Carrepair>
    {
        /// <summary>
        /// 根据编号获得信息
        /// </summary>
        /// <param name="Keyid">编号</param>
        /// <returns></returns>
        OA_Carrepair GetModelByKeyid(int? Keyid);
 
        /// <summary>
        /// 分页查询
        /// </summary>
        /// <param name="pagination"></param>
        /// <returns></returns>
        IEnumerable<Model.OA_Carrepair> 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);
 
    }
}