using Yw.DAL;
namespace HStation.DAL
{
///
///
///
public interface ITransferRevitFile : IBaseDAL
{
///
///
///
List GetFluzzyList
(
string FileName,
string FileCode,
string FileSuffix,
string UploadUserName,
DateTime? StartTime,
DateTime? EndTime
);
///
///
///
List GetFluzzyPageList
(
string FileName,
string FileCode,
string FileSuffix,
string UploadUserName,
DateTime? StartTime,
DateTime? EndTime,
int PageIndex,
int PageSize,
ref int Total
);
///
///
///
bool IsExistFileCode(string FileCode);
///
///
///
bool IsExistFileCodeExceptID(string FileCode, long ExceptID);
}
}