You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
476 B
27 lines
476 B
5 days ago
|
namespace Admin.NET.Core.Service;
|
||
|
|
||
|
public class FileInput : BaseIdInput
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public class PageFileInput : BasePageInput
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 文件名称
|
||
|
/// </summary>
|
||
|
public string FileName { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 开始时间
|
||
|
/// </summary>
|
||
|
public DateTime? StartTime { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 结束时间
|
||
|
/// </summary>
|
||
|
public DateTime? EndTime { get; set; }
|
||
|
}
|
||
|
|
||
|
public class DeleteFileInput : BaseIdInput
|
||
|
{
|
||
|
}
|