OpenAuth.Net/OpenAuth.App/FlowApproverApp/Request/VerifyApproverReq.cs
2024-09-28 20:18:48 +08:00

33 lines
900 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
//------------------------------------------------------------------------------
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>
///状态0未处理1通过2未通过3驳回
/// </summary>
public int Status { get; set; }
}
}