周口郸城医院 DanChengCallCenter_API

AutoCallOut.cs 2.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /** 版本信息模板在安装目录下,可自行修改。
  2. * AutoCallOut.cs
  3. *
  4. * 功 能: N/A
  5. * 类 名: AutoCallOut
  6. *
  7. * Ver 变更日期 负责人 变更内容
  8. * ───────────────────────────────────
  9. * V0.01 2021/11/16 15:58:24 N/A 初版
  10. *
  11. * Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
  12. *┌──────────────────────────────────┐
  13. *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
  14. *│ 版权所有:动软卓越(北京)科技有限公司              │
  15. *└──────────────────────────────────┘
  16. */
  17. using System;
  18. namespace CallCenterApi.Model
  19. {
  20. /// <summary>
  21. /// AutoCallOut:实体类(属性说明自动提取数据库字段的描述信息)
  22. /// </summary>
  23. [Serializable]
  24. public partial class AutoCallOut
  25. {
  26. public AutoCallOut()
  27. {}
  28. #region Model
  29. private int _id;
  30. private string _usercode;
  31. private string _tel;
  32. private DateTime? _createtime;
  33. private int? _isphoned=0;
  34. private string _identification;
  35. private string _callid;
  36. /// <summary>
  37. ///
  38. /// </summary>
  39. public int ID
  40. {
  41. set{ _id=value;}
  42. get{return _id;}
  43. }
  44. /// <summary>
  45. ///
  46. /// </summary>
  47. public string usercode
  48. {
  49. set{ _usercode=value;}
  50. get{return _usercode;}
  51. }
  52. /// <summary>
  53. ///
  54. /// </summary>
  55. public string tel
  56. {
  57. set{ _tel=value;}
  58. get{return _tel;}
  59. }
  60. /// <summary>
  61. ///
  62. /// </summary>
  63. public DateTime? createtime
  64. {
  65. set{ _createtime=value;}
  66. get{return _createtime;}
  67. }
  68. /// <summary>
  69. /// 没拨打过是0,打过了1
  70. /// </summary>
  71. public int? isphoned
  72. {
  73. set{ _isphoned=value;}
  74. get{return _isphoned;}
  75. }
  76. /// <summary>
  77. /// 唯一标识
  78. /// </summary>
  79. public string identification
  80. {
  81. set{ _identification=value;}
  82. get{return _identification;}
  83. }
  84. /// <summary>
  85. ///
  86. /// </summary>
  87. public string callid
  88. {
  89. set{ _callid=value;}
  90. get{return _callid;}
  91. }
  92. #endregion Model
  93. }
  94. }