ext_xrefTest.cs 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. using Business.Core.Attributes;
  2. using Business.Model;
  3. using Microsoft.EntityFrameworkCore;
  4. using Spire.Pdf.General.Paper.Font.Rendering.Hinting;
  5. using System.ComponentModel;
  6. using System.ComponentModel.DataAnnotations;
  7. using Volo.Abp.Domain.Entities;
  8. namespace Bussiness.Model.Ext
  9. {
  10. /// <summary>
  11. /// ext_xref
  12. /// </summary>
  13. [CollectionName("dopbase", "ext_xrefTest")]
  14. [Comment("ext_xrefTest")]
  15. public class ext_xrefTest : Entity<long>
  16. {
  17. public ext_xrefTest()
  18. {
  19. }
  20. public ext_xrefTest(long Id):base(Id)
  21. {
  22. }
  23. /// <summary>
  24. /// DOP表名
  25. /// </summary>
  26. [StringLength(32)]
  27. [Comment("DOP表名")]
  28. public string? dop_table_name { get; set; }
  29. /// <summary>
  30. /// DOP表ID
  31. /// </summary>
  32. [Comment("DOP表ID")]
  33. public long? dop_id { get; set; }
  34. /// <summary>
  35. /// 表列1名
  36. /// </summary>
  37. [StringLength(32)]
  38. [Comment("表列1名")]
  39. public string? dop_col1_name { get; set; }
  40. /// <summary>
  41. /// 表列1值
  42. /// </summary>
  43. [StringLength(80)]
  44. [Comment("表列1值")]
  45. public string? dop_col1_value { get; set; }
  46. /// <summary>
  47. /// 表列2名
  48. /// </summary>
  49. [StringLength(32)]
  50. [Comment("表列2名")]
  51. public string? dop_col2_name { get; set; }
  52. /// <summary>
  53. /// 表列2值
  54. /// </summary>
  55. [StringLength(80)]
  56. [Comment("表列2值")]
  57. public string? dop_col2_value { get; set; }
  58. /// <summary>
  59. /// 表列3名
  60. /// </summary>
  61. [StringLength(32)]
  62. [Comment("表列3名")]
  63. public string? dop_col3_name { get; set; }
  64. /// <summary>
  65. /// 表列3值
  66. /// </summary>
  67. [StringLength(80)]
  68. [Comment("表列3值")]
  69. public string? dop_col3_value { get; set; }
  70. /// <summary>
  71. /// 表列4名
  72. /// </summary>
  73. [StringLength(32)]
  74. [Comment("表列4名")]
  75. public string? dop_col4_name { get; set; }
  76. /// <summary>
  77. /// 表列4值
  78. /// </summary>
  79. [StringLength(80)]
  80. [Comment("表列4值")]
  81. public string? dop_col4_value { get; set; }
  82. /// <summary>
  83. /// 表列5名
  84. /// </summary>
  85. [StringLength(32)]
  86. [Comment("表列5名")]
  87. public string? dop_col5_name { get; set; }
  88. /// <summary>
  89. /// 表列5值
  90. /// </summary>
  91. [StringLength(80)]
  92. [Comment("表列5值")]
  93. public string? dop_col5_value { get; set; }
  94. /// <summary>
  95. /// 其它系统名
  96. /// </summary>
  97. [StringLength(32)]
  98. [Comment("其它系统名")]
  99. public string? other_sys_name { get; set; }
  100. /// <summary>
  101. /// 其它表名
  102. /// </summary>
  103. [StringLength(32)]
  104. [Comment("其它表名")]
  105. public string? other_table_name { get; set; }
  106. /// <summary>
  107. /// 它表ID
  108. /// </summary>
  109. [Comment("它表ID")]
  110. public long? other_id { get; set; }
  111. /// <summary>
  112. /// 它列1名
  113. /// </summary>
  114. [StringLength(32)]
  115. [Comment("它列1名")]
  116. public string? other_col1_name { get; set; }
  117. /// <summary>
  118. /// 它列1名
  119. /// </summary>
  120. [StringLength(80)]
  121. [Comment("它列1名")]
  122. public string? other_col1_value { get; set; }
  123. /// <summary>
  124. /// 它列2名
  125. /// </summary>
  126. [StringLength(32)]
  127. [Comment("它列2名")]
  128. public string? other_col2_name { get; set; }
  129. /// <summary>
  130. /// 它列2名
  131. /// </summary>
  132. [StringLength(80)]
  133. [Comment("它列2名")]
  134. public string? other_col2_value { get; set; }
  135. /// <summary>
  136. /// 它列3名
  137. /// </summary>
  138. [StringLength(32)]
  139. [Comment("它列3名")]
  140. public string? other_col3_name { get; set; }
  141. /// <summary>
  142. /// 它列3名
  143. /// </summary>
  144. [StringLength(80)]
  145. [Comment("它列3名")]
  146. public string? other_col3_value { get; set; }
  147. /// <summary>
  148. /// 它列4名
  149. /// </summary>
  150. [StringLength(32)]
  151. [Comment("它列4名")]
  152. public string? other_col4_name { get; set; }
  153. /// <summary>
  154. /// 它列4名
  155. /// </summary>
  156. [StringLength(80)]
  157. [Comment("它列4名")]
  158. public string? other_col4_value { get; set; }
  159. /// <summary>
  160. /// 它列5名
  161. /// </summary>
  162. [StringLength(32)]
  163. [Comment("它列5名")]
  164. public string? other_col5_name { get; set; }
  165. /// <summary>
  166. /// 它列5名
  167. /// </summary>
  168. [StringLength(80)]
  169. [Comment("它列5名")]
  170. public string? other_col5_value { get; set; }
  171. /// <summary>
  172. /// 备注信息
  173. /// </summary>
  174. [Comment("备注信息")]
  175. [StringLength(255)]
  176. public string? note { get; set; }
  177. /// <summary>
  178. /// DOP系统名
  179. /// </summary>
  180. [Comment("DOP系统名")]
  181. [StringLength(32)]
  182. public string? dop_sys_name { get; set; }
  183. }
  184. }