Sin descripción

T_AutoCall_Task.cs 2.2KB

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