/***********************************************************************
* Project: baifenBinfa
* ProjectName: 百分兵法管理系统
* Web: http://chuanyin.com
* Author:
* Email: 34161541@qq.com
* CreateTime: 2021-06-08 22:14:59
* Description: 暂无
***********************************************************************/
using SqlSugar;
using System.ComponentModel.DataAnnotations;
namespace CoreCms.Net.Model.Entities
{
///
/// 微信消息表
///
[SugarTable("CoreCmsWeixinMessage",TableDescription = "微信消息表")]
public partial class CoreCmsWeixinMessage
{
///
/// 微信消息表
///
public CoreCmsWeixinMessage()
{
}
///
/// 序列
///
[Display(Name = "序列")]
[SugarColumn(ColumnDescription = "序列", IsPrimaryKey = true, IsIdentity = true)]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 id { get; set; }
///
/// 消息名称
///
[Display(Name = "消息名称")]
[SugarColumn(ColumnDescription = "消息名称", IsNullable = true)]
[StringLength(200, ErrorMessage = "【{0}】不能超过{1}字符长度")]
public System.String name { get; set; }
///
/// 消息类型
///
[Display(Name = "消息类型")]
[SugarColumn(ColumnDescription = "消息类型", IsNullable = true)]
public System.Int32? type { get; set; }
///
/// 消息参数
///
[Display(Name = "消息参数")]
[SugarColumn(ColumnDescription = "消息参数", IsNullable = true)]
public System.String parameters { get; set; }
///
/// 是否关注回复
///
[Display(Name = "是否关注回复")]
[SugarColumn(ColumnDescription = "是否关注回复", IsNullable = true)]
public System.Boolean? isAttention { get; set; }
///
/// 是否默认回复
///
[Display(Name = "是否默认回复")]
[SugarColumn(ColumnDescription = "是否默认回复", IsNullable = true)]
public System.Boolean? isDefault { get; set; }
///
/// 是否启用
///
[Display(Name = "是否启用")]
[SugarColumn(ColumnDescription = "是否启用", IsNullable = true)]
public System.Boolean? isEnable { get; set; }
///
/// 创建时间
///
[Display(Name = "创建时间")]
[SugarColumn(ColumnDescription = "创建时间", IsNullable = true)]
public System.DateTime? createTime { get; set; }
///
/// 更新时间
///
[Display(Name = "更新时间")]
[SugarColumn(ColumnDescription = "更新时间", IsNullable = true)]
public System.DateTime? updateTime { get; set; }
}
}