using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace SA.Entity.zxdcrm_Models
{
///
///
///
[SugarTable("csvr_message")]
public partial class CsvrMessage
{
public CsvrMessage(){
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true,IsIdentity=true,ColumnName="id")]
public int Id {get;set;}
///
/// Desc:接收人
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName="eid")]
public int? Eid {get;set;}
///
/// Desc:消息编码
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName="msgcode")]
public string? Msgcode {get;set;}
///
/// Desc:消息
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName="message")]
public string? Message {get;set;}
///
/// Desc:消息时间
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName="ctime")]
public DateTime? Ctime {get;set;}
///
/// Desc:0:未读 1:已读
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName="islook")]
public int? Islook {get;set;}
///
/// Desc:读取时间
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName="looktime")]
public DateTime? Looktime {get;set;}
///
/// Desc:来源
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName="fromer")]
public string? Fromer {get;set;}
///
/// Desc:参数例如{”orderid“:"10023"}
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName="param")]
public string? Param {get;set;}
}
}