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

📄 departinfo.cs

📁 办公系统办公系统办公系统办公系统办公系统办公系统办公系统办公系统办公系统办公系统办公系统办公系统办公系统办公系统办公系统
💻 CS
字号:
//============================================================
// Producnt name:		BoBoARTS.CodeMad
// Version: 			1.0
// Coded by:			Shen Bo (bo.shen@jb-aptech.com.cn)
// Auto generated at: 	2008-9-18 16:05:23
//============================================================

using System;
using System.Collections.Generic;
using System.Text;

namespace Office.Model
{
	
	[Serializable()]
	public class DepartInfo
	{
	
		private int departId; 
		private BranchInfo branch; 
		private UserInfo principalUser; 
		private string departName = String.Empty;
		private long connectTelNo;
		private long connectMobileTelNo;
		private long faxes;

		
		
		public DepartInfo() { }

        public DepartInfo(int _departid, BranchInfo _branch, UserInfo _paincipaluser, String _departname, long _connecttelno, long _connectmobiletelno, long _faxes)
        {
            this.departId = _departid;
            this.branch = _branch;
            this.principalUser = _paincipaluser;
            this.departName = _departname;
            this.connectTelNo = _connecttelno;
            this.connectMobileTelNo = _connectmobiletelno;
            this.faxes = _faxes;
        }
	
		
		public int DepartId
		{
			get { return this.departId; }
			set { this.departId = value; }
		}
		
		
	
		
		public BranchInfo Branch
		{
			get { return this.branch; }
			set { this.branch = value; }
		}		
		
		
		public UserInfo PrincipalUser
		{
			get { return this.principalUser; }
			set { this.principalUser = value; }
		}		
		
		
		
		
		public string DepartName
		{
			get { return this.departName; }
			set { this.departName = value; }
		}		
		
		
		public long ConnectTelNo
		{
			get { return this.connectTelNo; }
			set { this.connectTelNo = value; }
		}		
		
		
		public long ConnectMobileTelNo
		{
			get { return this.connectMobileTelNo; }
			set { this.connectMobileTelNo = value; }
		}		
		
		
		public long Faxes
		{
			get { return this.faxes; }
			set { this.faxes = value; }
		}		
		
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -