平安校园
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.
 
 
 
 
 
 

22 lines
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. }