⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 expenseaccountinfo.cs

📁 工作流方面的简单实例
💻 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 + -