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 Sys_User_Feedback : IBaseModel { /// /// id /// [Key] [BsonRepresentation(MongoDB.Bson.BsonType.ObjectId)] public string id { get; set; } /// /// app类型 /// public int apptype { get; set; } /// /// 电话号码 /// public string phone { get; set; } /// /// 标题 /// public string title { get; set; } /// /// 内容 /// public string content { get; set; } /// /// 附件 /// public List files { get; set; } /// /// 备注 /// public string remark { get; set; } /// /// 添加人工号 /// public string createby { get; set; } /// /// 添加人名字 /// public string createbyname { get; set; } /// /// 添加时间 /// public DateTime createtime { get; set; } = DateTime.Now; /// /// 是否删除(0正常1删除) /// public int isdelete { get; set; } = 0; /// /// 删除人 /// public string deleteby { get; set; } /// /// 删除日期 /// public DateTime? deletetime { get; set; } } }