TbColumnAndCaptionDefine.cs 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace Core.StlMes.Client.Sale.Util
  7. {
  8. public class TbColumnAndCaptionDefine
  9. {
  10. Hashtable _hsTb = null;
  11. Hashtable hsColumnAndCaption = new Hashtable ();
  12. Hashtable hsColumnAndDataType = new Hashtable();
  13. Hashtable hsColumnAndLength = new Hashtable();
  14. private static object _lock = new object();
  15. private TbColumnAndCaptionDefine()
  16. {
  17. _hsTb = GetTbColumnAndTypeAndCapAndLength();
  18. this.SetTbColumnAndCaptionAndTypeAndLength();
  19. }
  20. private static TbColumnAndCaptionDefine tbColumnDefine = null;
  21. public static TbColumnAndCaptionDefine GetInstance()
  22. {
  23. if(tbColumnDefine == null)
  24. {
  25. lock(_lock)
  26. {
  27. if(tbColumnDefine == null)
  28. {
  29. tbColumnDefine = new TbColumnAndCaptionDefine();
  30. }
  31. }
  32. }
  33. return tbColumnDefine;
  34. }
  35. public void SetTbColumnAndCaptionAndTypeAndLength()
  36. {
  37. Hashtable hsTb = _hsTb;
  38. System.Collections.IDictionaryEnumerator enumerator = hsTb.GetEnumerator();
  39. string[] value = null;
  40. while(enumerator.MoveNext())
  41. {
  42. value = (string[])enumerator.Value;
  43. try
  44. {
  45. hsColumnAndCaption.Add(value[0], value[1]);
  46. }
  47. catch
  48. {
  49. }
  50. try
  51. {
  52. hsColumnAndDataType.Add(value[0], value[2]);
  53. }
  54. catch
  55. {
  56. }
  57. try
  58. {
  59. hsColumnAndLength.Add(value[0], Convert.ToInt32(value[3]));
  60. }
  61. catch
  62. {
  63. }
  64. }
  65. }
  66. public Hashtable GetTbColumnAndDaType()
  67. {
  68. return hsColumnAndDataType;
  69. }
  70. public System.Collections.Hashtable GetTbColumnAndShowLength()
  71. {
  72. return hsColumnAndLength;
  73. }
  74. /// <summary>
  75. /// 获取数据库字段定义以及显示标题
  76. /// </summary>
  77. /// <returns></returns>
  78. public System.Collections.Hashtable GetTbColumnAndCaption()
  79. {
  80. return hsColumnAndCaption;
  81. }
  82. private Hashtable GetTbColumnAndTypeAndCapAndLength01()
  83. {
  84. Hashtable hs = new Hashtable();
  85. hs.Add(1, new string[] { "ISIMPORTORDER", "是否重点合同", "System.String", "60" });
  86. hs.Add(2, new string[] { "ISDEV", "是否研发", "System.String", "60" });
  87. hs.Add(3, new string[] { "ISOUT", "出口", "System.String", "60" });
  88. hs.Add(4, new string[] { "ZIP_CODE", "邮编", "System.String", "60" });
  89. hs.Add(5, new string[] { "CPLT_DTIME", "用户投诉时间", "System.String", "60" });
  90. hs.Add(6, new string[] { "CPLT_TYPE", "投诉分类", "System.String", "60" });
  91. hs.Add(7, new string[] { "CNTCT_ID", "联系者", "System.String", "60" });
  92. hs.Add(8, new string[] { "CNTCT_PH", "联系电话", "System.String", "60" });
  93. hs.Add(9, new string[] { "OBJCT_TYPE", "异议类型", "System.String", "60" });
  94. hs.Add(10, new string[] { "PRD_NAME", "产品名称", "System.String", "60" });
  95. hs.Add(11, new string[] { "SPET_STEEL", "规格牌号描述", "System.String", "60" });
  96. hs.Add(12, new string[] { "TRANSNO", "车号", "System.String", "60" });
  97. hs.Add(13, new string[] { "SEND_DTE", "发运日期", "System.String", "60" });
  98. hs.Add(14, new string[] { "SEND_QTY", "发运数量", "System.Double", "60" });
  99. hs.Add(15, new string[] { "SEND_WGT", "发运重量", "System.Double", "60" });
  100. hs.Add(16, new string[] { "ACPT_DTE", "验收时间", "System.String", "60" });
  101. hs.Add(17, new string[] { "ACPT_QTY", "验收数量", "System.Double", "60" });
  102. hs.Add(18, new string[] { "ACPT_WGT", "验收重量", "System.Double", "60" });
  103. hs.Add(19, new string[] { "OBJCT_QTY", "异议数量", "System.Double", "60" });
  104. hs.Add(20, new string[] { "OBJCT_WGT", "异议重量", "System.Double", "60" });
  105. hs.Add(21, new string[] { "OBJCT_DSP", "异议描述", "System.String", "60" });
  106. hs.Add(22, new string[] { "CPS_MNY", "赔偿金额", "System.Double", "60" });
  107. hs.Add(23, new string[] { "CPS_QTY", "赔偿产品数量", "System.Double", "60" });
  108. hs.Add(24, new string[] { "CPS_WGT", "赔偿产品重量", "System.Double", "60" });
  109. hs.Add(25, new string[] { "DCL_DSP", "申报说明", "System.String", "60" });
  110. hs.Add(26, new string[] { "ACP_FL", "是否受理", "System.String", "60" });
  111. hs.Add(27, new string[] { "ACP_DSP", "受理说明", "System.String", "60" });
  112. hs.Add(28, new string[] { "ACP_ID", "受理者", "System.String", "60" });
  113. hs.Add(29, new string[] { "ACP_DTIME", "受理时间", "System.String", "60" });
  114. hs.Add(30, new string[] { "BPRST_DATE", "到场日期(安排)", "System.String", "60" });
  115. hs.Add(31, new string[] { "PIDF_DATE", "认定报确认日期", "System.String", "60" });
  116. hs.Add(32, new string[] { "PPRC_DATE", "处理方案发送日期", "System.String", "60" });
  117. hs.Add(33, new string[] { "PEND_DATE", "处理结束日期", "System.String", "60" });
  118. hs.Add(34, new string[] { "RVE_FL", "审核结果", "System.String", "60" });
  119. hs.Add(35, new string[] { "RVE_DSP", "审核说明", "System.String", "60" });
  120. hs.Add(36, new string[] { "RVE_ID", "审核者", "System.String", "60" });
  121. hs.Add(37, new string[] { "RVE_DTIME", "审核时间", "System.String", "60" });
  122. hs.Add(38, new string[] { "RVE_FL2", "审核结果2", "System.String", "60" });
  123. hs.Add(39, new string[] { "RVE_DSP2", "审核说明2", "System.String", "60" });
  124. hs.Add(40, new string[] { "RVE_ID2", "审核者2", "System.String", "60" });
  125. hs.Add(41, new string[] { "RVE_DTIME2", "审核时间2", "System.String", "60" });
  126. hs.Add(42, new string[] { "RVE_FL3", "审核结果3", "System.String", "60" });
  127. hs.Add(43, new string[] { "RVE_DSP3", "审核说明3", "System.String", "60" });
  128. hs.Add(44, new string[] { "RVE_ID3", "审核者3", "System.String", "60" });
  129. hs.Add(45, new string[] { "RVE_DTIME3", "审核时间3", "System.String", "60" });
  130. hs.Add(46, new string[] { "RVE_FL4", "审核结果4", "System.String", "60" });
  131. hs.Add(47, new string[] { "RVE_DSP4", "审核说明4", "System.String", "60" });
  132. hs.Add(48, new string[] { "RVE_ID4", "审核者4", "System.String", "60" });
  133. hs.Add(49, new string[] { "RVE_DTIME4", "审核时间4", "System.String", "60" });
  134. hs.Add(50, new string[] { "PRD_NO", "产品序号", "System.String", "60" });
  135. hs.Add(51, new string[] { "STEEL", "产品牌号", "System.String", "60" });
  136. hs.Add(52, new string[] { "THK", "产品厚度", "System.Double", "60" });
  137. hs.Add(53, new string[] { "WTH", "产品宽度", "System.Double", "60" });
  138. hs.Add(54, new string[] { "LEN", "产品长度", "System.Double", "60" });
  139. hs.Add(55, new string[] { "QTY", "产品数量", "System.Double", "60" });
  140. hs.Add(56, new string[] { "WGT", "产品重量", "System.Double", "60" });
  141. hs.Add(57, new string[] { "PRD_OBJCT", "产品异议", "System.String", "60" });
  142. hs.Add(58, new string[] { "IDF_NO", "认定序号", "System.String", "60" });
  143. hs.Add(59, new string[] { "IDF_LEN", "认定长度", "System.Double", "60" });
  144. hs.Add(60, new string[] { "IDF_QTY", "认定数量", "System.Double", "60" });
  145. hs.Add(61, new string[] { "IDF_WGT", "认定重量", "System.Double", "60" });
  146. hs.Add(62, new string[] { "IDF_STEEL", "认定牌号", "System.String", "60" });
  147. hs.Add(63, new string[] { "IDF_THK", "认定厚度", "System.Double", "60" });
  148. hs.Add(64, new string[] { "IDF_WTH", "认定宽度", "System.Double", "60" });
  149. hs.Add(65, new string[] { "IDF_BUG", "认定缺陷", "System.String", "60" });
  150. hs.Add(66, new string[] { "PRC_TYPE", "异议处理方式", "System.String", "60" });
  151. hs.Add(67, new string[] { "PRC_PGRM", "异议处理方案", "System.String", "60" });
  152. hs.Add(68, new string[] { "UDT_ID", "承办者", "System.String", "60" });
  153. hs.Add(69, new string[] { "UDT_DEPT", "承办单位", "System.String", "60" });
  154. hs.Add(70, new string[] { "UDT_DATE", "承办日期", "System.String", "60" });
  155. hs.Add(71, new string[] { "OBJCT_SEQ", "异议序号", "System.String", "60" });
  156. hs.Add(72, new string[] { "IDF_DEPT", "责任单位", "System.String", "60" });
  157. hs.Add(73, new string[] { "OBJCT_HDL_NO", "异议处理编号", "System.String", "60" });
  158. hs.Add(74, new string[] { "BUG_QTY", "缺陷品件数", "System.Double", "60" });
  159. hs.Add(75, new string[] { "BUG_WGT", "缺陷品重量(t)", "System.Double", "60" });
  160. hs.Add(76, new string[] { "BUG_TYP", "缺陷分类", "System.String", "60" });
  161. hs.Add(77, new string[] { "BUG_NM", "缺陷名称", "System.String", "60" });
  162. hs.Add(78, new string[] { "OBJCT_JGE", "异议认定情况", "System.String", "60" });
  163. hs.Add(79, new string[] { "OUT_PKT", "总赔偿金额RMB(元)", "System.Double", "60" });
  164. hs.Add(80, new string[] { "EXCG_WGT", "总换货重量(t)", "System.Double", "60" });
  165. hs.Add(81, new string[] { "LOST_WGT", "总补货重量(t)", "System.Double", "60" });
  166. hs.Add(82, new string[] { "LBTY_UNIT_1", "责任单位1", "System.String", "60" });
  167. hs.Add(83, new string[] { "OUT_PKT_1", "承担金额RMB(元)", "System.Double", "60" });
  168. hs.Add(84, new string[] { "EXCG_WGT_1", "承担换货重量(t)", "System.Double", "60" });
  169. hs.Add(85, new string[] { "LOST_WGT_1", "承担补货重量(t)", "System.Double", "60" });
  170. hs.Add(86, new string[] { "LBTY_UNIT_2", "责任单位2", "System.String", "60" });
  171. hs.Add(87, new string[] { "OUT_PKT_2", "承担金额RMB(元)", "System.Double", "60" });
  172. hs.Add(88, new string[] { "EXCG_WGT_2", "承担换货重量(t)", "System.Double", "60" });
  173. hs.Add(89, new string[] { "LOST_WGT_2", "承担补货重量(t)", "System.Double", "60" });
  174. hs.Add(90, new string[] { "LBTY_UNIT_3", "责任单位2", "System.String", "60" });
  175. hs.Add(91, new string[] { "OUT_PKT_3", "承担金额RMB(元)", "System.Double", "60" });
  176. hs.Add(92, new string[] { "EXCG_WGT_3", "承担换货重量(t)", "System.Double", "60" });
  177. hs.Add(93, new string[] { "LOST_WGT_3", "承担补货重量(t)", "System.Double", "60" });
  178. hs.Add(94, new string[] { "SLDPT_MEM", "销售部备注", "System.String", "60" });
  179. hs.Add(95, new string[] { "SLDPT_PL_ID", "销售部处理方案确认人", "System.String", "60" });
  180. hs.Add(96, new string[] { "SLDPT_PL_DTIME", "销售部处理方案确认时间", "System.String", "60" });
  181. hs.Add(97, new string[] { "EXCD_PPRC_DYS", "处理方案超计划工作日天数", "System.Double", "60" });
  182. hs.Add(98, new string[] { "TCNLG_OPN", "技术中心意见", "System.String", "60" });
  183. hs.Add(99, new string[] { "TCNLG_ID", "确认人(技术中心)", "System.String", "60" });
  184. hs.Add(100, new string[] { "TCNLG_DTIME", "技术中心确认时间", "System.String", "60" });
  185. hs.Add(101, new string[] { "CMPNY_OPN", "公司领导意见", "System.String", "60" });
  186. hs.Add(102, new string[] { "CMPNY_ID", "申报时间", "System.String", "60" });
  187. hs.Add(103, new string[] { "CMPNY_DTIME", "公司领导确认时间", "System.String", "60" });
  188. hs.Add(104, new string[] { "FNACE_OPN", "财务处意见", "System.String", "60" });
  189. hs.Add(105, new string[] { "FNACE_ID", "财务处确认人", "System.String", "60" });
  190. hs.Add(106, new string[] { "FNACE_DTIME", "财务处确认时间", "System.String", "60" });
  191. hs.Add(107, new string[] { "CNTCT_OPN", "销售部合同接受意见", "System.String", "60" });
  192. hs.Add(108, new string[] { "CNTCT_DTIME", "销售部合同确认时间", "System.String", "60" });
  193. hs.Add(109, new string[] { "USER_EVLUT", "用户评价", "System.String", "60" });
  194. hs.Add(110, new string[] { "USER_OPN", "用户不满意记录", "System.String", "60" });
  195. hs.Add(111, new string[] { "SLDPT_ED_ID", "销售部确认人", "System.String", "60" });
  196. hs.Add(112, new string[] { "SLDPT_ED_DTIME", "销售部确认时间", "System.String", "60" });
  197. hs.Add(113, new string[] { "EXCD_PEND_DYS", "处理结束超计划工作日天数", "System.Double", "60" });
  198. hs.Add(114, new string[] { "FILE_FL", "附件标识", "System.String", "60" });
  199. hs.Add(115, new string[] { "OBJCT_ADD", "异议地点", "System.String", "60" });
  200. hs.Add(116, new string[] { "UDTKR_1", "承办单位1", "System.String", "60" });
  201. hs.Add(117, new string[] { "UDTKR_2", "承办单位2", "System.String", "60" });
  202. hs.Add(118, new string[] { "UDTKR_3", "承办单位3", "System.String", "60" });
  203. hs.Add(119, new string[] { "UDTKR_4", "承办单位4", "System.String", "60" });
  204. hs.Add(120, new string[] { "UDTKR_1_MAN", "承办单位1承办人", "System.String", "60" });
  205. hs.Add(121, new string[] { "UDTKR_1_DTIME", "承办单位1确认时间", "System.String", "60" });
  206. hs.Add(122, new string[] { "UDTKR_1_AFM", "承办单位1确认人", "System.String", "60" });
  207. hs.Add(123, new string[] { "UDTKR_1_MEM", "承办单位1承办说明", "System.String", "60" });
  208. hs.Add(124, new string[] { "UDTKR_2_MAN", "承办单位2承办人", "System.String", "60" });
  209. hs.Add(125, new string[] { "UDTKR_2_DTIME", "承办单位2确认时间", "System.String", "60" });
  210. hs.Add(126, new string[] { "UDTKR_2_AFM", "承办单位2确认人", "System.String", "60" });
  211. hs.Add(127, new string[] { "UDTKR_2_MEM", "承办单位2承办说明", "System.String", "60" });
  212. hs.Add(128, new string[] { "UDTKR_3_MAN", "承办单位3承办人", "System.String", "60" });
  213. hs.Add(129, new string[] { "UDTKR_3_DTIME", "承办单位3确认时间", "System.String", "60" });
  214. hs.Add(130, new string[] { "UDTKR_3_AFM", "承办单位3确认人", "System.String", "60" });
  215. hs.Add(131, new string[] { "UDTKR_3_MEM", "承办单位3承办说明", "System.String", "60" });
  216. hs.Add(132, new string[] { "UDTKR_4_MAN", "承办单位4承办人", "System.String", "60" });
  217. hs.Add(133, new string[] { "UDTKR_4_DTIME", "承办单位4确认时间", "System.String", "60" });
  218. hs.Add(134, new string[] { "UDTKR_4_AFM", "承办单位4确认人", "System.String", "60" });
  219. hs.Add(135, new string[] { "UDTKR_4_MEM", "承办单位4承办说明", "System.String", "60" });
  220. hs.Add(136, new string[] { "TPST_DATE", "承办人员到现场时间", "System.String", "60" });
  221. hs.Add(137, new string[] { "IDF_DSP", "认定情况", "System.String", "60" });
  222. hs.Add(138, new string[] { "IDF_DATE", "交付日期", "System.String", "60" });
  223. hs.Add(139, new string[] { "INPUT_WGT", "录入重量", "System.Double", "60" });
  224. hs.Add(140, new string[] { "PROD_LINE", "产线编码", "System.String", "60" });
  225. hs.Add(141, new string[] { "SPEC_ABBSYM", "标准号", "System.String", "60" });
  226. hs.Add(142, new string[] { "STEEL_CODE", "牌号", "System.String", "60" });
  227. hs.Add(143, new string[] { "USED_CD", "用途", "System.String", "60" });
  228. hs.Add(144, new string[] { "PRDNM_CD", "交货状态", "System.String", "60" });
  229. hs.Add(145, new string[] { "ISALPHA", "是否Alpha(N/Y)", "System.String", "60" });
  230. hs.Add(146, new string[] { "CUST_ALPHA_NO", "客户Alpha编号", "System.String", "60" });
  231. hs.Add(147, new string[] { "QUALITY_DESIGH_RESULT", "品质设计结果", "System.String", "60" });
  232. hs.Add(148, new string[] { "QUALITY_DESIGH_ERRMSG", "品质设计错误信息", "System.String", "60" });
  233. hs.Add(149, new string[] { "QUALITY_DESIGH_NAME", "品质设计人", "System.String", "60" });
  234. hs.Add(150, new string[] { "QUALITY_DESIGH_DATE", "品质设计时间", "System.DateTime", "60" });
  235. hs.Add(151, new string[] { "ORD_SEND_WGT", "发货量", "System.Double", "60" });
  236. hs.Add(152, new string[] { "ORD_INVOICE_WGT", "结算量", "System.Double", "60" });
  237. hs.Add(153, new string[] { "ID", "运费编码", "System.String", "60" });
  238. hs.Add(154, new string[] { "STATIONCODE", "到站编码", "System.String", "60" });
  239. hs.Add(155, new string[] { "TRANS_LN_CD", "运输线路编码", "System.String", "60" });
  240. hs.Add(156, new string[] { "START_LINE", "运输线路起点", "System.String", "60" });
  241. hs.Add(157, new string[] { "END_LINE", "运输线路终点", "System.String", "60" });
  242. hs.Add(158, new string[] { "MNY_TYPE", "应收应付", "System.String", "60" });
  243. hs.Add(159, new string[] { "MNY_USE", "运费用途", "System.String", "60" });
  244. hs.Add(160, new string[] { "TRANS_MNY", "运费", "System.Double", "60" });
  245. hs.Add(161, new string[] { "MNY1", "中转费", "System.Double", "60" });
  246. hs.Add(162, new string[] { "MNY2", "费用2", "System.Double", "60" });
  247. hs.Add(163, new string[] { "MNY3", "费用3", "System.Double", "60" });
  248. hs.Add(164, new string[] { "MNY4", "费用4", "System.Double", "60" });
  249. hs.Add(165, new string[] { "MNY5", "费用5", "System.Double", "60" });
  250. hs.Add(166, new string[] { "ADD_TAX", "税率(%)", "System.Double", "60" });
  251. hs.Add(167, new string[] { "TARNS_WGT", "车重约束", "System.Double", "60" });
  252. hs.Add(168, new string[] { "TARNS_WGT_MIN", "车重约束下限", "System.Double", "60" });
  253. hs.Add(169, new string[] { "TARNS_WGT_MAX", "车重约束上限", "System.Double", "60" });
  254. hs.Add(170, new string[] { "TRANS_DPT", "承运单位", "System.String", "60" });
  255. hs.Add(171, new string[] { "STATUS_CD", "状态区分", "System.String", "60" });
  256. hs.Add(172, new string[] { "USE_BDATE", "时效开始期", "System.String", "60" });
  257. hs.Add(173, new string[] { "USE_EDATE", "时效结束期", "System.String", "60" });
  258. hs.Add(174, new string[] { "REG_ID", "录入者", "System.String", "60" });
  259. hs.Add(175, new string[] { "REG_DTIME", "录入时间", "System.String", "60" });
  260. hs.Add(176, new string[] { "AFM_ID", "确认者", "System.String", "60" });
  261. hs.Add(177, new string[] { "AFM_DTIME", "确认时间", "System.String", "60" });
  262. hs.Add(178, new string[] { "MOD_ID", "变更者", "System.String", "60" });
  263. hs.Add(179, new string[] { "MOD_DTIME", "变更时间", "System.String", "60" });
  264. hs.Add(180, new string[] { "WAGON_NO", "车皮/船号", "System.String", "60" });
  265. hs.Add(181, new string[] { "LOAD_WGT", "载重", "System.Double", "60" });
  266. hs.Add(182, new string[] { "CONTACT_NAME", "联系人", "System.String", "60" });
  267. hs.Add(183, new string[] { "CONTACT_PHONE", "联系电话", "System.String", "60" });
  268. hs.Add(184, new string[] { "SCHEME_NO", "方案号", "System.String", "60" });
  269. hs.Add(185, new string[] { "SLAB_WGT", "板材重量", "System.Double", "60" });
  270. hs.Add(186, new string[] { "TRANSMONTH", "运输月份", "System.String", "60" });
  271. hs.Add(187, new string[] { "DELVRY_DATE", "交货日期", "System.DateTime", "60" });
  272. hs.Add(188, new string[] { "DLIV_DIRNO", "出库指示号", "System.String", "60" });
  273. hs.Add(189, new string[] { "TRANSPORT_NUM", "运号", "System.String", "60" });
  274. hs.Add(190, new string[] { "GET_ON_PCD", "装车地点", "System.String", "60" });
  275. hs.Add(191, new string[] { "TRANS_CAR_NO", "出厂车号", "System.String", "60" });
  276. hs.Add(192, new string[] { "SHIP_NO", "船号", "System.String", "60" });
  277. hs.Add(193, new string[] { "PHONECODE", "承运人电话", "System.String", "60" });
  278. hs.Add(194, new string[] { "DRIVERIDCARD", "承运人身份证号", "System.String", "60" });
  279. hs.Add(195, new string[] { "DLIV_PROG_CD", "指示状态", "System.String", "60" });
  280. hs.Add(196, new string[] { "PRINTSTATUS", "提货单打印状态", "System.String", "60" });
  281. hs.Add(197, new string[] { "TRANPRTSTATUS", "调运单打印状态", "System.String", "60" });
  282. hs.Add(198, new string[] { "DLIV_ROLLBACKTIME", "计划退回时间", "System.DateTime", "60" });
  283. hs.Add(199, new string[] { "DLIV_ROLLBACKNAME", "计划退回人", "System.String", "60" });
  284. hs.Add(200, new string[] { "INDEX_SEQ", "顺序号", "System.String", "60" });
  285. hs.Add(201, new string[] { "AGENCY_FL", "代办标识", "System.String", "60" });
  286. hs.Add(202, new string[] { "LV_FACTY_TYP", "运输方式", "System.String", "60" });
  287. hs.Add(203, new string[] { "TRANSIT_TYP", "运输方式", "System.String", "60" });
  288. hs.Add(204, new string[] { "DESTINATION", "目的地", "System.String", "60" });
  289. hs.Add(205, new string[] { "STATION_NO", "到站编码", "System.String", "60" });
  290. hs.Add(206, new string[] { "STATION_NM", "到站名称", "System.String", "60" });
  291. hs.Add(207, new string[] { "SPCL_LN_NO", "专用线编码", "System.String", "60" });
  292. hs.Add(208, new string[] { "SPCL_LN_NM", "专用线名称", "System.String", "60" });
  293. hs.Add(209, new string[] { "ISOWNEDCAR", "是否自备", "System.String", "60" });
  294. hs.Add(210, new string[] { "ISSHIPPING", "是否船运", "System.String", "60" });
  295. hs.Add(211, new string[] { "PORT_NO", "港口/码头", "System.String", "60" });
  296. hs.Add(212, new string[] { "PORT_DESC", "港口/码头描述", "System.String", "60" });
  297. hs.Add(213, new string[] { "CARRIER_UNIT", "承运单位", "System.String", "60" });
  298. hs.Add(214, new string[] { "INCEPTCORPCODE", "收货单位", "System.String", "60" });
  299. hs.Add(215, new string[] { "REINCEPTCORP", "代收单位", "System.String", "60" });
  300. hs.Add(216, new string[] { "RECEIVOR", "接货人", "System.String", "60" });
  301. hs.Add(217, new string[] { "TRANSIT_LN_MNY", "总费用", "System.Double", "60" });
  302. hs.Add(218, new string[] { "CUSTM_ORDER_NO", "客户合同号", "System.String", "60" });
  303. hs.Add(219, new string[] { "ORDER_TYP", "合同类型", "System.String", "60" });
  304. hs.Add(220, new string[] { "ORDER_TYP_DESC", "合同类型描述", "System.String", "60" });
  305. hs.Add(221, new string[] { "PROTCL_NO", "协议号", "System.String", "60" });
  306. hs.Add(222, new string[] { "CUSTOMER_NO", "客户编码", "System.String", "60" });
  307. hs.Add(223, new string[] { "CUSTOMER_NM", "客户名称", "System.String", "120" });
  308. hs.Add(224, new string[] { "MARKET_SYS", "市场系统", "System.String", "60" });
  309. hs.Add(225, new string[] { "MARKET_SYS_DESC", "市场系统描述", "System.String", "60" });
  310. hs.Add(226, new string[] { "ABRVITION", "简称", "System.String", "90" });
  311. hs.Add(227, new string[] { "SUPPLY_UNIT", "供货单位", "System.String", "60" });
  312. hs.Add(228, new string[] { "PRICE_FL", "计价方式", "System.String", "60" });
  313. hs.Add(229, new string[] { "CURRENCY", "币种", "System.String", "60" });
  314. hs.Add(230, new string[] { "MNY_ASK_TYP", "付款方式", "System.String", "60" });
  315. hs.Add(231, new string[] { "ADVANCEMONEY", "预付款金额", "System.Double", "60" });
  316. hs.Add(232, new string[] { "ADVANCESCALE", "预付款比例", "System.Double", "60" });
  317. hs.Add(233, new string[] { "STLMT_UNIT_NO", "结算单位编码", "System.String", "60" });
  318. hs.Add(234, new string[] { "STLMT_UNIT_NM", "结算单位名称", "System.String", "60" });
  319. hs.Add(235, new string[] { "FST_DRAWEE_UNIT", "首次受票人", "System.String", "60" });
  320. hs.Add(236, new string[] { "LEGAL_PSN", "法人", "System.String", "60" });
  321. hs.Add(237, new string[] { "AGENT", "委托代理人", "System.String", "60" });
  322. hs.Add(238, new string[] { "ADDRESS", "地址", "System.String", "60" });
  323. hs.Add(239, new string[] { "BANK", "开户银行", "System.String", "60" });
  324. hs.Add(240, new string[] { "ACCOUNT", "帐号", "System.String", "60" });
  325. hs.Add(241, new string[] { "TAX_ID", "税号", "System.String", "60" });
  326. hs.Add(242, new string[] { "PHONE", "电话", "System.String", "60" });
  327. hs.Add(243, new string[] { "FAX", "传真", "System.String", "60" });
  328. hs.Add(244, new string[] { "ORDER_WGT", "合同量", "System.Double", "60" });
  329. hs.Add(245, new string[] { "ORDER_MNY_TAX", "合同总价", "System.Double", "60" });
  330. hs.Add(246, new string[] { "ORDER_MNY_NTAX", "合同总价", "System.Double", "60" });
  331. hs.Add(247, new string[] { "MNY_ASK_DESC", "付款要求描述", "System.String", "60" });
  332. hs.Add(248, new string[] { "SIGN_PERSON", "签订人", "System.String", "60" });
  333. hs.Add(249, new string[] { "SIGN_DATE", "签订日期", "System.DateTime", "60" });
  334. hs.Add(250, new string[] { "SIGN_ADDRESS", "签订地点", "System.String", "60" });
  335. hs.Add(251, new string[] { "ORDER_YEAR", "合同年度", "System.String", "60" });
  336. hs.Add(252, new string[] { "ORDER_BDATE", "合同开始时间", "System.DateTime", "60" });
  337. hs.Add(253, new string[] { "ORDER_EDATE", "合同结束时间", "System.DateTime", "60" });
  338. hs.Add(254, new string[] { "ORDER_SCAN_NO", "合同扫描件编号", "System.String", "60" });
  339. hs.Add(255, new string[] { "CUSTOMER_MODEL_FL", "是否客户范本", "System.String", "60" });
  340. hs.Add(256, new string[] { "ORDER_MODEL_NO", "合同范本编号", "System.String", "60" });
  341. hs.Add(257, new string[] { "ORDER_MODEL_DESC", "合同范本描述", "System.String", "60" });
  342. hs.Add(258, new string[] { "SALE_ORG", "销售组织", "System.String", "60" });
  343. hs.Add(259, new string[] { "SALE_ORG_DESC", "销售组织描述", "System.String", "60" });
  344. hs.Add(260, new string[] { "SALE_AREA_NO", "销售区域编码", "System.String", "60" });
  345. hs.Add(261, new string[] { "SALE_AREA_DESC", "销售区域描述", "System.String", "60" });
  346. hs.Add(262, new string[] { "ORDER_STS", "合同状态", "System.String", "60" });
  347. hs.Add(263, new string[] { "ORDER_STS_DESC", "合同状态描述", "System.String", "60" });
  348. hs.Add(264, new string[] { "APPROVAL_MAN", "审批人", "System.String", "60" });
  349. hs.Add(265, new string[] { "APPROVAL_TIME", "审批时间", "System.DateTime", "60" });
  350. hs.Add(266, new string[] { "EFFECT_MAN", "生效人", "System.String", "60" });
  351. hs.Add(267, new string[] { "EFFECT_TIME", "生效时间", "System.DateTime", "60" });
  352. hs.Add(268, new string[] { "CLOSE_MAN", "结案人", "System.String", "60" });
  353. hs.Add(269, new string[] { "CLOSE_TIME", "结案时间", "System.DateTime", "60" });
  354. hs.Add(270, new string[] { "CREATE_DEPT", "创建人部门", "System.String", "60" });
  355. hs.Add(271, new string[] { "REGION_NO", "地域片区", "System.String", "60" });
  356. hs.Add(272, new string[] { "TRANSFEE", "运费", "System.Double", "60" });
  357. hs.Add(273, new string[] { "CARTYPE", "车种", "System.String", "60" });
  358. hs.Add(274, new string[] { "KILOMETERS", "公里数", "System.String", "60" });
  359. hs.Add(275, new string[] { "PRAILWAYADMIN", "所属路局", "System.String", "60" });
  360. hs.Add(276, new string[] { "TELEGRAPHCODE", "电报码", "System.String", "60" });
  361. hs.Add(277, new string[] { "GODIRECTCODE", "运行方向", "System.String", "60" });
  362. hs.Add(278, new string[] { "LOADDOCK", "装货码头", "System.String", "60" });
  363. hs.Add(279, new string[] { "UNLOADDOCK", "卸货码头", "System.String", "60" });
  364. hs.Add(280, new string[] { "SERVICECHARGE", "劳务费", "System.Double", "60" });
  365. hs.Add(281, new string[] { "W_TRAN_LINE", "水运线路", "System.String", "60" });
  366. hs.Add(282, new string[] { "C_TRAN_LINE", "汽运线路", "System.String", "60" });
  367. hs.Add(283, new string[] { "ACCEPT_PERSON", "收货人", "System.String", "60" });
  368. hs.Add(284, new string[] { "OWNED_CITY", "所属城市", "System.String", "60" });
  369. hs.Add(285, new string[] { "REMARK", "备注", "System.String", "60" });
  370. hs.Add(286, new string[] { "PERCODE", "身份证", "System.String", "60" });
  371. hs.Add(287, new string[] { "TELCODE", "收货人电话", "System.String", "60" });
  372. hs.Add(288, new string[] { "FORECORPCODE", "子公司编码", "System.String", "60" });
  373. hs.Add(289, new string[] { "FORECORPNAME", "公司名称", "System.String", "60" });
  374. hs.Add(290, new string[] { "PRINCIPAL", "负责人", "System.String", "60" });
  375. hs.Add(291, new string[] { "FORE_TP", "类型区分", "System.String", "60" });
  376. hs.Add(292, new string[] { "REGION_LVL_NO", "行政区域级别编码", "System.String", "60" });
  377. hs.Add(293, new string[] { "REGION_LVL_NM", "行政区域级别名称", "System.String", "60" });
  378. hs.Add(294, new string[] { "REGION_TYPE_NO", "行政区域属性编码", "System.String", "60" });
  379. hs.Add(295, new string[] { "REGION_TYPE_NM", "行政区域属性名称", "System.String", "60" });
  380. hs.Add(296, new string[] { "REGION_NM", "行政区域名称", "System.String", "60" });
  381. hs.Add(297, new string[] { "P_REGION_NO", "上级行政区域编码", "System.String", "60" });
  382. hs.Add(298, new string[] { "REGION_TYPE", "行政区域属性", "System.String", "60" });
  383. hs.Add(299, new string[] { "CAPITAL_FL", "是否首都", "System.String", "60" });
  384. hs.Add(300, new string[] { "PR_CAPITAL_FL", "是否省会", "System.String", "60" });
  385. hs.Add(301, new string[] { "REGION_SEQ", "行政区域顺序", "System.String", "60" });
  386. hs.Add(302, new string[] { "BIGAREA", "行政片区", "System.String", "60" });
  387. hs.Add(303, new string[] { "CUSTM_LVL", "客户等级", "System.String", "60" });
  388. hs.Add(304, new string[] { "ORG", "组织机构", "System.String", "60" });
  389. hs.Add(305, new string[] { "PY", "拼音助记", "System.String", "60" });
  390. hs.Add(306, new string[] { "CUSTM_USE", "用途类型", "System.String", "60" });
  391. hs.Add(307, new string[] { "CHN_FL", "国内/国外", "System.String", "60" });
  392. hs.Add(308, new string[] { "CUSTM_CTGRY", "客户类别", "System.String", "60" });
  393. hs.Add(309, new string[] { "CUSTM_PRPTY", "客户性质", "System.String", "60" });
  394. hs.Add(310, new string[] { "SALECARD", "营业执照", "System.String", "60" });
  395. hs.Add(311, new string[] { "CUSTM_DATA", "客户资质材料", "System.String", "60" });
  396. hs.Add(312, new string[] { "TRANS_TYP", "运输方式", "System.String", "60" });
  397. hs.Add(313, new string[] { "INCERPTCODE", "收货单位", "System.String", "60" });
  398. hs.Add(314, new string[] { "SHIP_DESTINATION", "船运港口", "System.String", "60" });
  399. hs.Add(315, new string[] { "SERIALNUMBER", "卷序号", "System.String", "60" });
  400. hs.Add(316, new string[] { "ORDERNO", "订单号", "System.String", "60" });
  401. hs.Add(317, new string[] { "LISTNUMBER", "明细号", "System.String", "60" });
  402. hs.Add(318, new string[] { "TRAINWAGON", "车号", "System.String", "60" });
  403. hs.Add(319, new string[] { "ASKPLAN_ID", "出库指示号", "System.String", "60" });
  404. hs.Add(320, new string[] { "PICKSTORAGETIME", "发货时间", "System.DateTime", "60" });
  405. hs.Add(321, new string[] { "SPETKEY", "实物规格", "System.String", "60" });
  406. hs.Add(322, new string[] { "PLY", "实物厚", "System.Double", "60" });
  407. hs.Add(323, new string[] { "CUTSIDESTATE", "切边方式", "System.String", "60" });
  408. hs.Add(324, new string[] { "STEELCODE", "发货牌号", "System.String", "60" });
  409. hs.Add(325, new string[] { "CATEGORY", "钢种", "System.String", "60" });
  410. hs.Add(326, new string[] { "STOVENO", "炉号", "System.String", "60" });
  411. hs.Add(327, new string[] { "ISOVERLEN", "是否超长超宽", "System.String", "60" });
  412. hs.Add(328, new string[] { "DETERMINANTRESULT", "综合判定结果", "System.String", "60" });
  413. hs.Add(329, new string[] { "PACTNO", "合同号", "System.String", "60" });
  414. hs.Add(330, new string[] { "PACTINDEX", "计划号", "System.String", "60" });
  415. hs.Add(331, new string[] { "BASEPRICE", "原价", "System.Double", "60" });
  416. hs.Add(332, new string[] { "PSTEELCODE", "计划牌号", "System.String", "60" });
  417. hs.Add(333, new string[] { "PSPETKEY", "计划规格", "System.String", "60" });
  418. hs.Add(334, new string[] { "PPLY", "计划厚", "System.Double", "60" });
  419. hs.Add(335, new string[] { "PWIDTH", "计划宽", "System.Double", "60" });
  420. hs.Add(336, new string[] { "PLENGTH", "计划长", "System.Double", "60" });
  421. hs.Add(337, new string[] { "ISLOCKPRICE", "是否锁价", "System.String", "60" });
  422. hs.Add(338, new string[] { "ISCLEAR", "是否清库板", "System.String", "60" });
  423. hs.Add(339, new string[] { "SENDBEGINDATE", "计划交货期", "System.DateTime", "60" });
  424. hs.Add(340, new string[] { "BUYERCODE", "客户名称", "System.String", "60" });
  425. hs.Add(341, new string[] { "TRANSTYPE", "运输方式", "System.String", "60" });
  426. hs.Add(342, new string[] { "MOTORMANNAME", "承运单位", "System.String", "60" });
  427. hs.Add(343, new string[] { "PLANDATE", "计划时间", "System.DateTime", "60" });
  428. hs.Add(344, new string[] { "AREACODE", "区域", "System.String", "60" });
  429. hs.Add(345, new string[] { "LEASEDLINE", "专用线", "System.String", "60" });
  430. hs.Add(346, new string[] { "ISWATERCARRAGE", "是否水运", "System.String", "60" });
  431. hs.Add(347, new string[] { "DOCKNAME", "船运港口", "System.String", "60" });
  432. hs.Add(348, new string[] { "PRODUCTLINE", "产线", "System.String", "60" });
  433. hs.Add(349, new string[] { "PRODLINE", "产线帐户", "System.String", "60" });
  434. hs.Add(350, new string[] { "BASEPRICEFILE", "基价文件", "System.String", "60" });
  435. hs.Add(351, new string[] { "ADJUSTPRICEFILE", "调价文件", "System.String", "60" });
  436. hs.Add(352, new string[] { "TRAINMONEY", "运费", "System.Double", "60" });
  437. hs.Add(353, new string[] { "TRAINREMARK", "发运备注", "System.String", "60" });
  438. hs.Add(354, new string[] { "ACCEPTTIME", "销售结算接收时间", "System.DateTime", "60" });
  439. hs.Add(355, new string[] { "ISACCEPT", "是否接收", "System.String", "60" });
  440. hs.Add(356, new string[] { "BALANCENO", "结算序号", "System.String", "60" });
  441. hs.Add(357, new string[] { "QUANTITY", "数量", "System.Double", "60" });
  442. hs.Add(358, new string[] { "BILLNO", "票号", "System.String", "60" });
  443. hs.Add(359, new string[] { "STANDROLLER", "交货状态", "System.String", "60" });
  444. hs.Add(360, new string[] { "BCFLAG", "是否板加", "System.String", "60" });
  445. hs.Add(361, new string[] { "CHECKORG", "检验机构", "System.String", "60" });
  446. hs.Add(362, new string[] { "ONEWEIGHT", "订单单卷重", "System.Double", "60" });
  447. hs.Add(363, new string[] { "BMZL", "表面质量", "System.String", "60" });
  448. hs.Add(364, new string[] { "BZYQ", "包装要求", "System.String", "60" });
  449. hs.Add(365, new string[] { "DIAMTER", "直径", "System.Double", "60" });
  450. hs.Add(366, new string[] { "DDL", "导电率(线材)", "System.Double", "60" });
  451. hs.Add(367, new string[] { "ZJQUANTITY", "纵剪条数", "System.Double", "60" });
  452. hs.Add(368, new string[] { "ORDER_NO", "合同号", "System.String", "60" });
  453. hs.Add(369, new string[] { "ORDER_SEQ", "合同行号", "System.String", "60" });
  454. hs.Add(370, new string[] { "HEIGHT", "厚度", "System.Double", "60" });
  455. hs.Add(371, new string[] { "WIDTH", "宽度", "System.Double", "60" });
  456. hs.Add(372, new string[] { "LENGTH", "长度", "System.Double", "60" });
  457. hs.Add(373, new string[] { "FIXSIZE", "定尺方式", "System.String", "60" });
  458. hs.Add(374, new string[] { "LEN_MIN", "下限", "System.Double", "60" });
  459. hs.Add(375, new string[] { "LEN_MAX", "上限", "System.Double", "60" });
  460. hs.Add(376, new string[] { "WIDTH_MIN", "宽度下限", "System.Double", "60" });
  461. hs.Add(377, new string[] { "WIDTH_MAX", "宽度上限", "System.Double", "60" });
  462. hs.Add(378, new string[] { "SENDSTATUS", "切边方式", "System.String", "60" });
  463. hs.Add(379, new string[] { "ORDER_UNIT", "订货计量单位", "System.String", "60" });
  464. hs.Add(380, new string[] { "ORDER_QTY", "订货件数", "System.Double", "60" });
  465. hs.Add(381, new string[] { "WEIGHT", "订货重量", "System.Double", "60" });
  466. hs.Add(382, new string[] { "DELVRY_RANGE_TPE", "交货量差方式", "System.String", "60" });
  467. hs.Add(383, new string[] { "DELVRY_RANGE_MIN", "交货量差下限", "System.Double", "60" });
  468. hs.Add(384, new string[] { "DELVRY_RANGE_MAX", "交货量差上限", "System.Double", "60" });
  469. hs.Add(385, new string[] { "ISWELDED_HEAT", "是否模拟焊后", "System.String", "60" });
  470. hs.Add(386, new string[] { "NUCLEARSTEEL", "核电钢要求", "System.String", "60" });
  471. hs.Add(387, new string[] { "KHIC", "抗HIC试验", "System.String", "60" });
  472. hs.Add(388, new string[] { "ISPOSTER", "保性能判别", "System.String", "60" });
  473. hs.Add(389, new string[] { "FINAL_USER", "最终用户", "System.String", "60" });
  474. hs.Add(390, new string[] { "FINAL_USER_DESC", "最终用户描述", "System.String", "60" });
  475. hs.Add(391, new string[] { "DELVRY_BDATE", "交货开始日期", "System.DateTime", "60" });
  476. hs.Add(392, new string[] { "DELVRY_EDATE", "交货结束日期", "System.DateTime", "60" });
  477. hs.Add(393, new string[] { "DELVRY_DESC", "交货信息描述", "System.String", "60" });
  478. hs.Add(394, new string[] { "TRANS_DESC", "运输信息描述", "System.String", "60" });
  479. hs.Add(395, new string[] { "ADD_ASK_NO", "附加要求编码", "System.String", "60" });
  480. hs.Add(396, new string[] { "ORDER_ADD_DESC", "订货附加要求描述", "System.String", "60" });
  481. hs.Add(397, new string[] { "ORDER_SPECIAL_FL", "产品特殊要求标识", "System.String", "60" });
  482. hs.Add(398, new string[] { "ORDER_SPECIAL_HEAD", "特殊要求技术规范说明", "System.String", "60" });
  483. hs.Add(399, new string[] { "ORDER_SPECIAL_PATH", "技术规范文件路径", "System.String", "60" });
  484. hs.Add(400, new string[] { "ORDER_SPECIAL_DESC", "产品特殊要求描述", "System.String", "60" });
  485. hs.Add(401, new string[] { "ZBS", "质保书", "System.String", "60" });
  486. hs.Add(402, new string[] { "ORDER_PRICE", "订货价", "System.Double", "60" });
  487. hs.Add(403, new string[] { "TRANS_PRICE", "运费", "System.Double", "60" });
  488. hs.Add(404, new string[] { "TEST_ID", "测价序号", "System.String", "60" });
  489. hs.Add(405, new string[] { "TEST_PRICE", "测算价", "System.Double", "60" });
  490. hs.Add(406, new string[] { "OUT_PRICE", "出厂价", "System.Double", "60" });
  491. hs.Add(407, new string[] { "BALNCE_PRICE", "结算价", "System.Double", "60" });
  492. hs.Add(408, new string[] { "ORDER_LN_STATUS", "合同行状态", "System.String", "60" });
  493. hs.Add(409, new string[] { "REVIEW_STATUS", "评审状态", "System.String", "60" });
  494. hs.Add(410, new string[] { "REVIEW_MSG", "评审信息", "System.String", "60" });
  495. hs.Add(411, new string[] { "REVIEW_DATE", "评审时间", "System.DateTime", "60" });
  496. hs.Add(412, new string[] { "REVIEW_ENTRYDATE", "评审结果录入时间", "System.DateTime", "60" });
  497. hs.Add(413, new string[] { "MEMO", "备注", "System.String", "60" });
  498. hs.Add(414, new string[] { "VALIDFLAG", "有效标志", "System.String", "60" });
  499. hs.Add(415, new string[] { "CREATE_NAME", "创建人", "System.String", "60" });
  500. hs.Add(416, new string[] { "CREATE_TIME", "创建时间", "System.DateTime", "60" });
  501. hs.Add(417, new string[] { "UPDATE_NAME", "修改人", "System.String", "60" });
  502. hs.Add(418, new string[] { "UPDATE_TIME", "修改时间", "System.DateTime", "60" });
  503. hs.Add(419, new string[] { "DELETE_NAME", "删除人", "System.String", "60" });
  504. hs.Add(420, new string[] { "DELETE_TIME", "删除时间", "System.DateTime", "60" });
  505. hs.Add(421, new string[] { "SUANXI", "是否酸洗卷", "System.String", "60" });
  506. hs.Add(422, new string[] { "ISPINZ", "是否平整", "System.String", "60" });
  507. hs.Add(423, new string[] { "ISSHENNENI", "省内外", "System.String", "60" });
  508. hs.Add(424, new string[] { "PM_PZ", "普锰/品种材", "System.String", "60" });
  509. hs.Add(425, new string[] { "TRUN_SPETKEY", "开平长度", "System.Double", "60" });
  510. hs.Add(426, new string[] { "JBGCDJ", "卷板钢种等级", "System.String", "60" });
  511. hs.Add(427, new string[] { "ORD_WEIGHT", "订单重量", "System.Double", "60" });
  512. hs.Add(428, new string[] { "DR_TS", "DR卷", "System.String", "60" });
  513. hs.Add(429, new string[] { "CONFER_WEIGHT", "月协议量", "System.Double", "60" });
  514. hs.Add(430, new string[] { "CONFER_WCLL", "协议完成率", "System.Double", "60" });
  515. hs.Add(431, new string[] { "TS_DENGJI", "探伤等级", "System.String", "60" });
  516. hs.Add(432, new string[] { "ISNEWCHECKORG", "是否新船规", "System.String", "60" });
  517. hs.Add(433, new string[] { "ISTS", "是否探伤", "System.String", "60" });
  518. hs.Add(434, new string[] { "CHECKORG_FL", "是否船板", "System.String", "60" });
  519. hs.Add(435, new string[] { "CJS_GS", "认证国数", "System.String", "60" });
  520. hs.Add(436, new string[] { "CASTPROCESS", "抛丸涂装", "System.String", "60" });
  521. hs.Add(437, new string[] { "BUYERKINDCODE", "客户性质", "System.String", "60" });
  522. hs.Add(438, new string[] { "PLYJD", "厚度带点", "System.String", "60" });
  523. hs.Add(439, new string[] { "HDG", "核电钢要求", "System.String", "60" });
  524. hs.Add(440, new string[] { "PACT_SPY_WEIGHT", "订单量", "System.Double", "60" });
  525. hs.Add(441, new string[] { "GWTEMP", "高温拉伸温度", "System.Double", "60" });
  526. hs.Add(442, new string[] { "STEELCODEDJ", "非船板钢种等级", "System.String", "60" });
  527. hs.Add(443, new string[] { "MLHH", "是否模拟焊后", "System.String", "60" });
  528. hs.Add(444, new string[] { "CHECKORGDJ", "船板质量等级", "System.String", "60" });
  529. hs.Add(445, new string[] { "TRAINTYPE", "车种", "System.String", "60" });
  530. hs.Add(446, new string[] { "ZPOSTER", "Z向性能", "System.String", "60" });
  531. hs.Add(447, new string[] { "WIDTH_10MM", "10mm定宽", "System.String", "60" });
  532. hs.Add(448, new string[] { "FIX_TYPE", "螺纹定尺", "System.String", "60" });
  533. hs.Add(449, new string[] { "HEIGHTJD", "厚度精度", "System.String", "60" });
  534. hs.Add(450, new string[] { "OBJECT_ID", "测价对象", "System.String", "60" });
  535. hs.Add(451, new string[] { "PD_TYPE", "产品类型", "System.String", "60" });
  536. hs.Add(452, new string[] { "TESTPRICE", "测算结果", "System.Double", "60" });
  537. hs.Add(453, new string[] { "ISTEST", "测价状态", "System.String", "60" });
  538. hs.Add(454, new string[] { "MONEY", "金额", "System.Double", "60" });
  539. hs.Add(455, new string[] { "AFFIRMPERSON", "确认人", "System.String", "60" });
  540. hs.Add(456, new string[] { "AFFIRMDATE", "确认时间", "System.DateTime", "60" });
  541. hs.Add(457, new string[] { "DECRERSON", "单价申报人", "System.String", "60" });
  542. hs.Add(458, new string[] { "DECRDATE", "申报时间", "System.DateTime", "60" });
  543. hs.Add(459, new string[] { "TZRSON", "单价调整人", "System.String", "60" });
  544. hs.Add(460, new string[] { "TZDATE", "调整时间", "System.DateTime", "60" });
  545. hs.Add(461, new string[] { "TJYY", "调价原因", "System.String", "60" });
  546. hs.Add(462, new string[] { "PRIC", "结算价格", "System.Double", "60" });
  547. hs.Add(463, new string[] { "TRAINMONEYQC", "汽运费", "System.Double", "60" });
  548. hs.Add(464, new string[] { "TRAINMONEYSY", "水运费", "System.Double", "60" });
  549. hs.Add(465, new string[] { "PRICESY", "水运单价", "System.Double", "60" });
  550. hs.Add(466, new string[] { "PL", "产线", "System.String", "60" });
  551. hs.Add(467, new string[] { "TRAN_TYPE", "运输方式", "System.String", "60" });
  552. hs.Add(468, new string[] { "IS_KP", "是否开平", "System.String", "60" });
  553. hs.Add(469, new string[] { "KPWIDTH", "开平宽度", "System.Double", "60" });
  554. hs.Add(470, new string[] { "ZJHEIGHT", "纵剪厚度", "System.Double", "60" });
  555. hs.Add(471, new string[] { "CJ_TEMP", "冲击试验温度", "System.Double", "60" });
  556. hs.Add(472, new string[] { "ID_", "PK_KEY", "System.String", "60" });
  557. hs.Add(473, new string[] { "PZORDWEIGTH", "小于等于2.5的量", "System.Double", "60" });
  558. hs.Add(474, new string[] { "OLADIV", "大卷交货", "System.String", "60" });
  559. hs.Add(475, new string[] { "NCSTION", "南昌港", "System.String", "60" });
  560. hs.Add(476, new string[] { "DYORD_WEI", "单一订单量", "System.Double", "60" });
  561. hs.Add(477, new string[] { "SND_CITY", "卸货地点所属城市", "System.String", "60" });
  562. hs.Add(478, new string[] { "ISGC", "是否公差要求", "System.String", "60" });
  563. hs.Add(479, new string[] { "MINTOLERANCE", "公差下限", "System.Double", "60" });
  564. hs.Add(480, new string[] { "PRICE", "结算单价", "System.Double", "60" });
  565. hs.Add(481, new string[] { "INVOICEPERSON", "开票人", "System.String", "60" });
  566. hs.Add(482, new string[] { "INVOICEDATE", "考票时间", "System.DateTime", "60" });
  567. hs.Add(483, new string[] { "INVOICENO", "发票号", "System.String", "60" });
  568. hs.Add(484, new string[] { "BALANCESTATUS", "结算状态", "System.String", "60" });
  569. hs.Add(485, new string[] { "SPET", "合同规格", "System.String", "60" });
  570. hs.Add(486, new string[] { "CLEARFLAG", "是否清库", "System.String", "60" });
  571. hs.Add(487, new string[] { "ISHEAT", "正火", "System.String", "60" });
  572. hs.Add(488, new string[] { "ISCHECKSCAR", "探伤", "System.String", "60" });
  573. hs.Add(489, new string[] { "ALLWEIGHT", "整车重量", "System.Double", "60" });
  574. hs.Add(490, new string[] { "VEHICLETYPE", "车皮类型", "System.String", "60" });
  575. hs.Add(491, new string[] { "TRANSMONEY", "运费", "System.Double", "60" });
  576. hs.Add(492, new string[] { "AFFIRMTIME", "确认时间", "System.DateTime", "60" });
  577. hs.Add(493, new string[] { "INVOICETRANSMONEY", "开票运费", "System.Double", "60" });
  578. hs.Add(494, new string[] { "STEELCODEKEY", "钢级(牌号)", "System.String", "60" });
  579. hs.Add(495, new string[] { "ISREPLAN", "是否冲减", "System.String", "60" });
  580. hs.Add(496, new string[] { "ADJUPRICEFILE", "调价库文件", "System.String", "60" });
  581. hs.Add(497, new string[] { "ISWATERCARRIAGE", "是否水运", "System.String", "60" });
  582. hs.Add(498, new string[] { "DOCKCODE", "水运到站", "System.String", "60" });
  583. hs.Add(499, new string[] { "BPRICE", "原价", "System.Double", "60" });
  584. hs.Add(500, new string[] { "INVOICENOZ", "发票号", "System.String", "60" });
  585. hs.Add(501, new string[] { "ZYFMONEY", "承运费", "System.Double", "60" });
  586. hs.Add(502, new string[] { "TRANSMONEYQC", "汽车运费", "System.Double", "60" });
  587. hs.Add(503, new string[] { "CARFMONEY", "汽车单价", "System.Double", "60" });
  588. hs.Add(504, new string[] { "FCRSON", "分车人", "System.String", "60" });
  589. hs.Add(505, new string[] { "FCTIME", "分车时间", "System.DateTime", "60" });
  590. hs.Add(506, new string[] { "FCPRICE", "分车价格", "System.Double", "60" });
  591. hs.Add(507, new string[] { "SUBTCT_NO", "异议编号", "System.String", "60" });
  592. hs.Add(508, new string[] { "OBJCT_NO", "异议编号", "System.String", "60" });
  593. hs.Add(509, new string[] { "PLID", "产线", "System.String", "60" });
  594. hs.Add(510, new string[] { "SUBTCT_TYP", "冲减类型", "System.String", "60" });
  595. hs.Add(511, new string[] { "SUBTCT_MOD", "冲减方式", "System.String", "60" });
  596. hs.Add(512, new string[] { "SUBTCT_MNY", "冲减金额", "System.Double", "60" });
  597. hs.Add(513, new string[] { "SUBTCT_DSP", "冲减描述", "System.String", "60" });
  598. hs.Add(514, new string[] { "DCL_ID", "申报人", "System.String", "60" });
  599. hs.Add(515, new string[] { "DCL_DTIME", "申报时间", "System.String", "60" });
  600. hs.Add(516, new string[] { "REV_ID", "审核人", "System.String", "60" });
  601. hs.Add(517, new string[] { "REV_DTIME", "审核时间", "System.String", "60" });
  602. hs.Add(518, new string[] { "REV_DSP", "审核说明", "System.String", "60" });
  603. hs.Add(519, new string[] { "SPLUS_MNY", "剩余资金", "System.Double", "60" });
  604. hs.Add(520, new string[] { "FL", "标识", "System.String", "60" });
  605. hs.Add(521, new string[] { "SUBTCT_TIME", "冲减时间", "System.String", "60" });
  606. hs.Add(522, new string[] { "CUST_SEQ", "扩展信息编码", "System.String", "60" });
  607. return hs;
  608. }
  609. private Hashtable GetTbColumnAndTypeAndCapAndLength()
  610. {
  611. return this.GetTbColumnAndTypeAndCapAndLength01();
  612. }
  613. }
  614. }