You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DS7/DSWeb/Account/Models/Chfee_payapplication/FlowMapModel.cs

66 lines
1.9 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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<FlowMapActionModel> 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; }
/// <summary>
/// 审批人Openid
/// </summary>
public string OperOpenId { get; set; }
/// <summary>
/// 审批人userid
/// </summary>
public string UserID { get; set; }
/// <summary>
/// 是否当前的审批0:否1
/// </summary>
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; }
}
}