完成流程列表

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

@@ -17,7 +17,7 @@ namespace OpenAuth.App.ViewModel
/// <summary>
///
/// </summary>
public class GoodsApplyVM :Entity
public class CommonApplyVM :Entity
{
/// <summary>
///
@@ -59,14 +59,14 @@ namespace OpenAuth.App.ViewModel
public Dictionary<string, string> AvailiableStates { get; set; }
public static implicit operator GoodsApplyVM(GoodsApply obj)
public static implicit operator CommonApplyVM(CommonApply obj)
{
return obj.MapTo<GoodsApplyVM>();
return obj.MapTo<CommonApplyVM>();
}
public static implicit operator GoodsApply(GoodsApplyVM obj)
public static implicit operator CommonApply(CommonApplyVM obj)
{
return obj.MapTo<GoodsApply>();
return obj.MapTo<CommonApply>();
}
}