12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace wispro.sp.entity
- {
- public class ProjectInfo
- {
- public string CaseNo { get; set; }
- public string CaseName { get; set; }
- public string ApplicationNo { get; set; }
- public DateTime ApplicationDate { get; set; }
- public string CaseType { get; set; }
- /// <summary>
- /// 业务类型
- /// </summary>
- public string BusinessType { get; set; }
- public virtual Customer Customer { get; set; }
- public int? CustomerId { get; set; }
- public virtual Staff Reviewer { get; set; }
- public int? ReviewerId { get; set; }
- public virtual Staff WorkflowUser { get; set; }
- public int? WorkflowUserId { get; set; }
- /// <summary>
- /// 0:处理中
- /// 1:已完成
- /// </summary>
- public int CaseState { get; set; }
- }
- }
|