平安校园
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

22 satır
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. }