📄 messagetouser.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:18
//============================================================
using System;
using System.Collections.Generic;
using System.Text;
namespace Office.Model
{
[Serializable()]
public class MessageToUser
{
private int id;
private int messageId;
public int MessageId
{
get { return messageId; }
set { messageId = value; }
}
private string toUserId;
public string ToUserId
{
get { return toUserId; }
set { toUserId = value; }
}
private int ifRead;
public MessageToUser() { }
public MessageToUser(int _id,int _messageid,String _touserid,int _ifread)
{
this.id = _id;
this.messageId = _messageid;
this.toUserId = _touserid;
this.ifRead = _ifread;
}
public int Id
{
get { return this.id; }
set { this.id = value; }
}
public int IfRead
{
get { return this.ifRead; }
set { this.ifRead = value; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -