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.
|
- using System;
- using System.Collections.Generic;
- using System.Text;
-
- namespace HKLib.Dto
- {
- public class ReportDto
- {
- /// <summary>
- /// 开始时间
- /// </summary>
- public DateTime STime { get; set; }
- /// <summary>
- /// 结束时间
- /// </summary>
- public DateTime ETime { get; set; }
- /// <summary>
- /// 姓名
- /// </summary>
- public string Name { get; set; }
- }
- }
|