📄 message.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:11
//============================================================
using System;
using System.Collections.Generic;
using System.Text;
namespace Office.Model
{
[Serializable()]
public class Message
{
private int messageId;
private string fromUserId = String.Empty;
private string title = String.Empty;
private string content = String.Empty;
private DateTime beginTime;
private DateTime endTime;
private int ifPublish;
private DateTime recordTime;
private int typeId;
public Message() { }
public Message(int _messageid, string _fromuserId, int _typeId, String _title, String _connect, DateTime _begintime, DateTime _endtime, int _ifpublish, DateTime _recordtime)
{
this.messageId = _messageid;
this.fromUserId = _fromuserId;
this.typeId= _typeId;
this.title = _title;
this.content = _connect;
this.beginTime = _begintime;
this.endTime = _endtime;
this.ifPublish = _ifpublish;
this.recordTime = _recordtime;
}
public int MessageId
{
get { return this.messageId; }
set { this.messageId = value; }
}
public string FromUserId
{
get { return fromUserId; }
set { fromUserId = value; }
}
public int TypeId
{
get { return typeId; }
set { typeId = value; }
}
public string Title
{
get { return this.title; }
set { this.title = value; }
}
public string Content
{
get { return this.content; }
set { this.content = value; }
}
public DateTime BeginTime
{
get { return this.beginTime; }
set { this.beginTime = value; }
}
public DateTime EndTime
{
get { return this.endTime; }
set { this.endTime = value; }
}
public int IfPublish
{
get { return this.ifPublish; }
set { this.ifPublish = value; }
}
public DateTime RecordTime
{
get { return this.recordTime; }
set { this.recordTime = value; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -