您的位置:首页 > 其它

基于WF的报销单流转审批业务4(浅析)

2009-08-28 12:58 302 查看
项目名:InterFaces(接口)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Workflow.Activities;
using System.Workflow.Runtime;

namespace InterFaces
{
/// <summary>
/// 财务审批
/// </summary>
[Serializable]
public class CaiWuSP : ExternalDataEventArgs
{
private Guid id;
private int states;//0打回,1终止,2同意,3加签

public CaiWuSP(Guid id, int states)
: base(id)
{
this.id = id;
this.states = states;
}

public int States
{
get { return states; }
set { states = value; }
}

public Guid Id
{
get { return id; }
set { id = value; }
}
}
}


基于WF的报销单流转审批业务1(浅析)
基于WF的报销单流转审批业务2(浅析)
基于WF的报销单流转审批业务3(浅析)
基于WF的报销单流转审批业务5(浅析)
基于WF的报销单流转审批业务6(浅析)
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: