using System;
using System.Collections.Generic;
using System.Text;
namespace CallCenterApi.Model
{
public class Call_AutoCallNum
{
///
/// id
///
public string id { get; set; }
///
/// 默认为0,有特殊需求可设置成响应的值,值的含义需提前预定
///
//[BsonElement("flag")]
public int flag { get; set; } = 0;
///
/// 电话所在的任务组
///
public string task_icon { get; set; }
///
/// 纳秒
///
//[BsonRepresentation(MongoDB.Bson.BsonType.Timestamp)]
public Int64 timestamp { get; set; } = DateTime.Now.Ticks;
///
/// 呼叫号码
///
public string call_number { get; set; } = "";
///
/// 互通后是否放音 呼通后是否放音,为空不放音,否则放音
///
public string voice_file_name { get; set; } = "";
///
/// 录音路径
///
public string record_file_name { get; set; } = "";
///
/// 是否有效 1 有效 0 无效
///
public int invalid_flag { get; set; } = 1;
}
}