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