mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-07-17 01:46:30 +08:00
38 lines
1012 B
C#
38 lines
1012 B
C#
![]() |
//------------------------------------------------------------------------------
|
|||
|
// 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
|
|||
|
//------------------------------------------------------------------------------
|
|||
|
|
|||
|
using System;
|
|||
|
|
|||
|
namespace OpenAuth.App.Request
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 审批加签节点
|
|||
|
/// </summary>
|
|||
|
public class VerifyApproverReq
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
///Id
|
|||
|
/// </summary>
|
|||
|
public string Id { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///审批意见
|
|||
|
/// </summary>
|
|||
|
public string VerifyComment { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///审批日期
|
|||
|
/// </summary>
|
|||
|
public DateTime? VerifyDate { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///状态(0未处理,1通过,2未通过,3驳回)
|
|||
|
/// </summary>
|
|||
|
public int Status { get; set; }
|
|||
|
}
|
|||
|
}
|