南阳电信API

T_AutoCall_Result.cs 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /** 版本信息模板在安装目录下,可自行修改。
  2. * T_AutoCall_Result.cs
  3. *
  4. * 功 能: N/A
  5. * 类 名: T_AutoCall_Result
  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_Result:实体类(属性说明自动提取数据库字段的描述信息)
  22. /// </summary>
  23. [Serializable]
  24. public partial class T_AutoCall_Result
  25. {
  26. public T_AutoCall_Result()
  27. {}
  28. #region Model
  29. private int _F_Id;
  30. private int _taskid;
  31. private int _questionid;
  32. private DateTime? _createtime= DateTime.Now;
  33. private string _result;
  34. /// <summary>
  35. ///
  36. /// </summary>
  37. public int F_Id
  38. {
  39. set{ _F_Id = value;}
  40. get{return _F_Id; }
  41. }
  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 int questionId
  54. {
  55. set{ _questionid=value;}
  56. get{return _questionid;}
  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 result
  70. {
  71. set{ _result=value;}
  72. get{return _result;}
  73. }
  74. #endregion Model
  75. }
  76. }