Keine Beschreibung

T_AutomaticCall_Task.cs 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. /** 版本信息模板在安装目录下,可自行修改。
  2. * T_AutomaticCall_Task.cs
  3. *
  4. * 功 能: N/A
  5. * 类 名: T_AutomaticCall_Task
  6. *
  7. * Ver 变更日期 负责人 变更内容
  8. * ───────────────────────────────────
  9. * V0.01 2022/3/2 09:32:28 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. /// T_AutomaticCall_Task:实体类(属性说明自动提取数据库字段的描述信息)
  22. /// </summary>
  23. [Serializable]
  24. public partial class T_AutomaticCall_Task
  25. {
  26. public T_AutomaticCall_Task()
  27. {}
  28. #region Model
  29. private int _taskid;
  30. private string _taskname;
  31. private DateTime? _createtime;
  32. private string _createby;
  33. private DateTime? _deletetime;
  34. private string _deleteby;
  35. private int _isdelete=0;
  36. private string _question1;
  37. private string _path1;
  38. private string _question2;
  39. private string _path2;
  40. private string _question3;
  41. private string _path3;
  42. /// <summary>
  43. ///
  44. /// </summary>
  45. public int taskId
  46. {
  47. set{ _taskid=value;}
  48. get{return _taskid;}
  49. }
  50. /// <summary>
  51. ///
  52. /// </summary>
  53. public string taskName
  54. {
  55. set{ _taskname=value;}
  56. get{return _taskname;}
  57. }
  58. /// <summary>
  59. ///
  60. /// </summary>
  61. public DateTime? createTime
  62. {
  63. set{ _createtime=value;}
  64. get{return _createtime;}
  65. }
  66. /// <summary>
  67. ///
  68. /// </summary>
  69. public string createBy
  70. {
  71. set{ _createby=value;}
  72. get{return _createby;}
  73. }
  74. /// <summary>
  75. ///
  76. /// </summary>
  77. public DateTime? deleteTime
  78. {
  79. set{ _deletetime=value;}
  80. get{return _deletetime;}
  81. }
  82. /// <summary>
  83. ///
  84. /// </summary>
  85. public string deleteBy
  86. {
  87. set{ _deleteby=value;}
  88. get{return _deleteby;}
  89. }
  90. /// <summary>
  91. ///
  92. /// </summary>
  93. public int isDelete
  94. {
  95. set{ _isdelete=value;}
  96. get{return _isdelete;}
  97. }
  98. /// <summary>
  99. ///
  100. /// </summary>
  101. public string question1
  102. {
  103. set{ _question1=value;}
  104. get{return _question1;}
  105. }
  106. /// <summary>
  107. ///
  108. /// </summary>
  109. public string path1
  110. {
  111. set{ _path1=value;}
  112. get{return _path1;}
  113. }
  114. /// <summary>
  115. ///
  116. /// </summary>
  117. public string question2
  118. {
  119. set{ _question2=value;}
  120. get{return _question2;}
  121. }
  122. /// <summary>
  123. ///
  124. /// </summary>
  125. public string path2
  126. {
  127. set{ _path2=value;}
  128. get{return _path2;}
  129. }
  130. /// <summary>
  131. ///
  132. /// </summary>
  133. public string question3
  134. {
  135. set{ _question3=value;}
  136. get{return _question3;}
  137. }
  138. /// <summary>
  139. ///
  140. /// </summary>
  141. public string path3
  142. {
  143. set{ _path3=value;}
  144. get{return _path3;}
  145. }
  146. #endregion Model
  147. }
  148. }