| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- /** 版本信息模板在安装目录下,可自行修改。
- * 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
- {
- /// <summary>
- /// AutoCallOut:实体类(属性说明自动提取数据库字段的描述信息)
- /// </summary>
- [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;
- /// <summary>
- ///
- /// </summary>
- public int ID
- {
- set{ _id=value;}
- get{return _id;}
- }
- /// <summary>
- ///
- /// </summary>
- public string usercode
- {
- set{ _usercode=value;}
- get{return _usercode;}
- }
- /// <summary>
- ///
- /// </summary>
- public string tel
- {
- set{ _tel=value;}
- get{return _tel;}
- }
- /// <summary>
- ///
- /// </summary>
- public DateTime? createtime
- {
- set{ _createtime=value;}
- get{return _createtime;}
- }
- /// <summary>
- /// 没拨打过是0,打过了1
- /// </summary>
- public int? isphoned
- {
- set{ _isphoned=value;}
- get{return _isphoned;}
- }
- /// <summary>
- /// 唯一标识
- /// </summary>
- public string identification
- {
- set{ _identification=value;}
- get{return _identification;}
- }
- /// <summary>
- ///
- /// </summary>
- public string callid
- {
- set{ _callid=value;}
- get{return _callid;}
- }
- #endregion Model
- }
- }
|