2024-09-25 21:30:56 +08:00
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
// 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; }
|
2024-09-28 20:18:48 +08:00
|
|
|
|
|
2024-09-25 21:30:56 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
///状态(0未处理,1通过,2未通过,3驳回)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int Status { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|