using System; using System.Data; using System.Collections; using System.Collections.Generic; using HcUtility.Core; using Newtonsoft.Json; namespace DSWeb.Areas.Account.Models.Chfee_payapplication { [JsonObject] public class FlowMapModel { public string FlowName { get; set; } public string BSNO { get; set; } public string CreateTime { get; set; } public int GroupID { get; set; } public List Acts { get; set; } } [JsonObject] public class FlowMapActionModel { public string Name { get; set; } public string Oper { get; set; } public string OpTime { get; set; } public int OpState { get; set; } /// /// 审批人Openid /// public string OperOpenId { get; set; } /// /// 审批人userid /// public string UserID { get; set; } /// /// 是否当前的审批0:否1:是 /// public int IsCurr { get; set; } } public class FlowDo { public string BSNO { get; set; } public string STEPID { get; set; } public string FNAME { get; set; } public string SNAME { get; set; } public string OPER { get; set; } public string OPTIME { get; set; } public int GROUPID { get; set; } public string CREATOR { get; set; } } public class FlowStep { public string BSNO { get; set; } public string STEPID { get; set; } public string FNAME { get; set; } public string SNAME { get; set; } public string OPER { get; set; } public string OPERID { get; set; } public string OPEROPENID { get; set; } public int GROUPID { get; set; } public string CREATOR { get; set; } public string CREATETIME { get; set; } } }