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

📄 oqaaaaaa.a

📁 人事管理系统
💻 A
字号:
using System;
using System.Collections.Generic;
using System.Text;

namespace MODEL
{
	/// <summary>
	/// 实体类MyNote 。(属性说明自动提取数据库字段的描述信息)
	/// </summary>
	public class MyNote
	{
		public MyNote()
		{}
		#region Model
		private int _noteid;
		private string _notetitle;
		private string _notecontent;
		private string _createtime;
		private string _createuser;
		/// <summary>
		/// 
		/// </summary>
		public int NoteId
		{
			set{ _noteid=value;}
			get{return _noteid;}
		}
		/// <summary>
		/// 
		/// </summary>
		public string NoteTitle
		{
			set{ _notetitle=value;}
			get{return _notetitle;}
		}
		/// <summary>
		/// 
		/// </summary>
		public string NoteContent
		{
			set{ _notecontent=value;}
			get{return _notecontent;}
		}
		/// <summary>
		/// 
		/// </summary>
		public string CreateTime
		{
			set{ _createtime=value;}
			get{return _createtime;}
		}
		/// <summary>
		/// 
		/// </summary>
		public string CreateUser
		{
			set{ _createuser=value;}
			get{return _createuser;}
		}
		#endregion Model

	}
}

⌨️ 快捷键说明

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