南阳电信API

T_AutoCall_Question.cs 2.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /** 版本信息模板在安装目录下,可自行修改。
  2. * T_AutoCall_Question.cs
  3. *
  4. * 功 能: N/A
  5. * 类 名: T_AutoCall_Question
  6. *
  7. * Ver 变更日期 负责人 变更内容
  8. * ───────────────────────────────────
  9. * V0.01 2022/2/23 09:12:42 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_AutoCall_Question:实体类(属性说明自动提取数据库字段的描述信息)
  22. /// </summary>
  23. [Serializable]
  24. public partial class T_AutoCall_Question
  25. {
  26. public T_AutoCall_Question()
  27. {}
  28. #region Model
  29. private int _F_Id;
  30. private int _taskid;
  31. private string _qescontent;
  32. private DateTime _createtime= DateTime.Now;
  33. private string _createby;
  34. private string _path;
  35. public string path
  36. {
  37. set { _path = value; }
  38. get { return _path; }
  39. }
  40. /// <summary>
  41. ///
  42. /// </summary>
  43. public int F_Id
  44. {
  45. set{ _F_Id = value;}
  46. get{return _F_Id; }
  47. }
  48. /// <summary>
  49. ///
  50. /// </summary>
  51. public int taskId
  52. {
  53. set{ _taskid=value;}
  54. get{return _taskid;}
  55. }
  56. /// <summary>
  57. ///
  58. /// </summary>
  59. public string qesContent
  60. {
  61. set{ _qescontent=value;}
  62. get{return _qescontent;}
  63. }
  64. /// <summary>
  65. ///
  66. /// </summary>
  67. public DateTime createTime
  68. {
  69. set{ _createtime=value;}
  70. get{return _createtime;}
  71. }
  72. /// <summary>
  73. ///
  74. /// </summary>
  75. public string createBy
  76. {
  77. set{ _createby=value;}
  78. get{return _createby;}
  79. }
  80. #endregion Model
  81. }
  82. }