ProjectInfo.cs 1008 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 ProjectInfo
  9. {
  10. public string CaseNo { get; set; }
  11. public string CaseName { get; set; }
  12. public string ApplicationNo { get; set; }
  13. public DateTime ApplicationDate { get; set; }
  14. public string CaseType { get; set; }
  15. /// <summary>
  16. /// 业务类型
  17. /// </summary>
  18. public string BusinessType { get; set; }
  19. public virtual Customer Customer { get; set; }
  20. public int? CustomerId { get; set; }
  21. public virtual Staff Reviewer { get; set; }
  22. public int? ReviewerId { get; set; }
  23. public virtual Staff WorkflowUser { get; set; }
  24. public int? WorkflowUserId { get; set; }
  25. /// <summary>
  26. /// 0:处理中
  27. /// 1:已完成
  28. /// </summary>
  29. public int CaseState { get; set; }
  30. }
  31. }