完成流程列表

This commit is contained in:
yubaolee
2016-09-07 16:58:08 +08:00
parent 0c82f7b8c3
commit c8dec703a7
22 changed files with 195 additions and 255 deletions

View File

@@ -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;

View File

@@ -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>

View File

@@ -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.

View File

@@ -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; }
}
}