using System;
using MongoDB.Bson.Serialization.Attributes;
using MongoDB.Bson;
using MadRunFabric.Common;
using System.ComponentModel.DataAnnotations;
namespace MadRunFabric.Model.CallCenterApi
{
///
/// 外呼号码记录
///
public class Call_OutTaskTelNumRecord : 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; }
///
/// 分配坐席id
///
public string 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;
///
/// 是否外呼
///
public int? iscallout { get; set; } = 0;
///
/// 外呼是否成功
///
public int? iscalloutsuccess { get; set; } = 0;
}
}