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

📄 mynote.cs

📁 will let you know the result once they replied will let you know the result once they replied
💻 CS
字号:
//============================================================
// Producnt name:		BoBoARTS.CodeMad
// Version: 			1.0
// Coded by:			Shen Bo (bo.shen@jb-aptech.com.cn)
// Auto generated at: 	2008-7-16 10:18:15
//============================================================

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

namespace MyOffice.Models
{

    [Serializable()]
    public class MyNote
    {

        private int noteId;
        private string noteTitle = String.Empty;
        private string noteContent = String.Empty;
        private DateTime createTime;
        private string createUser = String.Empty;



        public MyNote() { }




        public int NoteId
        {
            get { return this.noteId; }
            set { this.noteId = value; }
        }





        public string NoteTitle
        {
            get { return this.noteTitle; }
            set { this.noteTitle = value; }
        }


        public string NoteContent
        {
            get { return this.noteContent; }
            set { this.noteContent = value; }
        }


        public DateTime CreateTime
        {
            get { return this.createTime; }
            set { this.createTime = value; }
        }


        public string CreateUser
        {
            get { return this.createUser; }
            set { this.createUser = value; }
        }

    }
}

⌨️ 快捷键说明

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