人民医院API

T_IntegratedScheduling_Detail.cs 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /** 版本信息模板在安装目录下,可自行修改。
  2. * T_IntegratedScheduling_Detail.cs
  3. *
  4. * 功 能: N/A
  5. * 类 名: T_IntegratedScheduling_Detail
  6. *
  7. * Ver 变更日期 负责人 变更内容
  8. * ───────────────────────────────────
  9. * V0.01 2022/10/19 11:12:11 N/A 初版
  10. *
  11. * Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
  12. *┌──────────────────────────────────┐
  13. *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
  14. *│ 版权所有:动软卓越(北京)科技有限公司              │
  15. *└──────────────────────────────────┘
  16. */
  17. using System;
  18. namespace RMYY_CallCenter_Api.Model
  19. {
  20. /// <summary>
  21. /// T_IntegratedScheduling_Detail:实体类(属性说明自动提取数据库字段的描述信息)
  22. /// </summary>
  23. [Serializable]
  24. public partial class T_IntegratedScheduling_Detail
  25. {
  26. public T_IntegratedScheduling_Detail()
  27. {}
  28. #region Model
  29. private int _f_detailid;
  30. private string _f_workordercode;
  31. private int? _f_dicid;
  32. private string _f_dicname;
  33. private int? _f_number;
  34. private DateTime? _f_updatetime;
  35. private DateTime? _f_createtime;
  36. private int? _f_isdelete;
  37. /// <summary>
  38. ///
  39. /// </summary>
  40. public int F_DetailId
  41. {
  42. set{ _f_detailid=value;}
  43. get{return _f_detailid;}
  44. }
  45. /// <summary>
  46. ///
  47. /// </summary>
  48. public string F_WorkOrderCode
  49. {
  50. set{ _f_workordercode=value;}
  51. get{return _f_workordercode;}
  52. }
  53. /// <summary>
  54. ///
  55. /// </summary>
  56. public int? F_DicId
  57. {
  58. set{ _f_dicid=value;}
  59. get{return _f_dicid;}
  60. }
  61. /// <summary>
  62. ///
  63. /// </summary>
  64. public string F_DicName
  65. {
  66. set{ _f_dicname=value;}
  67. get{return _f_dicname;}
  68. }
  69. /// <summary>
  70. ///
  71. /// </summary>
  72. public int? F_Number
  73. {
  74. set{ _f_number=value;}
  75. get{return _f_number;}
  76. }
  77. /// <summary>
  78. ///
  79. /// </summary>
  80. public DateTime? F_UpdateTime
  81. {
  82. set{ _f_updatetime=value;}
  83. get{return _f_updatetime;}
  84. }
  85. /// <summary>
  86. ///
  87. /// </summary>
  88. public DateTime? F_CreateTime
  89. {
  90. set{ _f_createtime=value;}
  91. get{return _f_createtime;}
  92. }
  93. /// <summary>
  94. ///
  95. /// </summary>
  96. public int? F_IsDelete
  97. {
  98. set{ _f_isdelete=value;}
  99. get{return _f_isdelete;}
  100. }
  101. #endregion Model
  102. }
  103. }