22 lines
468 B
C#
22 lines
468 B
C#
using BaseOUDAL;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YLErp.Modules.EodFileModule.Dto
|
|
{
|
|
public class SearchFileRequest : BaseSearchReq
|
|
{
|
|
public DateTime? DateFromEodTime { get; set; }
|
|
|
|
public DateTime? DateToEodTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 文件类型
|
|
/// </summary>
|
|
public int FileType { get; set; }
|
|
}
|
|
}
|