?? expenseaccountinfo.cs
字號:
using System;
using System.Collections.Generic;
using System.Text;
using System.Workflow.ComponentModel;
using System.Workflow.Runtime;
using System.Workflow.Activities;
namespace BLLandDAL
{
[Serializable]
public class ExpenseAccountInfo : ExternalDataEventArgs
{
private Guid appguid;
private string username;
private double amount;
private string appdate;
private string expstatus;
private string notes;
private string approvedby;
public ExpenseAccountInfo(Guid instanceId, string name, double amount, string appdate, string expstatus, string notes,string approvedby)
: base(instanceId)
{
this.appguid = instanceId;
this.username = name;
this.amount = amount;
this.appdate = appdate;
this.expstatus = expstatus;
this.notes = notes;
this.approvedby = approvedby;
}
//報銷單的編號
public Guid ExpID
{
get { return appguid; }
set { appguid = value; }
}
//提交人的名稱
public string UserName
{
get { return username; }
set { username = value; }
}
//審批人的名稱
public string ApprovedBy
{
get { return approvedby; }
set { approvedby = value; }
}
//報銷單的金額
public double Amount
{
get { return amount; }
set { amount = value; }
}
//報銷單的日期
public string AppDate
{
get { return appdate; }
set { appdate = value; }
}
//報銷單的狀態
public string ExpStatus
{
get { return expstatus; }
set { expstatus = value; }
}
//備注
public string Notes
{
get { return notes; }
set { notes = value; }
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -