using System; namespace Business.FileFlow.Entity { public class FlowListEty { //ID public string Id { get; set; } //Num public int Num { get; set; } //名称 public string Name { get; set; } //备注 public string Remark { get; set; } //流程ID public string FlowId { get; set; } //步骤操作ID public int ActionId { get; set; } //删除标记 public bool DelFlag { get; set; } //添加人ID public string AddUserId { get; set; } //添加时间 public DateTime AddTime { get; set; } //修改人ID public string UpdateUserId { get; set; } //最后修改时间 public DateTime LastTime { get; set; } //内容 public string Fcontent { get; set; } //附件地址 public string SAddr { get; set; } //是否结束 public bool IsEnd { get; set; } //是否通过 public bool IsPass { get; set; } } }