平安校园
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

22 行
507 B

  1. using System.ComponentModel.DataAnnotations;
  2. namespace SafeCampus.Application.Services.Business.AttendanceService;
  3. public class BuildAttendanceSearch:BasePageInput
  4. {
  5. /// <summary>
  6. /// 宿舍楼id
  7. /// </summary>
  8. [Required]
  9. public long BuildId { get; set; }
  10. /// <summary>
  11. /// 归寝日期
  12. /// </summary>
  13. [Required]
  14. public DateTime ReturnTime { get; set; }
  15. /// <summary>
  16. /// 是否自动上报
  17. /// </summary>
  18. public bool? IsAuto { get; set; }
  19. }