mynote.cs
来自「will let you know the result once they r」· CS 代码 · 共 71 行
CS
71 行
//============================================================
// 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 + =
减小字号Ctrl + -
显示快捷键?