using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace SA.Entity.zxdcrm_Models
{
///
///收到订阅的历史日志
///
[SugarTable("soft_userinfo_sublog")]
public partial class SoftUserinfoSublog
{
public SoftUserinfoSublog(){
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true,IsIdentity=true,ColumnName="id")]
public int Id {get;set;}
///
/// Desc:类型
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName="type")]
public int? Type {get;set;}
///
/// Desc:json
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName="data")]
public string? Data {get;set;}
///
/// Desc:
/// Default:CURRENT_TIMESTAMP
/// Nullable:True
///
[SugarColumn(ColumnName="ctime")]
public DateTime? Ctime {get;set;}
}
}