OpenAuth.Net/OpenAuth.App/FlowApproverApp/Request/AddApproverDtlReq.cs
2024-09-25 21:54:00 +08:00

37 lines
977 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//------------------------------------------------------------------------------
// This code was generated by a CodeSmith Template.
//
// DO NOT MODIFY contents of this file. Changes to this
// file will be lost if the code is regenerated.
// Author:Yubao Li
//------------------------------------------------------------------------------
namespace OpenAuth.App.Request
{
/// <summary>
/// 加签人具体信息
/// </summary>
public class AddApproverDtlReq
{
/// <summary>
///Id
/// </summary>
public string Id { get; set; }
/// <summary>
///加签人姓名
/// </summary>
public string ApproverName { get; set; }
/// <summary>
///加签人ID
/// </summary>
public string ApproverId { get; set; }
/// <summary>
///顺序号当类型为0时
/// </summary>
public int? OrderNo { get; set; }
}
}