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; }
///
/// 业务类型
///
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; }
///
/// 0:处理中
/// 1:已完成
///
public int CaseState { get; set; }
}
}