Customer.cs 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /** 版本信息模板在安装目录下,可自行修改。
  2. * customer.cs
  3. *
  4. * 功 能: N/A
  5. * 类 名: customer
  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. /// customer:实体类(属性说明自动提取数据库字段的描述信息)
  22. /// </summary>
  23. [Serializable]
  24. public partial class Customer
  25. {
  26. public Customer()
  27. {}
  28. #region Model
  29. private string _id_;
  30. private string _company_;
  31. private string _name_;
  32. private string _phone_;
  33. private bool _del_flag;
  34. private string _create_by;
  35. private DateTime? _create_time;
  36. private string _update_by;
  37. private DateTime? _update_time;
  38. /// <summary>
  39. ///
  40. /// </summary>
  41. public string id_
  42. {
  43. set{ _id_=value;}
  44. get{return _id_;}
  45. }
  46. /// <summary>
  47. ///
  48. /// </summary>
  49. public string company_
  50. {
  51. set{ _company_=value;}
  52. get{return _company_;}
  53. }
  54. /// <summary>
  55. ///
  56. /// </summary>
  57. public string name_
  58. {
  59. set{ _name_=value;}
  60. get{return _name_;}
  61. }
  62. /// <summary>
  63. ///
  64. /// </summary>
  65. public string phone_
  66. {
  67. set{ _phone_=value;}
  68. get{return _phone_;}
  69. }
  70. /// <summary>
  71. ///
  72. /// </summary>
  73. public bool del_flag
  74. {
  75. set{ _del_flag=value;}
  76. get{return _del_flag;}
  77. }
  78. /// <summary>
  79. ///
  80. /// </summary>
  81. public string create_by
  82. {
  83. set{ _create_by=value;}
  84. get{return _create_by;}
  85. }
  86. /// <summary>
  87. ///
  88. /// </summary>
  89. public DateTime? create_time
  90. {
  91. set{ _create_time=value;}
  92. get{return _create_time;}
  93. }
  94. /// <summary>
  95. ///
  96. /// </summary>
  97. public string update_by
  98. {
  99. set{ _update_by=value;}
  100. get{return _update_by;}
  101. }
  102. /// <summary>
  103. ///
  104. /// </summary>
  105. public DateTime? update_time
  106. {
  107. set{ _update_time=value;}
  108. get{return _update_time;}
  109. }
  110. #endregion Model
  111. }
  112. }