AppealRecord.cs 938 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace wispro.sp.entity
  7. {
  8. public class AppealRecord
  9. {
  10. public int Id { get; set; }
  11. public Staff Creater { get; set; }
  12. public int CreaterId { get; set; }
  13. public DateTime CreateTime { get; set; } = DateTime.Now;
  14. public List<AttachFile> AttachFiles { get; set; }
  15. public string Reason { get; set; }
  16. /// <summary>
  17. /// 申诉状态
  18. /// 0:待审核
  19. /// 1:审核完成
  20. /// </summary>
  21. public int State { get; set; }
  22. public Staff Reviewer { get; set; }
  23. public int ReviewerId { get; set; }
  24. public string ReviewerMemo { get; set; }
  25. public DateTime? ReviewTime { get; set; }
  26. public virtual AppealType Type { get; set; }
  27. public int TypeId { get; set; }
  28. }
  29. }