using MadRunFabric.Common; using MongoDB.Bson.Serialization.Attributes; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; namespace MadRunFabric.Model { public class Chat_Process : IBaseModel { /// /// id /// [Key] [BsonRepresentation(MongoDB.Bson.BsonType.ObjectId)] public string id { get; set; } /// /// 步骤 /// public int step { get; set; } /// /// 回复内容 /// public string content { get; set; } /// /// 选项类型(0:无,1:字典选项,2:手输选项) /// public int optiontype { get; set; } /// /// 字典项 /// public string dictionarycode { get; set; } /// /// 选择项 /// public List options { get; set; } /// /// 添加人 /// public string createuser { get; set; } /// /// 添加时间 /// public DateTime createtime { get; set; } = DateTime.Now; /// /// 是否删除(0正常1删除) /// public int isdelete { get; set; } = 0; /// /// 删除人 /// public string deleteuser { get; set; } /// /// 删除日期 /// public DateTime? deletetime { get; set; } } }