using MadRunFabric.Common; using MongoDB.Bson.Serialization.Attributes; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; namespace MadRunFabric.Model.TestUserTypeApi { public class CallComeTpwode : IBaseModel { [Key] [BsonRepresentation(MongoDB.Bson.BsonType.ObjectId)] public string id { get; set; } /// /// 工单类型0咨询 1投诉 /// public int wodetype { get; set; } /// /// 科室名称 /// public string deptname { get; set; } /// /// 客户姓名 /// public string coustomname { get; set; } /// /// 联系电话 /// public string phoneinfo { get; set; } /// /// 投诉类别 /// public string centerinfotype { get; set; } /// /// 咨询、反馈内容 /// public string centerinfo { get; set; } /// /// 接受部门名称 仅限投诉有 /// public string jsdeptname { get; set; } /// /// 接收人名称 仅限投诉有 /// public string jspeople { get; set; } /// /// 接收人工号 /// public string jspeopleusercode { get; set; } /// /// 备注 /// public string memoinfo { get; set; } /// /// 处理结果 /// public string resultmassage { get; set; } /// /// 创建时间 /// public DateTime? createdate { get; set; } /// /// 创建人 /// public string createusercode { get; set; } } }