平安校园
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 
 

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