Label.cs 2.1 KB

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