using System; using MongoDB.Bson.Serialization.Attributes; using MongoDB.Bson; using MadRunFabric.Common; using System.ComponentModel.DataAnnotations; namespace MadRunFabric.Model.CallCenterApi { /// /// 外呼号码 /// public class Call_OutTaskTelNum : IBaseModel { /// /// id /// [Key] [BsonRepresentation(MongoDB.Bson.BsonType.ObjectId)] public string id { get; set; } public string taskid { get; set; } public int? cusid { get; set; } public string cusname { get; set; } public string cusaddr { get; set; } public string phone { get; set; } public string phoneby { get; set; } public int? fpstate { get; set; } public int? yjstate { get; set; } public int? hcstate { get; set; } public int? userid { get; set; } public string username { get; set; } public DateTime? createtime { get; set; } = DateTime.Now; public string askinfo { get; set; } public string askres { get; set; } public int? hjjgid { get; set; } public string hjjgname { get; set; } public DateTime? hjjgtime { get; set; } public int? yhfkid { get; set; } public string yhfkname { get; set; } public int? deleteflag { get; set; } = 0; } }