//------------------------------------------------------------------------------
// 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
{
///
/// 审批加签节点
///
public class VerifyApproverReq
{
///
///Id
///
public string Id { get; set; }
///
///审批意见
///
public string VerifyComment { get; set; }
///
///状态(0未处理,1通过,2未通过,3驳回)
///
public int Status { get; set; }
}
}