SettlementInfo.designer.cs 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251
  1. /******************************************************************************
  2. * 文件名称: InvokeHelper.cs
  3. * 文件说明: 调用助手,调用方法的封装
  4. * 当前版本: V1.0
  5. * 创建日期: 2022-04-12
  6. *
  7. * 2020-04-12: 增加 businessDLLInvoke 方法
  8. * 2020-04-12: 增加 writeLog 方法
  9. * 2020-04-14: 增加 businessDLLInvoke(重载) 方法
  10. * 2020-04-14: 增加 irisServiceInvoke 方法
  11. ******************************************************************************/
  12. namespace PTMedicalInsurance.Forms
  13. {
  14. partial class SettlementInfo
  15. {
  16. /// <summary>
  17. /// Required designer variable.
  18. /// </summary>
  19. private System.ComponentModel.IContainer components = null;
  20. /// <summary>
  21. /// Clean up any resources being used.
  22. /// </summary>
  23. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  24. protected override void Dispose(bool disposing)
  25. {
  26. if (disposing && (components != null))
  27. {
  28. components.Dispose();
  29. }
  30. base.Dispose(disposing);
  31. }
  32. #region Windows Form Designer generated code
  33. /// <summary>
  34. /// Required method for Designer support - do not modify
  35. /// the contents of this method with the code editor.
  36. /// </summary>
  37. private void InitializeComponent()
  38. {
  39. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  40. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
  41. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
  42. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
  43. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
  44. this.pnlBottom = new Sunny.UI.UIPanel();
  45. this.uiButton2 = new Sunny.UI.UIButton();
  46. this.uiButton1 = new Sunny.UI.UIButton();
  47. this.pnlClient = new Sunny.UI.UIPanel();
  48. this.gbSetlinfo = new Sunny.UI.UIGroupBox();
  49. this.pnlPayInfo = new Sunny.UI.UIPanel();
  50. this.tbCommercialReimamt = new Sunny.UI.UITextBox();
  51. this.uiLabel32 = new Sunny.UI.UILabel();
  52. this.tbCommercialRenflag = new Sunny.UI.UITextBox();
  53. this.uiLabel31 = new Sunny.UI.UILabel();
  54. this.tbAccountMutualAidAmount = new Sunny.UI.UITextBox();
  55. this.uiLabel22 = new Sunny.UI.UILabel();
  56. this.tbBalc = new Sunny.UI.UITextBox();
  57. this.tbHospitalPartAmount = new Sunny.UI.UITextBox();
  58. this.uiLabel23 = new Sunny.UI.UILabel();
  59. this.uiLabel24 = new Sunny.UI.UILabel();
  60. this.tbPsnCashPay = new Sunny.UI.UITextBox();
  61. this.uiLabel13 = new Sunny.UI.UILabel();
  62. this.tbPsnAccountPaySummat = new Sunny.UI.UITextBox();
  63. this.tbPsnSummat = new Sunny.UI.UITextBox();
  64. this.uiLabel14 = new Sunny.UI.UILabel();
  65. this.uiLabel15 = new Sunny.UI.UILabel();
  66. this.tbFundPaySummat = new Sunny.UI.UITextBox();
  67. this.uiLabel16 = new Sunny.UI.UILabel();
  68. this.tbOtherPay = new Sunny.UI.UITextBox();
  69. this.tbAssian = new Sunny.UI.UITextBox();
  70. this.uiLabel17 = new Sunny.UI.UILabel();
  71. this.uiLabel18 = new Sunny.UI.UILabel();
  72. this.tbWorkerLargeMedical = new Sunny.UI.UITextBox();
  73. this.uiLabel7 = new Sunny.UI.UILabel();
  74. this.tbHifmi_pay = new Sunny.UI.UITextBox();
  75. this.tbHifes_pay = new Sunny.UI.UITextBox();
  76. this.uiLabel8 = new Sunny.UI.UILabel();
  77. this.uiLabel9 = new Sunny.UI.UILabel();
  78. this.tbCvlserv_pay = new Sunny.UI.UITextBox();
  79. this.uiLabel10 = new Sunny.UI.UILabel();
  80. this.tbInsuFundPayRito = new Sunny.UI.UITextBox();
  81. this.tbInsuFundPay = new Sunny.UI.UITextBox();
  82. this.uiLabel11 = new Sunny.UI.UILabel();
  83. this.uiLabel12 = new Sunny.UI.UILabel();
  84. this.tbActualPayDeduLine = new Sunny.UI.UITextBox();
  85. this.uiLabel4 = new Sunny.UI.UILabel();
  86. this.tbInScopyAmount = new Sunny.UI.UITextBox();
  87. this.tbPreSelfPay = new Sunny.UI.UITextBox();
  88. this.uiLabel5 = new Sunny.UI.UILabel();
  89. this.uiLabel6 = new Sunny.UI.UILabel();
  90. this.tbOverLimitOwnPay = new Sunny.UI.UITextBox();
  91. this.uiLabel3 = new Sunny.UI.UILabel();
  92. this.tbFullOwnPay = new Sunny.UI.UITextBox();
  93. this.tbSumamt = new Sunny.UI.UITextBox();
  94. this.uiLabel2 = new Sunny.UI.UILabel();
  95. this.uiLabel1 = new Sunny.UI.UILabel();
  96. this.pnlSetlBaseInfo = new Sunny.UI.UIPanel();
  97. this.tbClearingType = new Sunny.UI.UITextBox();
  98. this.tbClearingWay = new Sunny.UI.UITextBox();
  99. this.uiLabel29 = new Sunny.UI.UILabel();
  100. this.uiLabel19 = new Sunny.UI.UILabel();
  101. this.tbPersonType = new Sunny.UI.UITextBox();
  102. this.tbInsuType = new Sunny.UI.UITextBox();
  103. this.uiLabel27 = new Sunny.UI.UILabel();
  104. this.uiLabel28 = new Sunny.UI.UILabel();
  105. this.tbPsnCertNO = new Sunny.UI.UITextBox();
  106. this.tbPsnCertType = new Sunny.UI.UITextBox();
  107. this.uiLabel25 = new Sunny.UI.UILabel();
  108. this.uiLabel26 = new Sunny.UI.UILabel();
  109. this.tbMedType = new Sunny.UI.UITextBox();
  110. this.tbAdmCertType = new Sunny.UI.UITextBox();
  111. this.uiLabel20 = new Sunny.UI.UILabel();
  112. this.uiLabel21 = new Sunny.UI.UILabel();
  113. this.uiLabel30 = new Sunny.UI.UILabel();
  114. this.gbSetldetail = new Sunny.UI.UIGroupBox();
  115. this.dgvSetlDetail = new Sunny.UI.UIDataGridView();
  116. this.pnlBottom.SuspendLayout();
  117. this.pnlClient.SuspendLayout();
  118. this.gbSetlinfo.SuspendLayout();
  119. this.pnlPayInfo.SuspendLayout();
  120. this.pnlSetlBaseInfo.SuspendLayout();
  121. this.gbSetldetail.SuspendLayout();
  122. ((System.ComponentModel.ISupportInitialize)(this.dgvSetlDetail)).BeginInit();
  123. this.SuspendLayout();
  124. //
  125. // pnlBottom
  126. //
  127. this.pnlBottom.Controls.Add(this.uiButton2);
  128. this.pnlBottom.Controls.Add(this.uiButton1);
  129. this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
  130. this.pnlBottom.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  131. this.pnlBottom.Location = new System.Drawing.Point(0, 544);
  132. this.pnlBottom.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  133. this.pnlBottom.MinimumSize = new System.Drawing.Size(1, 1);
  134. this.pnlBottom.Name = "pnlBottom";
  135. this.pnlBottom.Size = new System.Drawing.Size(988, 65);
  136. this.pnlBottom.TabIndex = 0;
  137. this.pnlBottom.Text = null;
  138. this.pnlBottom.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  139. this.pnlBottom.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  140. //
  141. // uiButton2
  142. //
  143. this.uiButton2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  144. this.uiButton2.Cursor = System.Windows.Forms.Cursors.Hand;
  145. this.uiButton2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  146. this.uiButton2.Location = new System.Drawing.Point(878, 16);
  147. this.uiButton2.MinimumSize = new System.Drawing.Size(1, 1);
  148. this.uiButton2.Name = "uiButton2";
  149. this.uiButton2.Size = new System.Drawing.Size(100, 38);
  150. this.uiButton2.TabIndex = 1;
  151. this.uiButton2.Text = "放弃";
  152. this.uiButton2.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  153. this.uiButton2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  154. this.uiButton2.Click += new System.EventHandler(this.uiButton2_Click);
  155. //
  156. // uiButton1
  157. //
  158. this.uiButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  159. this.uiButton1.Cursor = System.Windows.Forms.Cursors.Hand;
  160. this.uiButton1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  161. this.uiButton1.Location = new System.Drawing.Point(753, 16);
  162. this.uiButton1.MinimumSize = new System.Drawing.Size(1, 1);
  163. this.uiButton1.Name = "uiButton1";
  164. this.uiButton1.Size = new System.Drawing.Size(100, 38);
  165. this.uiButton1.TabIndex = 0;
  166. this.uiButton1.Text = "结算";
  167. this.uiButton1.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  168. this.uiButton1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  169. this.uiButton1.Click += new System.EventHandler(this.uiButton1_Click);
  170. //
  171. // pnlClient
  172. //
  173. this.pnlClient.Controls.Add(this.gbSetlinfo);
  174. this.pnlClient.Controls.Add(this.gbSetldetail);
  175. this.pnlClient.Dock = System.Windows.Forms.DockStyle.Fill;
  176. this.pnlClient.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  177. this.pnlClient.Location = new System.Drawing.Point(0, 0);
  178. this.pnlClient.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  179. this.pnlClient.MinimumSize = new System.Drawing.Size(1, 1);
  180. this.pnlClient.Name = "pnlClient";
  181. this.pnlClient.Size = new System.Drawing.Size(988, 544);
  182. this.pnlClient.TabIndex = 1;
  183. this.pnlClient.Text = null;
  184. this.pnlClient.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  185. this.pnlClient.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  186. //
  187. // gbSetlinfo
  188. //
  189. this.gbSetlinfo.Controls.Add(this.pnlPayInfo);
  190. this.gbSetlinfo.Controls.Add(this.pnlSetlBaseInfo);
  191. this.gbSetlinfo.Controls.Add(this.uiLabel30);
  192. this.gbSetlinfo.Dock = System.Windows.Forms.DockStyle.Fill;
  193. this.gbSetlinfo.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  194. this.gbSetlinfo.Location = new System.Drawing.Point(0, 0);
  195. this.gbSetlinfo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  196. this.gbSetlinfo.MinimumSize = new System.Drawing.Size(1, 1);
  197. this.gbSetlinfo.Name = "gbSetlinfo";
  198. this.gbSetlinfo.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  199. this.gbSetlinfo.Size = new System.Drawing.Size(988, 392);
  200. this.gbSetlinfo.TabIndex = 2;
  201. this.gbSetlinfo.Text = "结算信息";
  202. this.gbSetlinfo.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  203. this.gbSetlinfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  204. //
  205. // pnlPayInfo
  206. //
  207. this.pnlPayInfo.Controls.Add(this.tbCommercialReimamt);
  208. this.pnlPayInfo.Controls.Add(this.uiLabel32);
  209. this.pnlPayInfo.Controls.Add(this.tbCommercialRenflag);
  210. this.pnlPayInfo.Controls.Add(this.uiLabel31);
  211. this.pnlPayInfo.Controls.Add(this.tbAccountMutualAidAmount);
  212. this.pnlPayInfo.Controls.Add(this.uiLabel22);
  213. this.pnlPayInfo.Controls.Add(this.tbBalc);
  214. this.pnlPayInfo.Controls.Add(this.tbHospitalPartAmount);
  215. this.pnlPayInfo.Controls.Add(this.uiLabel23);
  216. this.pnlPayInfo.Controls.Add(this.uiLabel24);
  217. this.pnlPayInfo.Controls.Add(this.tbPsnCashPay);
  218. this.pnlPayInfo.Controls.Add(this.uiLabel13);
  219. this.pnlPayInfo.Controls.Add(this.tbPsnAccountPaySummat);
  220. this.pnlPayInfo.Controls.Add(this.tbPsnSummat);
  221. this.pnlPayInfo.Controls.Add(this.uiLabel14);
  222. this.pnlPayInfo.Controls.Add(this.uiLabel15);
  223. this.pnlPayInfo.Controls.Add(this.tbFundPaySummat);
  224. this.pnlPayInfo.Controls.Add(this.uiLabel16);
  225. this.pnlPayInfo.Controls.Add(this.tbOtherPay);
  226. this.pnlPayInfo.Controls.Add(this.tbAssian);
  227. this.pnlPayInfo.Controls.Add(this.uiLabel17);
  228. this.pnlPayInfo.Controls.Add(this.uiLabel18);
  229. this.pnlPayInfo.Controls.Add(this.tbWorkerLargeMedical);
  230. this.pnlPayInfo.Controls.Add(this.uiLabel7);
  231. this.pnlPayInfo.Controls.Add(this.tbHifmi_pay);
  232. this.pnlPayInfo.Controls.Add(this.tbHifes_pay);
  233. this.pnlPayInfo.Controls.Add(this.uiLabel8);
  234. this.pnlPayInfo.Controls.Add(this.uiLabel9);
  235. this.pnlPayInfo.Controls.Add(this.tbCvlserv_pay);
  236. this.pnlPayInfo.Controls.Add(this.uiLabel10);
  237. this.pnlPayInfo.Controls.Add(this.tbInsuFundPayRito);
  238. this.pnlPayInfo.Controls.Add(this.tbInsuFundPay);
  239. this.pnlPayInfo.Controls.Add(this.uiLabel11);
  240. this.pnlPayInfo.Controls.Add(this.uiLabel12);
  241. this.pnlPayInfo.Controls.Add(this.tbActualPayDeduLine);
  242. this.pnlPayInfo.Controls.Add(this.uiLabel4);
  243. this.pnlPayInfo.Controls.Add(this.tbInScopyAmount);
  244. this.pnlPayInfo.Controls.Add(this.tbPreSelfPay);
  245. this.pnlPayInfo.Controls.Add(this.uiLabel5);
  246. this.pnlPayInfo.Controls.Add(this.uiLabel6);
  247. this.pnlPayInfo.Controls.Add(this.tbOverLimitOwnPay);
  248. this.pnlPayInfo.Controls.Add(this.uiLabel3);
  249. this.pnlPayInfo.Controls.Add(this.tbFullOwnPay);
  250. this.pnlPayInfo.Controls.Add(this.tbSumamt);
  251. this.pnlPayInfo.Controls.Add(this.uiLabel2);
  252. this.pnlPayInfo.Controls.Add(this.uiLabel1);
  253. this.pnlPayInfo.Dock = System.Windows.Forms.DockStyle.Fill;
  254. this.pnlPayInfo.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  255. this.pnlPayInfo.Location = new System.Drawing.Point(0, 121);
  256. this.pnlPayInfo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  257. this.pnlPayInfo.MinimumSize = new System.Drawing.Size(1, 1);
  258. this.pnlPayInfo.Name = "pnlPayInfo";
  259. this.pnlPayInfo.Size = new System.Drawing.Size(988, 271);
  260. this.pnlPayInfo.TabIndex = 1;
  261. this.pnlPayInfo.Text = null;
  262. this.pnlPayInfo.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  263. this.pnlPayInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  264. //
  265. // tbCommercialReimamt
  266. //
  267. this.tbCommercialReimamt.Cursor = System.Windows.Forms.Cursors.IBeam;
  268. this.tbCommercialReimamt.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  269. this.tbCommercialReimamt.Location = new System.Drawing.Point(609, 224);
  270. this.tbCommercialReimamt.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  271. this.tbCommercialReimamt.MinimumSize = new System.Drawing.Size(1, 16);
  272. this.tbCommercialReimamt.Name = "tbCommercialReimamt";
  273. this.tbCommercialReimamt.ShowText = false;
  274. this.tbCommercialReimamt.Size = new System.Drawing.Size(100, 29);
  275. this.tbCommercialReimamt.TabIndex = 45;
  276. this.tbCommercialReimamt.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  277. this.tbCommercialReimamt.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  278. //
  279. // uiLabel32
  280. //
  281. this.uiLabel32.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  282. this.uiLabel32.Location = new System.Drawing.Point(501, 223);
  283. this.uiLabel32.Name = "uiLabel32";
  284. this.uiLabel32.Size = new System.Drawing.Size(100, 23);
  285. this.uiLabel32.TabIndex = 44;
  286. this.uiLabel32.Text = "商保支付金额";
  287. this.uiLabel32.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  288. this.uiLabel32.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  289. //
  290. // tbCommercialRenflag
  291. //
  292. this.tbCommercialRenflag.Cursor = System.Windows.Forms.Cursors.IBeam;
  293. this.tbCommercialRenflag.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  294. this.tbCommercialRenflag.Location = new System.Drawing.Point(361, 224);
  295. this.tbCommercialRenflag.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  296. this.tbCommercialRenflag.MinimumSize = new System.Drawing.Size(1, 16);
  297. this.tbCommercialRenflag.Name = "tbCommercialRenflag";
  298. this.tbCommercialRenflag.ShowText = false;
  299. this.tbCommercialRenflag.Size = new System.Drawing.Size(100, 29);
  300. this.tbCommercialRenflag.TabIndex = 43;
  301. this.tbCommercialRenflag.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  302. this.tbCommercialRenflag.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  303. //
  304. // uiLabel31
  305. //
  306. this.uiLabel31.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  307. this.uiLabel31.Location = new System.Drawing.Point(253, 223);
  308. this.uiLabel31.Name = "uiLabel31";
  309. this.uiLabel31.Size = new System.Drawing.Size(100, 23);
  310. this.uiLabel31.TabIndex = 42;
  311. this.uiLabel31.Text = "商保支付标志";
  312. this.uiLabel31.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  313. this.uiLabel31.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  314. //
  315. // tbAccountMutualAidAmount
  316. //
  317. this.tbAccountMutualAidAmount.Cursor = System.Windows.Forms.Cursors.IBeam;
  318. this.tbAccountMutualAidAmount.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  319. this.tbAccountMutualAidAmount.Location = new System.Drawing.Point(877, 105);
  320. this.tbAccountMutualAidAmount.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  321. this.tbAccountMutualAidAmount.MinimumSize = new System.Drawing.Size(1, 16);
  322. this.tbAccountMutualAidAmount.Name = "tbAccountMutualAidAmount";
  323. this.tbAccountMutualAidAmount.ShowText = false;
  324. this.tbAccountMutualAidAmount.Size = new System.Drawing.Size(100, 27);
  325. this.tbAccountMutualAidAmount.TabIndex = 41;
  326. this.tbAccountMutualAidAmount.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  327. this.tbAccountMutualAidAmount.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  328. //
  329. // uiLabel22
  330. //
  331. this.uiLabel22.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  332. this.uiLabel22.Location = new System.Drawing.Point(730, 107);
  333. this.uiLabel22.Name = "uiLabel22";
  334. this.uiLabel22.Size = new System.Drawing.Size(112, 23);
  335. this.uiLabel22.TabIndex = 40;
  336. this.uiLabel22.Text = "个人账户共济";
  337. this.uiLabel22.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  338. this.uiLabel22.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  339. //
  340. // tbBalc
  341. //
  342. this.tbBalc.Cursor = System.Windows.Forms.Cursors.IBeam;
  343. this.tbBalc.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  344. this.tbBalc.Location = new System.Drawing.Point(877, 62);
  345. this.tbBalc.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  346. this.tbBalc.MinimumSize = new System.Drawing.Size(1, 16);
  347. this.tbBalc.Name = "tbBalc";
  348. this.tbBalc.ShowText = false;
  349. this.tbBalc.Size = new System.Drawing.Size(100, 27);
  350. this.tbBalc.TabIndex = 39;
  351. this.tbBalc.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  352. this.tbBalc.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  353. //
  354. // tbHospitalPartAmount
  355. //
  356. this.tbHospitalPartAmount.Cursor = System.Windows.Forms.Cursors.IBeam;
  357. this.tbHospitalPartAmount.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  358. this.tbHospitalPartAmount.Location = new System.Drawing.Point(877, 19);
  359. this.tbHospitalPartAmount.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  360. this.tbHospitalPartAmount.MinimumSize = new System.Drawing.Size(1, 16);
  361. this.tbHospitalPartAmount.Name = "tbHospitalPartAmount";
  362. this.tbHospitalPartAmount.ShowText = false;
  363. this.tbHospitalPartAmount.Size = new System.Drawing.Size(100, 27);
  364. this.tbHospitalPartAmount.TabIndex = 38;
  365. this.tbHospitalPartAmount.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  366. this.tbHospitalPartAmount.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  367. //
  368. // uiLabel23
  369. //
  370. this.uiLabel23.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  371. this.uiLabel23.Location = new System.Drawing.Point(730, 65);
  372. this.uiLabel23.Name = "uiLabel23";
  373. this.uiLabel23.Size = new System.Drawing.Size(112, 23);
  374. this.uiLabel23.TabIndex = 37;
  375. this.uiLabel23.Text = "医保账户余额";
  376. this.uiLabel23.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  377. this.uiLabel23.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  378. //
  379. // uiLabel24
  380. //
  381. this.uiLabel24.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  382. this.uiLabel24.Location = new System.Drawing.Point(730, 23);
  383. this.uiLabel24.Name = "uiLabel24";
  384. this.uiLabel24.Size = new System.Drawing.Size(112, 23);
  385. this.uiLabel24.TabIndex = 36;
  386. this.uiLabel24.Text = "医院负担金额";
  387. this.uiLabel24.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  388. this.uiLabel24.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  389. //
  390. // tbPsnCashPay
  391. //
  392. this.tbPsnCashPay.Cursor = System.Windows.Forms.Cursors.IBeam;
  393. this.tbPsnCashPay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  394. this.tbPsnCashPay.Location = new System.Drawing.Point(609, 185);
  395. this.tbPsnCashPay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  396. this.tbPsnCashPay.MinimumSize = new System.Drawing.Size(1, 16);
  397. this.tbPsnCashPay.Name = "tbPsnCashPay";
  398. this.tbPsnCashPay.ShowText = false;
  399. this.tbPsnCashPay.Size = new System.Drawing.Size(100, 29);
  400. this.tbPsnCashPay.TabIndex = 35;
  401. this.tbPsnCashPay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  402. this.tbPsnCashPay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  403. //
  404. // uiLabel13
  405. //
  406. this.uiLabel13.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  407. this.uiLabel13.Location = new System.Drawing.Point(502, 181);
  408. this.uiLabel13.Name = "uiLabel13";
  409. this.uiLabel13.Size = new System.Drawing.Size(100, 23);
  410. this.uiLabel13.TabIndex = 34;
  411. this.uiLabel13.Text = "个人现金支付";
  412. this.uiLabel13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  413. this.uiLabel13.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  414. //
  415. // tbPsnAccountPaySummat
  416. //
  417. this.tbPsnAccountPaySummat.Cursor = System.Windows.Forms.Cursors.IBeam;
  418. this.tbPsnAccountPaySummat.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  419. this.tbPsnAccountPaySummat.Location = new System.Drawing.Point(609, 144);
  420. this.tbPsnAccountPaySummat.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  421. this.tbPsnAccountPaySummat.MinimumSize = new System.Drawing.Size(1, 16);
  422. this.tbPsnAccountPaySummat.Name = "tbPsnAccountPaySummat";
  423. this.tbPsnAccountPaySummat.ShowText = false;
  424. this.tbPsnAccountPaySummat.Size = new System.Drawing.Size(100, 29);
  425. this.tbPsnAccountPaySummat.TabIndex = 33;
  426. this.tbPsnAccountPaySummat.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  427. this.tbPsnAccountPaySummat.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  428. //
  429. // tbPsnSummat
  430. //
  431. this.tbPsnSummat.Cursor = System.Windows.Forms.Cursors.IBeam;
  432. this.tbPsnSummat.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  433. this.tbPsnSummat.Location = new System.Drawing.Point(609, 103);
  434. this.tbPsnSummat.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  435. this.tbPsnSummat.MinimumSize = new System.Drawing.Size(1, 16);
  436. this.tbPsnSummat.Name = "tbPsnSummat";
  437. this.tbPsnSummat.ShowText = false;
  438. this.tbPsnSummat.Size = new System.Drawing.Size(100, 29);
  439. this.tbPsnSummat.TabIndex = 32;
  440. this.tbPsnSummat.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  441. this.tbPsnSummat.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  442. //
  443. // uiLabel14
  444. //
  445. this.uiLabel14.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  446. this.uiLabel14.Location = new System.Drawing.Point(502, 142);
  447. this.uiLabel14.Name = "uiLabel14";
  448. this.uiLabel14.Size = new System.Drawing.Size(100, 23);
  449. this.uiLabel14.TabIndex = 31;
  450. this.uiLabel14.Text = "个人账户支付";
  451. this.uiLabel14.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  452. this.uiLabel14.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  453. //
  454. // uiLabel15
  455. //
  456. this.uiLabel15.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  457. this.uiLabel15.Location = new System.Drawing.Point(502, 103);
  458. this.uiLabel15.Name = "uiLabel15";
  459. this.uiLabel15.Size = new System.Drawing.Size(100, 23);
  460. this.uiLabel15.TabIndex = 30;
  461. this.uiLabel15.Text = "个人负担总金额";
  462. this.uiLabel15.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  463. this.uiLabel15.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  464. //
  465. // tbFundPaySummat
  466. //
  467. this.tbFundPaySummat.Cursor = System.Windows.Forms.Cursors.IBeam;
  468. this.tbFundPaySummat.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  469. this.tbFundPaySummat.Location = new System.Drawing.Point(609, 62);
  470. this.tbFundPaySummat.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  471. this.tbFundPaySummat.MinimumSize = new System.Drawing.Size(1, 16);
  472. this.tbFundPaySummat.Name = "tbFundPaySummat";
  473. this.tbFundPaySummat.ShowText = false;
  474. this.tbFundPaySummat.Size = new System.Drawing.Size(100, 29);
  475. this.tbFundPaySummat.TabIndex = 29;
  476. this.tbFundPaySummat.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  477. this.tbFundPaySummat.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  478. //
  479. // uiLabel16
  480. //
  481. this.uiLabel16.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  482. this.uiLabel16.Location = new System.Drawing.Point(502, 64);
  483. this.uiLabel16.Name = "uiLabel16";
  484. this.uiLabel16.Size = new System.Drawing.Size(100, 23);
  485. this.uiLabel16.TabIndex = 28;
  486. this.uiLabel16.Text = "基金支付总额";
  487. this.uiLabel16.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  488. this.uiLabel16.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  489. //
  490. // tbOtherPay
  491. //
  492. this.tbOtherPay.Cursor = System.Windows.Forms.Cursors.IBeam;
  493. this.tbOtherPay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  494. this.tbOtherPay.Location = new System.Drawing.Point(128, 183);
  495. this.tbOtherPay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  496. this.tbOtherPay.MinimumSize = new System.Drawing.Size(1, 16);
  497. this.tbOtherPay.Name = "tbOtherPay";
  498. this.tbOtherPay.ShowText = false;
  499. this.tbOtherPay.Size = new System.Drawing.Size(100, 29);
  500. this.tbOtherPay.TabIndex = 27;
  501. this.tbOtherPay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  502. this.tbOtherPay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  503. //
  504. // tbAssian
  505. //
  506. this.tbAssian.Cursor = System.Windows.Forms.Cursors.IBeam;
  507. this.tbAssian.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  508. this.tbAssian.Location = new System.Drawing.Point(609, 19);
  509. this.tbAssian.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  510. this.tbAssian.MinimumSize = new System.Drawing.Size(1, 16);
  511. this.tbAssian.Name = "tbAssian";
  512. this.tbAssian.ShowText = false;
  513. this.tbAssian.Size = new System.Drawing.Size(100, 29);
  514. this.tbAssian.TabIndex = 26;
  515. this.tbAssian.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  516. this.tbAssian.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  517. //
  518. // uiLabel17
  519. //
  520. this.uiLabel17.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  521. this.uiLabel17.Location = new System.Drawing.Point(21, 187);
  522. this.uiLabel17.Name = "uiLabel17";
  523. this.uiLabel17.Size = new System.Drawing.Size(100, 23);
  524. this.uiLabel17.TabIndex = 25;
  525. this.uiLabel17.Text = "其他支出";
  526. this.uiLabel17.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  527. this.uiLabel17.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  528. //
  529. // uiLabel18
  530. //
  531. this.uiLabel18.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  532. this.uiLabel18.Location = new System.Drawing.Point(502, 25);
  533. this.uiLabel18.Name = "uiLabel18";
  534. this.uiLabel18.Size = new System.Drawing.Size(100, 23);
  535. this.uiLabel18.TabIndex = 24;
  536. this.uiLabel18.Text = "医疗救助";
  537. this.uiLabel18.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  538. this.uiLabel18.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  539. //
  540. // tbWorkerLargeMedical
  541. //
  542. this.tbWorkerLargeMedical.Cursor = System.Windows.Forms.Cursors.IBeam;
  543. this.tbWorkerLargeMedical.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  544. this.tbWorkerLargeMedical.Location = new System.Drawing.Point(361, 185);
  545. this.tbWorkerLargeMedical.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  546. this.tbWorkerLargeMedical.MinimumSize = new System.Drawing.Size(1, 16);
  547. this.tbWorkerLargeMedical.Name = "tbWorkerLargeMedical";
  548. this.tbWorkerLargeMedical.ShowText = false;
  549. this.tbWorkerLargeMedical.Size = new System.Drawing.Size(100, 29);
  550. this.tbWorkerLargeMedical.TabIndex = 23;
  551. this.tbWorkerLargeMedical.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  552. this.tbWorkerLargeMedical.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  553. //
  554. // uiLabel7
  555. //
  556. this.uiLabel7.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  557. this.uiLabel7.Location = new System.Drawing.Point(253, 181);
  558. this.uiLabel7.Name = "uiLabel7";
  559. this.uiLabel7.Size = new System.Drawing.Size(100, 23);
  560. this.uiLabel7.TabIndex = 22;
  561. this.uiLabel7.Text = "职工大额医疗";
  562. this.uiLabel7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  563. this.uiLabel7.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  564. //
  565. // tbHifmi_pay
  566. //
  567. this.tbHifmi_pay.Cursor = System.Windows.Forms.Cursors.IBeam;
  568. this.tbHifmi_pay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  569. this.tbHifmi_pay.Location = new System.Drawing.Point(361, 144);
  570. this.tbHifmi_pay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  571. this.tbHifmi_pay.MinimumSize = new System.Drawing.Size(1, 16);
  572. this.tbHifmi_pay.Name = "tbHifmi_pay";
  573. this.tbHifmi_pay.ShowText = false;
  574. this.tbHifmi_pay.Size = new System.Drawing.Size(100, 29);
  575. this.tbHifmi_pay.TabIndex = 21;
  576. this.tbHifmi_pay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  577. this.tbHifmi_pay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  578. //
  579. // tbHifes_pay
  580. //
  581. this.tbHifes_pay.Cursor = System.Windows.Forms.Cursors.IBeam;
  582. this.tbHifes_pay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  583. this.tbHifes_pay.Location = new System.Drawing.Point(361, 103);
  584. this.tbHifes_pay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  585. this.tbHifes_pay.MinimumSize = new System.Drawing.Size(1, 16);
  586. this.tbHifes_pay.Name = "tbHifes_pay";
  587. this.tbHifes_pay.ShowText = false;
  588. this.tbHifes_pay.Size = new System.Drawing.Size(100, 29);
  589. this.tbHifes_pay.TabIndex = 20;
  590. this.tbHifes_pay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  591. this.tbHifes_pay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  592. //
  593. // uiLabel8
  594. //
  595. this.uiLabel8.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  596. this.uiLabel8.Location = new System.Drawing.Point(253, 142);
  597. this.uiLabel8.Name = "uiLabel8";
  598. this.uiLabel8.Size = new System.Drawing.Size(100, 23);
  599. this.uiLabel8.TabIndex = 19;
  600. this.uiLabel8.Text = "居民大病保险";
  601. this.uiLabel8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  602. this.uiLabel8.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  603. //
  604. // uiLabel9
  605. //
  606. this.uiLabel9.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  607. this.uiLabel9.Location = new System.Drawing.Point(253, 103);
  608. this.uiLabel9.Name = "uiLabel9";
  609. this.uiLabel9.Size = new System.Drawing.Size(100, 23);
  610. this.uiLabel9.TabIndex = 18;
  611. this.uiLabel9.Text = "企业补充医疗";
  612. this.uiLabel9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  613. this.uiLabel9.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  614. //
  615. // tbCvlserv_pay
  616. //
  617. this.tbCvlserv_pay.Cursor = System.Windows.Forms.Cursors.IBeam;
  618. this.tbCvlserv_pay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  619. this.tbCvlserv_pay.Location = new System.Drawing.Point(361, 62);
  620. this.tbCvlserv_pay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  621. this.tbCvlserv_pay.MinimumSize = new System.Drawing.Size(1, 16);
  622. this.tbCvlserv_pay.Name = "tbCvlserv_pay";
  623. this.tbCvlserv_pay.ShowText = false;
  624. this.tbCvlserv_pay.Size = new System.Drawing.Size(100, 29);
  625. this.tbCvlserv_pay.TabIndex = 17;
  626. this.tbCvlserv_pay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  627. this.tbCvlserv_pay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  628. //
  629. // uiLabel10
  630. //
  631. this.uiLabel10.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  632. this.uiLabel10.Location = new System.Drawing.Point(253, 64);
  633. this.uiLabel10.Name = "uiLabel10";
  634. this.uiLabel10.Size = new System.Drawing.Size(100, 23);
  635. this.uiLabel10.TabIndex = 16;
  636. this.uiLabel10.Text = "公务员医疗补助";
  637. this.uiLabel10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  638. this.uiLabel10.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  639. //
  640. // tbInsuFundPayRito
  641. //
  642. this.tbInsuFundPayRito.Cursor = System.Windows.Forms.Cursors.IBeam;
  643. this.tbInsuFundPayRito.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  644. this.tbInsuFundPayRito.Location = new System.Drawing.Point(877, 148);
  645. this.tbInsuFundPayRito.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  646. this.tbInsuFundPayRito.MinimumSize = new System.Drawing.Size(1, 16);
  647. this.tbInsuFundPayRito.Name = "tbInsuFundPayRito";
  648. this.tbInsuFundPayRito.ShowText = false;
  649. this.tbInsuFundPayRito.Size = new System.Drawing.Size(100, 27);
  650. this.tbInsuFundPayRito.TabIndex = 15;
  651. this.tbInsuFundPayRito.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  652. this.tbInsuFundPayRito.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  653. //
  654. // tbInsuFundPay
  655. //
  656. this.tbInsuFundPay.Cursor = System.Windows.Forms.Cursors.IBeam;
  657. this.tbInsuFundPay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  658. this.tbInsuFundPay.Location = new System.Drawing.Point(361, 19);
  659. this.tbInsuFundPay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  660. this.tbInsuFundPay.MinimumSize = new System.Drawing.Size(1, 16);
  661. this.tbInsuFundPay.Name = "tbInsuFundPay";
  662. this.tbInsuFundPay.ShowText = false;
  663. this.tbInsuFundPay.Size = new System.Drawing.Size(100, 29);
  664. this.tbInsuFundPay.TabIndex = 14;
  665. this.tbInsuFundPay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  666. this.tbInsuFundPay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  667. //
  668. // uiLabel11
  669. //
  670. this.uiLabel11.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  671. this.uiLabel11.Location = new System.Drawing.Point(730, 149);
  672. this.uiLabel11.Name = "uiLabel11";
  673. this.uiLabel11.Size = new System.Drawing.Size(146, 23);
  674. this.uiLabel11.TabIndex = 13;
  675. this.uiLabel11.Text = "统筹基金支付比例";
  676. this.uiLabel11.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  677. this.uiLabel11.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  678. //
  679. // uiLabel12
  680. //
  681. this.uiLabel12.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  682. this.uiLabel12.Location = new System.Drawing.Point(253, 25);
  683. this.uiLabel12.Name = "uiLabel12";
  684. this.uiLabel12.Size = new System.Drawing.Size(100, 23);
  685. this.uiLabel12.TabIndex = 12;
  686. this.uiLabel12.Text = "统筹基金支出";
  687. this.uiLabel12.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  688. this.uiLabel12.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  689. //
  690. // tbActualPayDeduLine
  691. //
  692. this.tbActualPayDeduLine.Cursor = System.Windows.Forms.Cursors.IBeam;
  693. this.tbActualPayDeduLine.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  694. this.tbActualPayDeduLine.Location = new System.Drawing.Point(128, 224);
  695. this.tbActualPayDeduLine.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  696. this.tbActualPayDeduLine.MinimumSize = new System.Drawing.Size(1, 16);
  697. this.tbActualPayDeduLine.Name = "tbActualPayDeduLine";
  698. this.tbActualPayDeduLine.ShowText = false;
  699. this.tbActualPayDeduLine.Size = new System.Drawing.Size(100, 29);
  700. this.tbActualPayDeduLine.TabIndex = 11;
  701. this.tbActualPayDeduLine.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  702. this.tbActualPayDeduLine.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  703. //
  704. // uiLabel4
  705. //
  706. this.uiLabel4.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  707. this.uiLabel4.Location = new System.Drawing.Point(21, 223);
  708. this.uiLabel4.Name = "uiLabel4";
  709. this.uiLabel4.Size = new System.Drawing.Size(100, 23);
  710. this.uiLabel4.TabIndex = 10;
  711. this.uiLabel4.Text = "实际支付起付线";
  712. this.uiLabel4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  713. this.uiLabel4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  714. //
  715. // tbInScopyAmount
  716. //
  717. this.tbInScopyAmount.Cursor = System.Windows.Forms.Cursors.IBeam;
  718. this.tbInScopyAmount.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  719. this.tbInScopyAmount.Location = new System.Drawing.Point(877, 191);
  720. this.tbInScopyAmount.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  721. this.tbInScopyAmount.MinimumSize = new System.Drawing.Size(1, 16);
  722. this.tbInScopyAmount.Name = "tbInScopyAmount";
  723. this.tbInScopyAmount.ShowText = false;
  724. this.tbInScopyAmount.Size = new System.Drawing.Size(100, 27);
  725. this.tbInScopyAmount.TabIndex = 9;
  726. this.tbInScopyAmount.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  727. this.tbInScopyAmount.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  728. //
  729. // tbPreSelfPay
  730. //
  731. this.tbPreSelfPay.Cursor = System.Windows.Forms.Cursors.IBeam;
  732. this.tbPreSelfPay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  733. this.tbPreSelfPay.Location = new System.Drawing.Point(128, 142);
  734. this.tbPreSelfPay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  735. this.tbPreSelfPay.MinimumSize = new System.Drawing.Size(1, 16);
  736. this.tbPreSelfPay.Name = "tbPreSelfPay";
  737. this.tbPreSelfPay.ShowText = false;
  738. this.tbPreSelfPay.Size = new System.Drawing.Size(100, 29);
  739. this.tbPreSelfPay.TabIndex = 8;
  740. this.tbPreSelfPay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  741. this.tbPreSelfPay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  742. //
  743. // uiLabel5
  744. //
  745. this.uiLabel5.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  746. this.uiLabel5.Location = new System.Drawing.Point(730, 191);
  747. this.uiLabel5.Name = "uiLabel5";
  748. this.uiLabel5.Size = new System.Drawing.Size(146, 23);
  749. this.uiLabel5.TabIndex = 7;
  750. this.uiLabel5.Text = "符合政策范围金额";
  751. this.uiLabel5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  752. this.uiLabel5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  753. //
  754. // uiLabel6
  755. //
  756. this.uiLabel6.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  757. this.uiLabel6.Location = new System.Drawing.Point(21, 143);
  758. this.uiLabel6.Name = "uiLabel6";
  759. this.uiLabel6.Size = new System.Drawing.Size(100, 23);
  760. this.uiLabel6.TabIndex = 6;
  761. this.uiLabel6.Text = "先行自付金额";
  762. this.uiLabel6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  763. this.uiLabel6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  764. //
  765. // tbOverLimitOwnPay
  766. //
  767. this.tbOverLimitOwnPay.Cursor = System.Windows.Forms.Cursors.IBeam;
  768. this.tbOverLimitOwnPay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  769. this.tbOverLimitOwnPay.Location = new System.Drawing.Point(128, 101);
  770. this.tbOverLimitOwnPay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  771. this.tbOverLimitOwnPay.MinimumSize = new System.Drawing.Size(1, 16);
  772. this.tbOverLimitOwnPay.Name = "tbOverLimitOwnPay";
  773. this.tbOverLimitOwnPay.ShowText = false;
  774. this.tbOverLimitOwnPay.Size = new System.Drawing.Size(100, 29);
  775. this.tbOverLimitOwnPay.TabIndex = 5;
  776. this.tbOverLimitOwnPay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  777. this.tbOverLimitOwnPay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  778. //
  779. // uiLabel3
  780. //
  781. this.uiLabel3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  782. this.uiLabel3.Location = new System.Drawing.Point(21, 103);
  783. this.uiLabel3.Name = "uiLabel3";
  784. this.uiLabel3.Size = new System.Drawing.Size(100, 23);
  785. this.uiLabel3.TabIndex = 4;
  786. this.uiLabel3.Text = "超限价自费费用";
  787. this.uiLabel3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  788. this.uiLabel3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  789. //
  790. // tbFullOwnPay
  791. //
  792. this.tbFullOwnPay.Cursor = System.Windows.Forms.Cursors.IBeam;
  793. this.tbFullOwnPay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  794. this.tbFullOwnPay.Location = new System.Drawing.Point(128, 60);
  795. this.tbFullOwnPay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  796. this.tbFullOwnPay.MinimumSize = new System.Drawing.Size(1, 16);
  797. this.tbFullOwnPay.Name = "tbFullOwnPay";
  798. this.tbFullOwnPay.ShowText = false;
  799. this.tbFullOwnPay.Size = new System.Drawing.Size(100, 29);
  800. this.tbFullOwnPay.TabIndex = 3;
  801. this.tbFullOwnPay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  802. this.tbFullOwnPay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  803. //
  804. // tbSumamt
  805. //
  806. this.tbSumamt.Cursor = System.Windows.Forms.Cursors.IBeam;
  807. this.tbSumamt.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  808. this.tbSumamt.Location = new System.Drawing.Point(128, 19);
  809. this.tbSumamt.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  810. this.tbSumamt.MinimumSize = new System.Drawing.Size(1, 16);
  811. this.tbSumamt.Name = "tbSumamt";
  812. this.tbSumamt.ShowText = false;
  813. this.tbSumamt.Size = new System.Drawing.Size(100, 29);
  814. this.tbSumamt.TabIndex = 2;
  815. this.tbSumamt.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  816. this.tbSumamt.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  817. //
  818. // uiLabel2
  819. //
  820. this.uiLabel2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  821. this.uiLabel2.Location = new System.Drawing.Point(21, 63);
  822. this.uiLabel2.Name = "uiLabel2";
  823. this.uiLabel2.Size = new System.Drawing.Size(100, 23);
  824. this.uiLabel2.TabIndex = 1;
  825. this.uiLabel2.Text = "全自费金额";
  826. this.uiLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  827. this.uiLabel2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  828. //
  829. // uiLabel1
  830. //
  831. this.uiLabel1.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  832. this.uiLabel1.Location = new System.Drawing.Point(21, 23);
  833. this.uiLabel1.Name = "uiLabel1";
  834. this.uiLabel1.Size = new System.Drawing.Size(100, 23);
  835. this.uiLabel1.TabIndex = 0;
  836. this.uiLabel1.Text = "医疗费总额";
  837. this.uiLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  838. this.uiLabel1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  839. //
  840. // pnlSetlBaseInfo
  841. //
  842. this.pnlSetlBaseInfo.Controls.Add(this.tbClearingType);
  843. this.pnlSetlBaseInfo.Controls.Add(this.tbClearingWay);
  844. this.pnlSetlBaseInfo.Controls.Add(this.uiLabel29);
  845. this.pnlSetlBaseInfo.Controls.Add(this.uiLabel19);
  846. this.pnlSetlBaseInfo.Controls.Add(this.tbPersonType);
  847. this.pnlSetlBaseInfo.Controls.Add(this.tbInsuType);
  848. this.pnlSetlBaseInfo.Controls.Add(this.uiLabel27);
  849. this.pnlSetlBaseInfo.Controls.Add(this.uiLabel28);
  850. this.pnlSetlBaseInfo.Controls.Add(this.tbPsnCertNO);
  851. this.pnlSetlBaseInfo.Controls.Add(this.tbPsnCertType);
  852. this.pnlSetlBaseInfo.Controls.Add(this.uiLabel25);
  853. this.pnlSetlBaseInfo.Controls.Add(this.uiLabel26);
  854. this.pnlSetlBaseInfo.Controls.Add(this.tbMedType);
  855. this.pnlSetlBaseInfo.Controls.Add(this.tbAdmCertType);
  856. this.pnlSetlBaseInfo.Controls.Add(this.uiLabel20);
  857. this.pnlSetlBaseInfo.Controls.Add(this.uiLabel21);
  858. this.pnlSetlBaseInfo.Dock = System.Windows.Forms.DockStyle.Top;
  859. this.pnlSetlBaseInfo.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  860. this.pnlSetlBaseInfo.Location = new System.Drawing.Point(0, 32);
  861. this.pnlSetlBaseInfo.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  862. this.pnlSetlBaseInfo.MinimumSize = new System.Drawing.Size(1, 1);
  863. this.pnlSetlBaseInfo.Name = "pnlSetlBaseInfo";
  864. this.pnlSetlBaseInfo.Size = new System.Drawing.Size(988, 89);
  865. this.pnlSetlBaseInfo.TabIndex = 0;
  866. this.pnlSetlBaseInfo.Text = null;
  867. this.pnlSetlBaseInfo.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  868. this.pnlSetlBaseInfo.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  869. //
  870. // tbClearingType
  871. //
  872. this.tbClearingType.Cursor = System.Windows.Forms.Cursors.IBeam;
  873. this.tbClearingType.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  874. this.tbClearingType.Location = new System.Drawing.Point(877, 50);
  875. this.tbClearingType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  876. this.tbClearingType.MinimumSize = new System.Drawing.Size(1, 16);
  877. this.tbClearingType.Name = "tbClearingType";
  878. this.tbClearingType.ShowText = false;
  879. this.tbClearingType.Size = new System.Drawing.Size(100, 27);
  880. this.tbClearingType.TabIndex = 61;
  881. this.tbClearingType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  882. this.tbClearingType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  883. //
  884. // tbClearingWay
  885. //
  886. this.tbClearingWay.Cursor = System.Windows.Forms.Cursors.IBeam;
  887. this.tbClearingWay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  888. this.tbClearingWay.Location = new System.Drawing.Point(877, 13);
  889. this.tbClearingWay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  890. this.tbClearingWay.MinimumSize = new System.Drawing.Size(1, 16);
  891. this.tbClearingWay.Name = "tbClearingWay";
  892. this.tbClearingWay.ShowText = false;
  893. this.tbClearingWay.Size = new System.Drawing.Size(100, 27);
  894. this.tbClearingWay.TabIndex = 60;
  895. this.tbClearingWay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  896. this.tbClearingWay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  897. //
  898. // uiLabel29
  899. //
  900. this.uiLabel29.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  901. this.uiLabel29.Location = new System.Drawing.Point(785, 49);
  902. this.uiLabel29.Name = "uiLabel29";
  903. this.uiLabel29.Size = new System.Drawing.Size(81, 23);
  904. this.uiLabel29.TabIndex = 62;
  905. this.uiLabel29.Text = "清算类别";
  906. this.uiLabel29.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  907. this.uiLabel29.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  908. //
  909. // uiLabel19
  910. //
  911. this.uiLabel19.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  912. this.uiLabel19.Location = new System.Drawing.Point(785, 14);
  913. this.uiLabel19.Name = "uiLabel19";
  914. this.uiLabel19.Size = new System.Drawing.Size(81, 23);
  915. this.uiLabel19.TabIndex = 60;
  916. this.uiLabel19.Text = "清算方式";
  917. this.uiLabel19.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  918. this.uiLabel19.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  919. //
  920. // tbPersonType
  921. //
  922. this.tbPersonType.Cursor = System.Windows.Forms.Cursors.IBeam;
  923. this.tbPersonType.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  924. this.tbPersonType.Location = new System.Drawing.Point(650, 50);
  925. this.tbPersonType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  926. this.tbPersonType.MinimumSize = new System.Drawing.Size(1, 16);
  927. this.tbPersonType.Name = "tbPersonType";
  928. this.tbPersonType.ShowText = false;
  929. this.tbPersonType.Size = new System.Drawing.Size(100, 25);
  930. this.tbPersonType.TabIndex = 57;
  931. this.tbPersonType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  932. this.tbPersonType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  933. //
  934. // tbInsuType
  935. //
  936. this.tbInsuType.Cursor = System.Windows.Forms.Cursors.IBeam;
  937. this.tbInsuType.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  938. this.tbInsuType.Location = new System.Drawing.Point(650, 12);
  939. this.tbInsuType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  940. this.tbInsuType.MinimumSize = new System.Drawing.Size(1, 16);
  941. this.tbInsuType.Name = "tbInsuType";
  942. this.tbInsuType.ShowText = false;
  943. this.tbInsuType.Size = new System.Drawing.Size(100, 25);
  944. this.tbInsuType.TabIndex = 56;
  945. this.tbInsuType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  946. this.tbInsuType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  947. //
  948. // uiLabel27
  949. //
  950. this.uiLabel27.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  951. this.uiLabel27.Location = new System.Drawing.Point(562, 49);
  952. this.uiLabel27.Name = "uiLabel27";
  953. this.uiLabel27.Size = new System.Drawing.Size(81, 23);
  954. this.uiLabel27.TabIndex = 55;
  955. this.uiLabel27.Text = "人员类别";
  956. this.uiLabel27.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  957. this.uiLabel27.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  958. //
  959. // uiLabel28
  960. //
  961. this.uiLabel28.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  962. this.uiLabel28.Location = new System.Drawing.Point(562, 14);
  963. this.uiLabel28.Name = "uiLabel28";
  964. this.uiLabel28.Size = new System.Drawing.Size(81, 23);
  965. this.uiLabel28.TabIndex = 54;
  966. this.uiLabel28.Text = "险种类型";
  967. this.uiLabel28.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  968. this.uiLabel28.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  969. //
  970. // tbPsnCertNO
  971. //
  972. this.tbPsnCertNO.Cursor = System.Windows.Forms.Cursors.IBeam;
  973. this.tbPsnCertNO.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  974. this.tbPsnCertNO.Location = new System.Drawing.Point(330, 50);
  975. this.tbPsnCertNO.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  976. this.tbPsnCertNO.MinimumSize = new System.Drawing.Size(1, 16);
  977. this.tbPsnCertNO.Name = "tbPsnCertNO";
  978. this.tbPsnCertNO.ShowText = false;
  979. this.tbPsnCertNO.Size = new System.Drawing.Size(192, 25);
  980. this.tbPsnCertNO.TabIndex = 53;
  981. this.tbPsnCertNO.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  982. this.tbPsnCertNO.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  983. //
  984. // tbPsnCertType
  985. //
  986. this.tbPsnCertType.Cursor = System.Windows.Forms.Cursors.IBeam;
  987. this.tbPsnCertType.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  988. this.tbPsnCertType.Location = new System.Drawing.Point(331, 12);
  989. this.tbPsnCertType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  990. this.tbPsnCertType.MinimumSize = new System.Drawing.Size(1, 16);
  991. this.tbPsnCertType.Name = "tbPsnCertType";
  992. this.tbPsnCertType.ShowText = false;
  993. this.tbPsnCertType.Size = new System.Drawing.Size(191, 27);
  994. this.tbPsnCertType.TabIndex = 52;
  995. this.tbPsnCertType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  996. this.tbPsnCertType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  997. //
  998. // uiLabel25
  999. //
  1000. this.uiLabel25.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1001. this.uiLabel25.Location = new System.Drawing.Point(244, 49);
  1002. this.uiLabel25.Name = "uiLabel25";
  1003. this.uiLabel25.Size = new System.Drawing.Size(81, 23);
  1004. this.uiLabel25.TabIndex = 51;
  1005. this.uiLabel25.Text = "证件号码";
  1006. this.uiLabel25.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1007. this.uiLabel25.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1008. //
  1009. // uiLabel26
  1010. //
  1011. this.uiLabel26.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1012. this.uiLabel26.Location = new System.Drawing.Point(244, 14);
  1013. this.uiLabel26.Name = "uiLabel26";
  1014. this.uiLabel26.Size = new System.Drawing.Size(81, 23);
  1015. this.uiLabel26.TabIndex = 50;
  1016. this.uiLabel26.Text = "证件类型";
  1017. this.uiLabel26.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1018. this.uiLabel26.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1019. //
  1020. // tbMedType
  1021. //
  1022. this.tbMedType.Cursor = System.Windows.Forms.Cursors.IBeam;
  1023. this.tbMedType.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1024. this.tbMedType.Location = new System.Drawing.Point(112, 50);
  1025. this.tbMedType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1026. this.tbMedType.MinimumSize = new System.Drawing.Size(1, 16);
  1027. this.tbMedType.Name = "tbMedType";
  1028. this.tbMedType.ShowText = false;
  1029. this.tbMedType.Size = new System.Drawing.Size(100, 25);
  1030. this.tbMedType.TabIndex = 49;
  1031. this.tbMedType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1032. this.tbMedType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1033. //
  1034. // tbAdmCertType
  1035. //
  1036. this.tbAdmCertType.Cursor = System.Windows.Forms.Cursors.IBeam;
  1037. this.tbAdmCertType.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1038. this.tbAdmCertType.Location = new System.Drawing.Point(113, 12);
  1039. this.tbAdmCertType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1040. this.tbAdmCertType.MinimumSize = new System.Drawing.Size(1, 16);
  1041. this.tbAdmCertType.Name = "tbAdmCertType";
  1042. this.tbAdmCertType.ShowText = false;
  1043. this.tbAdmCertType.Size = new System.Drawing.Size(100, 27);
  1044. this.tbAdmCertType.TabIndex = 48;
  1045. this.tbAdmCertType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1046. this.tbAdmCertType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1047. //
  1048. // uiLabel20
  1049. //
  1050. this.uiLabel20.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1051. this.uiLabel20.Location = new System.Drawing.Point(22, 49);
  1052. this.uiLabel20.Name = "uiLabel20";
  1053. this.uiLabel20.Size = new System.Drawing.Size(81, 23);
  1054. this.uiLabel20.TabIndex = 47;
  1055. this.uiLabel20.Text = "医疗类别";
  1056. this.uiLabel20.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1057. this.uiLabel20.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1058. //
  1059. // uiLabel21
  1060. //
  1061. this.uiLabel21.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1062. this.uiLabel21.Location = new System.Drawing.Point(22, 14);
  1063. this.uiLabel21.Name = "uiLabel21";
  1064. this.uiLabel21.Size = new System.Drawing.Size(81, 23);
  1065. this.uiLabel21.TabIndex = 46;
  1066. this.uiLabel21.Text = "凭证类型";
  1067. this.uiLabel21.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1068. this.uiLabel21.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1069. //
  1070. // uiLabel30
  1071. //
  1072. this.uiLabel30.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1073. this.uiLabel30.Location = new System.Drawing.Point(716, 34);
  1074. this.uiLabel30.Name = "uiLabel30";
  1075. this.uiLabel30.Size = new System.Drawing.Size(100, 23);
  1076. this.uiLabel30.TabIndex = 58;
  1077. this.uiLabel30.Text = "医疗费总额";
  1078. this.uiLabel30.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1079. this.uiLabel30.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1080. //
  1081. // gbSetldetail
  1082. //
  1083. this.gbSetldetail.Controls.Add(this.dgvSetlDetail);
  1084. this.gbSetldetail.Dock = System.Windows.Forms.DockStyle.Bottom;
  1085. this.gbSetldetail.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1086. this.gbSetldetail.Location = new System.Drawing.Point(0, 392);
  1087. this.gbSetldetail.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1088. this.gbSetldetail.MinimumSize = new System.Drawing.Size(1, 1);
  1089. this.gbSetldetail.Name = "gbSetldetail";
  1090. this.gbSetldetail.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  1091. this.gbSetldetail.Size = new System.Drawing.Size(988, 152);
  1092. this.gbSetldetail.TabIndex = 1;
  1093. this.gbSetldetail.Text = "结算基金分项信息";
  1094. this.gbSetldetail.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1095. this.gbSetldetail.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1096. //
  1097. // dgvSetlDetail
  1098. //
  1099. this.dgvSetlDetail.AllowUserToAddRows = false;
  1100. dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1101. this.dgvSetlDetail.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
  1102. this.dgvSetlDetail.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1103. this.dgvSetlDetail.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1104. dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1105. dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1106. dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1107. dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White;
  1108. dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1109. dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1110. dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1111. this.dgvSetlDetail.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
  1112. this.dgvSetlDetail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1113. dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1114. dataGridViewCellStyle3.BackColor = System.Drawing.Color.White;
  1115. dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1116. dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1117. dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1118. dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1119. dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  1120. this.dgvSetlDetail.DefaultCellStyle = dataGridViewCellStyle3;
  1121. this.dgvSetlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
  1122. this.dgvSetlDetail.EnableHeadersVisualStyles = false;
  1123. this.dgvSetlDetail.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1124. this.dgvSetlDetail.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(173)))), ((int)(((byte)(255)))));
  1125. this.dgvSetlDetail.Location = new System.Drawing.Point(0, 32);
  1126. this.dgvSetlDetail.Name = "dgvSetlDetail";
  1127. dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1128. dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1129. dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1130. dataGridViewCellStyle4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1131. dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1132. dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1133. dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1134. this.dgvSetlDetail.RowHeadersDefaultCellStyle = dataGridViewCellStyle4;
  1135. this.dgvSetlDetail.RowHeadersWidth = 51;
  1136. dataGridViewCellStyle5.BackColor = System.Drawing.Color.White;
  1137. dataGridViewCellStyle5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1138. dataGridViewCellStyle5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1139. dataGridViewCellStyle5.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(236)))), ((int)(((byte)(255)))));
  1140. dataGridViewCellStyle5.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1141. this.dgvSetlDetail.RowsDefaultCellStyle = dataGridViewCellStyle5;
  1142. this.dgvSetlDetail.RowTemplate.Height = 23;
  1143. this.dgvSetlDetail.SelectedIndex = -1;
  1144. this.dgvSetlDetail.Size = new System.Drawing.Size(988, 120);
  1145. this.dgvSetlDetail.TabIndex = 1;
  1146. this.dgvSetlDetail.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1147. //
  1148. // SettlementInfo
  1149. //
  1150. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  1151. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1152. this.ClientSize = new System.Drawing.Size(988, 609);
  1153. this.Controls.Add(this.pnlClient);
  1154. this.Controls.Add(this.pnlBottom);
  1155. this.Name = "SettlementInfo";
  1156. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  1157. this.Text = "患者结算信息一览表";
  1158. this.pnlBottom.ResumeLayout(false);
  1159. this.pnlClient.ResumeLayout(false);
  1160. this.gbSetlinfo.ResumeLayout(false);
  1161. this.pnlPayInfo.ResumeLayout(false);
  1162. this.pnlSetlBaseInfo.ResumeLayout(false);
  1163. this.gbSetldetail.ResumeLayout(false);
  1164. ((System.ComponentModel.ISupportInitialize)(this.dgvSetlDetail)).EndInit();
  1165. this.ResumeLayout(false);
  1166. }
  1167. #endregion
  1168. private Sunny.UI.UIPanel pnlBottom;
  1169. private Sunny.UI.UIPanel pnlClient;
  1170. private Sunny.UI.UIGroupBox gbSetlinfo;
  1171. private Sunny.UI.UIGroupBox gbSetldetail;
  1172. private Sunny.UI.UIDataGridView dgvSetlDetail;
  1173. private Sunny.UI.UIPanel pnlPayInfo;
  1174. private Sunny.UI.UITextBox tbOverLimitOwnPay;
  1175. private Sunny.UI.UILabel uiLabel3;
  1176. private Sunny.UI.UITextBox tbFullOwnPay;
  1177. private Sunny.UI.UITextBox tbSumamt;
  1178. private Sunny.UI.UILabel uiLabel2;
  1179. private Sunny.UI.UILabel uiLabel1;
  1180. private Sunny.UI.UIPanel pnlSetlBaseInfo;
  1181. private Sunny.UI.UITextBox tbAccountMutualAidAmount;
  1182. private Sunny.UI.UILabel uiLabel22;
  1183. private Sunny.UI.UITextBox tbBalc;
  1184. private Sunny.UI.UITextBox tbHospitalPartAmount;
  1185. private Sunny.UI.UILabel uiLabel23;
  1186. private Sunny.UI.UILabel uiLabel24;
  1187. private Sunny.UI.UITextBox tbPsnCashPay;
  1188. private Sunny.UI.UILabel uiLabel13;
  1189. private Sunny.UI.UITextBox tbPsnAccountPaySummat;
  1190. private Sunny.UI.UITextBox tbPsnSummat;
  1191. private Sunny.UI.UILabel uiLabel14;
  1192. private Sunny.UI.UILabel uiLabel15;
  1193. private Sunny.UI.UITextBox tbFundPaySummat;
  1194. private Sunny.UI.UILabel uiLabel16;
  1195. private Sunny.UI.UITextBox tbOtherPay;
  1196. private Sunny.UI.UITextBox tbAssian;
  1197. private Sunny.UI.UILabel uiLabel17;
  1198. private Sunny.UI.UILabel uiLabel18;
  1199. private Sunny.UI.UITextBox tbWorkerLargeMedical;
  1200. private Sunny.UI.UILabel uiLabel7;
  1201. private Sunny.UI.UITextBox tbHifmi_pay;
  1202. private Sunny.UI.UITextBox tbHifes_pay;
  1203. private Sunny.UI.UILabel uiLabel8;
  1204. private Sunny.UI.UILabel uiLabel9;
  1205. private Sunny.UI.UITextBox tbCvlserv_pay;
  1206. private Sunny.UI.UILabel uiLabel10;
  1207. private Sunny.UI.UITextBox tbInsuFundPayRito;
  1208. private Sunny.UI.UITextBox tbInsuFundPay;
  1209. private Sunny.UI.UILabel uiLabel11;
  1210. private Sunny.UI.UILabel uiLabel12;
  1211. private Sunny.UI.UITextBox tbActualPayDeduLine;
  1212. private Sunny.UI.UILabel uiLabel4;
  1213. private Sunny.UI.UITextBox tbInScopyAmount;
  1214. private Sunny.UI.UITextBox tbPreSelfPay;
  1215. private Sunny.UI.UILabel uiLabel5;
  1216. private Sunny.UI.UILabel uiLabel6;
  1217. private Sunny.UI.UITextBox tbClearingWay;
  1218. private Sunny.UI.UILabel uiLabel19;
  1219. private Sunny.UI.UITextBox tbPersonType;
  1220. private Sunny.UI.UITextBox tbInsuType;
  1221. private Sunny.UI.UILabel uiLabel27;
  1222. private Sunny.UI.UILabel uiLabel28;
  1223. private Sunny.UI.UITextBox tbPsnCertNO;
  1224. private Sunny.UI.UITextBox tbPsnCertType;
  1225. private Sunny.UI.UILabel uiLabel25;
  1226. private Sunny.UI.UILabel uiLabel26;
  1227. private Sunny.UI.UITextBox tbMedType;
  1228. private Sunny.UI.UITextBox tbAdmCertType;
  1229. private Sunny.UI.UILabel uiLabel20;
  1230. private Sunny.UI.UILabel uiLabel21;
  1231. private Sunny.UI.UILabel uiLabel30;
  1232. private Sunny.UI.UIButton uiButton1;
  1233. private Sunny.UI.UITextBox tbClearingType;
  1234. private Sunny.UI.UILabel uiLabel29;
  1235. private Sunny.UI.UIButton uiButton2;
  1236. private Sunny.UI.UITextBox tbCommercialReimamt;
  1237. private Sunny.UI.UILabel uiLabel32;
  1238. private Sunny.UI.UITextBox tbCommercialRenflag;
  1239. private Sunny.UI.UILabel uiLabel31;
  1240. }
  1241. }