using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PMS.BusinessModels.Problem { public class ProblemStateModel { //记录数 public int Count { get; set; } //受理人是否为空 public int Accept { get; set; } //问题记录过程ID public string ProblemProcessID { get; set; } //工作流目录ID public int CatalogID { get; set; } //登记过程的ID public string ID { get; set; } } }