lixiaojun
2025-02-17 4bb44a9c6b32cf299f3103f66d720992ec4a89a2
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
using Yw.DAL;
 
namespace HStation.DAL
{
    /// <summary>
    /// 
    /// </summary>
    public interface ITransferRevitFile : IBaseDAL<Entity.TransferRevitFile>
    {
 
        /// <summary>
        /// 
        /// </summary>
        List<Entity.TransferRevitFile> GetFluzzyList
          (
                 string FileName,
                 string FileCode,
                 string FileSuffix,
                 string UploadUserName,
                 DateTime? StartTime,
                 DateTime? EndTime
            );
 
 
        /// <summary>
        /// 
        /// </summary>
        List<Entity.TransferRevitFile> GetFluzzyPageList
          (
                 string FileName,
                 string FileCode,
                 string FileSuffix,
                 string UploadUserName,
                 DateTime? StartTime,
                 DateTime? EndTime,
                 int PageIndex,
                 int PageSize,
                 ref int Total
            );
 
 
        /// <summary>
        /// 
        /// </summary>
        bool IsExistFileCode(string FileCode);
 
        /// <summary>
        /// 
        /// </summary>
        bool IsExistFileCodeExceptID(string FileCode, long ExceptID);
 
 
    }
}