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

📄 accessoryfile.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:04
//============================================================

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

namespace Office.Model
{
	
	[Serializable()]
	public class AccessoryFile
	{
	
		private int accessoryId; 
		private FileInfo file; 
		private string accessoryName = String.Empty;
		private int accessorySize;
		private int accessoryType;
		private DateTime createDate;
		private string accessoryPath = String.Empty;

		
		
		public AccessoryFile() { }


        public AccessoryFile(int _accessoryid,FileInfo _file,String _accessoryname,int _accessorysize,int _accessorytype,DateTime _createdate,String _accessorypath)
        {
            this.accessoryId = _accessoryid;
            this.file = _file;
            this.accessoryName = _accessoryname;
            this.accessorySize = _accessorysize;
            this.accessoryType = _accessorytype;
            this.createDate = _createdate;
            this.accessoryPath = _accessorypath;
        }
		
		public int AccessoryId
		{
			get { return this.accessoryId; }
			set { this.accessoryId = value; }
		}
		
		
	
		
		public FileInfo File
		{
			get { return this.file; }
			set { this.file = value; }
		}		
		
		
		
		
		public string AccessoryName
		{
			get { return this.accessoryName; }
			set { this.accessoryName = value; }
		}		
		
		
		public int AccessorySize
		{
			get { return this.accessorySize; }
			set { this.accessorySize = value; }
		}		
		
		
		public int AccessoryType
		{
			get { return this.accessoryType; }
			set { this.accessoryType = value; }
		}		
		
		
		public DateTime CreateDate
		{
			get { return this.createDate; }
			set { this.createDate = value; }
		}		
		
		
		public string AccessoryPath
		{
			get { return this.accessoryPath; }
			set { this.accessoryPath = value; }
		}		
		
	}
}

⌨️ 快捷键说明

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