ext_xref.cs 5.1 KB

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