📄 mynote.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:06:34
//============================================================
using System;
using System.Collections.Generic;
using System.Text;
namespace Office.Model
{
[Serializable()]
public class MyNote
{
private int noteId;
private UserInfo createUser;
private string noteTitle = String.Empty;
private string noteContent = String.Empty;
private DateTime createTime;
public MyNote() { }
public MyNote(int _noteid,UserInfo _createuser,String _notetitle,String _notecontent,DateTime _createtime)
{
this.noteId = _noteid;
this.createUser = _createuser;
this.noteTitle = _notetitle;
this.noteContent = _notecontent;
this.createTime = _createtime;
}
public int NoteId
{
get { return this.noteId; }
set { this.noteId = value; }
}
public UserInfo CreateUser
{
get { return this.createUser; }
set { this.createUser = 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; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -