AppealRecord.cs 894 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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 DateTime CreateTime { get; set; } = DateTime.Now;
  13. public List<AttachFile> AttachFiles { get; set; }
  14. public string Reason { get; set; }
  15. /// <summary>
  16. /// 申诉状态
  17. /// 0:待审核
  18. /// 1:审核完成
  19. /// </summary>
  20. public int State { get; set; }
  21. public Staff Reviewer { get; set; }
  22. public int ReviewerId { get; set; }
  23. public string ReviewerMemo { get; set; }
  24. public DateTime? ReviewTime { get; set; }
  25. public virtual AppealType Type { get; set; }
  26. public int TypeId { get; set; }
  27. }
  28. }