/** 版本信息模板在安装目录下,可自行修改。
* AutoCallOut.cs
*
* 功 能: N/A
* 类 名: AutoCallOut
*
* Ver 变更日期 负责人 变更内容
* ───────────────────────────────────
* V0.01 2021/11/16 15:58:24 N/A 初版
*
* Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
*┌──────────────────────────────────┐
*│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
*│ 版权所有:动软卓越(北京)科技有限公司 │
*└──────────────────────────────────┘
*/
using System;
namespace CallCenterApi.Model
{
///
/// AutoCallOut:实体类(属性说明自动提取数据库字段的描述信息)
///
[Serializable]
public partial class AutoCallOut
{
public AutoCallOut()
{}
#region Model
private int _id;
private string _usercode;
private string _tel;
private DateTime? _createtime;
private int? _isphoned=0;
private string _identification;
private string _callid;
///
///
///
public int ID
{
set{ _id=value;}
get{return _id;}
}
///
///
///
public string usercode
{
set{ _usercode=value;}
get{return _usercode;}
}
///
///
///
public string tel
{
set{ _tel=value;}
get{return _tel;}
}
///
///
///
public DateTime? createtime
{
set{ _createtime=value;}
get{return _createtime;}
}
///
/// 没拨打过是0,打过了1
///
public int? isphoned
{
set{ _isphoned=value;}
get{return _isphoned;}
}
///
/// 唯一标识
///
public string identification
{
set{ _identification=value;}
get{return _identification;}
}
///
///
///
public string callid
{
set{ _callid=value;}
get{return _callid;}
}
#endregion Model
}
}