增加流程状态转换列表

This commit is contained in:
yubaolee
2016-09-07 11:11:34 +08:00
parent 96e8eec1e7
commit 0c82f7b8c3
20 changed files with 499 additions and 38 deletions

View File

@@ -0,0 +1,63 @@
//------------------------------------------------------------------------------
// <autogenerated>
// 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
// </autogenerated>
//------------------------------------------------------------------------------
using System;
namespace OpenAuth.Domain
{
/// <summary>
///
/// </summary>
public partial class ApplyTransitionHistory :Entity
{
public ApplyTransitionHistory()
{
this.AllowedToUserNames= string.Empty;
this.TransitionTime= DateTime.Now;
this.InitialState= string.Empty;
this.DestinationState= string.Empty;
this.Command= string.Empty;
}
/// <summary>
///
/// </summary>
public System.Guid ApplyId { get; set; }
/// <summary>
///
/// </summary>
public System.Guid? UserId { get; set; }
/// <summary>
///
/// </summary>
public string AllowedToUserNames { get; set; }
/// <summary>
///
/// </summary>
public System.DateTime? TransitionTime { get; set; }
/// <summary>
///
/// </summary>
public long Order { get; set; }
/// <summary>
///
/// </summary>
public string InitialState { get; set; }
/// <summary>
///
/// </summary>
public string DestinationState { get; set; }
/// <summary>
///
/// </summary>
public string Command { get; set; }
}
}