添加项目文件。
This commit is contained in:
27
extend/Tnb.Extend.Entitys/Dto/Schedule/ScheduleListQuery.cs
Normal file
27
extend/Tnb.Extend.Entitys/Dto/Schedule/ScheduleListQuery.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using JNPF.DependencyInjection;
|
||||
|
||||
namespace JNPF.Extend.Entitys.Dto.Schedule;
|
||||
|
||||
/// <summary>
|
||||
/// 获取日程安排列表入参.
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class ScheduleListQuery
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 开始时间.
|
||||
/// </summary>
|
||||
public string? startTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 结束时间.
|
||||
/// </summary>
|
||||
public string? endTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 时间.
|
||||
/// </summary>
|
||||
public string? dateTime { get; set; }
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user