mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-12-26 22:25:39 +08:00
完成流程列表
This commit is contained in:
@@ -20,7 +20,6 @@ namespace OpenAuth.Domain
|
||||
public ApplyTransitionHistory()
|
||||
{
|
||||
this.AllowedToUserNames= string.Empty;
|
||||
this.TransitionTime= DateTime.Now;
|
||||
this.InitialState= string.Empty;
|
||||
this.DestinationState= string.Empty;
|
||||
this.Command= string.Empty;
|
||||
|
||||
@@ -13,18 +13,18 @@ using System;
|
||||
namespace OpenAuth.Domain
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// 同意申请单
|
||||
/// </summary>
|
||||
public partial class GoodsApply : Entity
|
||||
public partial class CommonApply : Entity
|
||||
{
|
||||
public GoodsApply()
|
||||
public CommonApply()
|
||||
{
|
||||
this.Sort= 0;
|
||||
this.Number= 0;
|
||||
this.Sort= 0;
|
||||
this.Name= string.Empty;
|
||||
this.Comment= string.Empty;
|
||||
this.State= string.Empty;
|
||||
this.StateName= string.Empty;
|
||||
this.ApplyTime = DateTime.Now;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -34,7 +34,7 @@ namespace OpenAuth.Domain
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public int Number { get; set; }
|
||||
public DateTime ApplyTime { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
@@ -48,7 +48,7 @@
|
||||
<Compile Include="DicDetail.cs" />
|
||||
<Compile Include="DicIndex.cs" />
|
||||
<Compile Include="Entity.cs" />
|
||||
<Compile Include="GoodsApply.cs" />
|
||||
<Compile Include="CommonApply.cs" />
|
||||
<Compile Include="Interface\ICategoryRepository.cs" />
|
||||
<Compile Include="Interface\IModuleRepository.cs" />
|
||||
<Compile Include="Interface\IOrgRepository.cs" />
|
||||
@@ -73,7 +73,6 @@
|
||||
<Compile Include="Service\StockManagerService.cs" />
|
||||
<Compile Include="Stock.cs" />
|
||||
<Compile Include="User.cs" />
|
||||
<Compile Include="WorkflowInbox.cs" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
|
||||
@@ -1,28 +0,0 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <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>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace OpenAuth.Domain
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public partial class WorkflowInbox :Entity
|
||||
{
|
||||
/// <summary>
|
||||
/// 工作流实体ID
|
||||
/// </summary>
|
||||
public System.Guid ProcessId { get; set; }
|
||||
/// <summary>
|
||||
/// 用户ID
|
||||
/// </summary>
|
||||
public System.Guid IdentityId { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user