RegistrationInfoEditUI.webui 194 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <webUIObject xmlns="com.kingdee.bos.metadata">
  3. <package>com.kingdee.eas.custom.shuiyou.registration.web</package>
  4. <name>RegistrationInfoEditUI</name>
  5. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].alias</alias>
  6. <description>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].description</description>
  7. <userDefined>false</userDefined>
  8. <releasePackage>com.kingdee.eas.custom.shuiyou.registration.web</releasePackage>
  9. <releaseClass>RegistrationInfoEditUI</releaseClass>
  10. <title>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].title</title>
  11. <uitype />
  12. <defaultbutton />
  13. <bizUnitPK>com.kingdee.eas.custom.shuiyou.registration.RegistrationInfo</bizUnitPK>
  14. <parent>
  15. <key name="package" value="com.kingdee.eas.framework.web" />
  16. <key name="name" value="EditUI" />
  17. </parent>
  18. <components>
  19. <component>
  20. <name>innerWindowUserTag</name>
  21. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[innerWindowUserTag].alias</alias>
  22. <userDefined>true</userDefined>
  23. <classType>com.kingdee.bos.ctrl.web.UserTag</classType>
  24. <isContainer>true</isContainer>
  25. <constraints />
  26. <tabIndex>0</tabIndex>
  27. <herited>false</herited>
  28. <bimUIObjectPK />
  29. <properties>
  30. <property>
  31. <name>attributes</name>
  32. <type>java.lang.String</type>
  33. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[innerWindowUserTag].properties.property[attributes].value</value>
  34. <isMultiLan>true</isMultiLan>
  35. <userDefined>false</userDefined>
  36. </property>
  37. </properties>
  38. </component>
  39. <component>
  40. <name>rootForm</name>
  41. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[rootForm].alias</alias>
  42. <userDefined>true</userDefined>
  43. <classType>com.kingdee.bos.ctrl.web.Form</classType>
  44. <isContainer>true</isContainer>
  45. <constraints>x=5;y=5;width=1006;height=741;autoSize=15</constraints>
  46. <tabIndex>0</tabIndex>
  47. <herited>false</herited>
  48. <bimUIObjectPK />
  49. </component>
  50. <component>
  51. <name>contName</name>
  52. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contName].alias</alias>
  53. <userDefined>false</userDefined>
  54. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  55. <isContainer>true</isContainer>
  56. <constraints>x=6;y=102;width=270;height=19;autoSize=0</constraints>
  57. <tabIndex>0</tabIndex>
  58. <herited>false</herited>
  59. <bimUIObjectPK />
  60. <layoutInfo>
  61. <name>contNamelcl</name>
  62. <type>LabelContainerLayout</type>
  63. <value />
  64. </layoutInfo>
  65. <properties>
  66. <property>
  67. <name>caption</name>
  68. <type>java.lang.String</type>
  69. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contName].properties.property[caption].value</value>
  70. <isMultiLan>true</isMultiLan>
  71. <userDefined>false</userDefined>
  72. </property>
  73. <property>
  74. <name>lineWidth</name>
  75. <type>int</type>
  76. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contName].properties.property[lineWidth].value</value>
  77. <isMultiLan>false</isMultiLan>
  78. <userDefined>false</userDefined>
  79. </property>
  80. </properties>
  81. <parent>
  82. <key name="name" value="rootForm" />
  83. </parent>
  84. </component>
  85. <component>
  86. <name>contNumber</name>
  87. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contNumber].alias</alias>
  88. <userDefined>false</userDefined>
  89. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  90. <isContainer>true</isContainer>
  91. <constraints>x=6;y=62;width=270;height=19;autoSize=0</constraints>
  92. <tabIndex>0</tabIndex>
  93. <herited>false</herited>
  94. <bimUIObjectPK />
  95. <layoutInfo>
  96. <name>contNumberlcl</name>
  97. <type>LabelContainerLayout</type>
  98. <value />
  99. </layoutInfo>
  100. <properties>
  101. <property>
  102. <name>caption</name>
  103. <type>java.lang.String</type>
  104. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contNumber].properties.property[caption].value</value>
  105. <isMultiLan>true</isMultiLan>
  106. <userDefined>false</userDefined>
  107. </property>
  108. <property>
  109. <name>lineWidth</name>
  110. <type>int</type>
  111. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contNumber].properties.property[lineWidth].value</value>
  112. <isMultiLan>false</isMultiLan>
  113. <userDefined>false</userDefined>
  114. </property>
  115. </properties>
  116. <parent>
  117. <key name="name" value="rootForm" />
  118. </parent>
  119. </component>
  120. <component>
  121. <name>contDescription</name>
  122. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contDescription].alias</alias>
  123. <userDefined>false</userDefined>
  124. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  125. <isContainer>true</isContainer>
  126. <constraints>x=6;y=182;width=270;height=19;autoSize=0</constraints>
  127. <tabIndex>0</tabIndex>
  128. <herited>false</herited>
  129. <bimUIObjectPK />
  130. <layoutInfo>
  131. <name>contDescriptionlcl</name>
  132. <type>LabelContainerLayout</type>
  133. <value />
  134. </layoutInfo>
  135. <properties>
  136. <property>
  137. <name>caption</name>
  138. <type>java.lang.String</type>
  139. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contDescription].properties.property[caption].value</value>
  140. <isMultiLan>true</isMultiLan>
  141. <userDefined>false</userDefined>
  142. </property>
  143. <property>
  144. <name>lineWidth</name>
  145. <type>int</type>
  146. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contDescription].properties.property[lineWidth].value</value>
  147. <isMultiLan>false</isMultiLan>
  148. <userDefined>false</userDefined>
  149. </property>
  150. </properties>
  151. <parent>
  152. <key name="name" value="rootForm" />
  153. </parent>
  154. </component>
  155. <component>
  156. <name>contSimpleName</name>
  157. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contSimpleName].alias</alias>
  158. <userDefined>false</userDefined>
  159. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  160. <isContainer>true</isContainer>
  161. <constraints>x=6;y=142;width=270;height=19;autoSize=0</constraints>
  162. <tabIndex>0</tabIndex>
  163. <herited>false</herited>
  164. <bimUIObjectPK />
  165. <layoutInfo>
  166. <name>contSimpleNamelcl</name>
  167. <type>LabelContainerLayout</type>
  168. <value />
  169. </layoutInfo>
  170. <properties>
  171. <property>
  172. <name>caption</name>
  173. <type>java.lang.String</type>
  174. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contSimpleName].properties.property[caption].value</value>
  175. <isMultiLan>true</isMultiLan>
  176. <userDefined>false</userDefined>
  177. </property>
  178. <property>
  179. <name>lineWidth</name>
  180. <type>int</type>
  181. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contSimpleName].properties.property[lineWidth].value</value>
  182. <isMultiLan>false</isMultiLan>
  183. <userDefined>false</userDefined>
  184. </property>
  185. </properties>
  186. <parent>
  187. <key name="name" value="rootForm" />
  188. </parent>
  189. </component>
  190. <component>
  191. <name>rootToolBar</name>
  192. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[rootToolBar].alias</alias>
  193. <userDefined>false</userDefined>
  194. <classType>com.kingdee.bos.ctrl.web.ToolBar</classType>
  195. <isContainer>true</isContainer>
  196. <constraints>x=5;y=4;width=997;height=30;autoSize=12</constraints>
  197. <tabIndex>0</tabIndex>
  198. <herited>false</herited>
  199. <bimUIObjectPK />
  200. <layoutInfo>
  201. <name>webToolBarLayout1</name>
  202. <type>WebToolBarLayout</type>
  203. <value />
  204. </layoutInfo>
  205. <parent>
  206. <key name="name" value="rootForm" />
  207. </parent>
  208. </component>
  209. <component>
  210. <name>msgArea</name>
  211. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[msgArea].alias</alias>
  212. <userDefined>false</userDefined>
  213. <classType>com.kingdee.bos.ctrl.web.MsgArea</classType>
  214. <isContainer>false</isContainer>
  215. <constraints>x=6;y=38;width=996;height=10;autoSize=12</constraints>
  216. <tabIndex>0</tabIndex>
  217. <herited>false</herited>
  218. <bimUIObjectPK />
  219. <parent>
  220. <key name="name" value="rootForm" />
  221. </parent>
  222. </component>
  223. <component>
  224. <name>contdjxhid</name>
  225. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contdjxhid].alias</alias>
  226. <userDefined>true</userDefined>
  227. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  228. <isContainer>true</isContainer>
  229. <constraints>x=0;y=0;width=270;height=19;autoSize=0</constraints>
  230. <tabIndex>0</tabIndex>
  231. <herited>false</herited>
  232. <bimUIObjectPK />
  233. <layoutInfo>
  234. <name />
  235. <type>LabelContainerLayout</type>
  236. <value />
  237. </layoutInfo>
  238. <properties>
  239. <property>
  240. <name>caption</name>
  241. <type>java.lang.String</type>
  242. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contdjxhid].properties.property[caption].value</value>
  243. <isMultiLan>true</isMultiLan>
  244. <userDefined>true</userDefined>
  245. </property>
  246. <property>
  247. <name>lineWidth</name>
  248. <type>int</type>
  249. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contdjxhid].properties.property[lineWidth].value</value>
  250. <isMultiLan>false</isMultiLan>
  251. <userDefined>true</userDefined>
  252. </property>
  253. </properties>
  254. <parent>
  255. <key name="name" value="rootForm" />
  256. </parent>
  257. </component>
  258. <component>
  259. <name>contqymc</name>
  260. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contqymc].alias</alias>
  261. <userDefined>true</userDefined>
  262. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  263. <isContainer>true</isContainer>
  264. <constraints>x=0;y=0;width=270;height=19;autoSize=0</constraints>
  265. <tabIndex>0</tabIndex>
  266. <herited>false</herited>
  267. <bimUIObjectPK />
  268. <layoutInfo>
  269. <name />
  270. <type>LabelContainerLayout</type>
  271. <value />
  272. </layoutInfo>
  273. <properties>
  274. <property>
  275. <name>caption</name>
  276. <type>java.lang.String</type>
  277. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contqymc].properties.property[caption].value</value>
  278. <isMultiLan>true</isMultiLan>
  279. <userDefined>true</userDefined>
  280. </property>
  281. <property>
  282. <name>lineWidth</name>
  283. <type>int</type>
  284. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contqymc].properties.property[lineWidth].value</value>
  285. <isMultiLan>false</isMultiLan>
  286. <userDefined>true</userDefined>
  287. </property>
  288. </properties>
  289. <parent>
  290. <key name="name" value="rootForm" />
  291. </parent>
  292. </component>
  293. <component>
  294. <name>contfrxm</name>
  295. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contfrxm].alias</alias>
  296. <userDefined>true</userDefined>
  297. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  298. <isContainer>true</isContainer>
  299. <constraints>x=0;y=0;width=270;height=19;autoSize=0</constraints>
  300. <tabIndex>0</tabIndex>
  301. <herited>false</herited>
  302. <bimUIObjectPK />
  303. <layoutInfo>
  304. <name />
  305. <type>LabelContainerLayout</type>
  306. <value />
  307. </layoutInfo>
  308. <properties>
  309. <property>
  310. <name>caption</name>
  311. <type>java.lang.String</type>
  312. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contfrxm].properties.property[caption].value</value>
  313. <isMultiLan>true</isMultiLan>
  314. <userDefined>true</userDefined>
  315. </property>
  316. <property>
  317. <name>lineWidth</name>
  318. <type>int</type>
  319. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contfrxm].properties.property[lineWidth].value</value>
  320. <isMultiLan>false</isMultiLan>
  321. <userDefined>true</userDefined>
  322. </property>
  323. </properties>
  324. <parent>
  325. <key name="name" value="rootForm" />
  326. </parent>
  327. </component>
  328. <component>
  329. <name>contlxdh</name>
  330. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contlxdh].alias</alias>
  331. <userDefined>true</userDefined>
  332. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  333. <isContainer>true</isContainer>
  334. <constraints>x=0;y=0;width=270;height=19;autoSize=0</constraints>
  335. <tabIndex>0</tabIndex>
  336. <herited>false</herited>
  337. <bimUIObjectPK />
  338. <layoutInfo>
  339. <name />
  340. <type>LabelContainerLayout</type>
  341. <value />
  342. </layoutInfo>
  343. <properties>
  344. <property>
  345. <name>caption</name>
  346. <type>java.lang.String</type>
  347. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contlxdh].properties.property[caption].value</value>
  348. <isMultiLan>true</isMultiLan>
  349. <userDefined>true</userDefined>
  350. </property>
  351. <property>
  352. <name>lineWidth</name>
  353. <type>int</type>
  354. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contlxdh].properties.property[lineWidth].value</value>
  355. <isMultiLan>false</isMultiLan>
  356. <userDefined>true</userDefined>
  357. </property>
  358. </properties>
  359. <parent>
  360. <key name="name" value="rootForm" />
  361. </parent>
  362. </component>
  363. <component>
  364. <name>contscjydz</name>
  365. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contscjydz].alias</alias>
  366. <userDefined>true</userDefined>
  367. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  368. <isContainer>true</isContainer>
  369. <constraints>x=0;y=0;width=270;height=19;autoSize=0</constraints>
  370. <tabIndex>0</tabIndex>
  371. <herited>false</herited>
  372. <bimUIObjectPK />
  373. <layoutInfo>
  374. <name />
  375. <type>LabelContainerLayout</type>
  376. <value />
  377. </layoutInfo>
  378. <properties>
  379. <property>
  380. <name>caption</name>
  381. <type>java.lang.String</type>
  382. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contscjydz].properties.property[caption].value</value>
  383. <isMultiLan>true</isMultiLan>
  384. <userDefined>true</userDefined>
  385. </property>
  386. <property>
  387. <name>lineWidth</name>
  388. <type>int</type>
  389. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contscjydz].properties.property[lineWidth].value</value>
  390. <isMultiLan>false</isMultiLan>
  391. <userDefined>true</userDefined>
  392. </property>
  393. </properties>
  394. <parent>
  395. <key name="name" value="rootForm" />
  396. </parent>
  397. </component>
  398. <component>
  399. <name>conthymc</name>
  400. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[conthymc].alias</alias>
  401. <userDefined>true</userDefined>
  402. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  403. <isContainer>true</isContainer>
  404. <constraints>x=0;y=0;width=270;height=19;autoSize=0</constraints>
  405. <tabIndex>0</tabIndex>
  406. <herited>false</herited>
  407. <bimUIObjectPK />
  408. <layoutInfo>
  409. <name />
  410. <type>LabelContainerLayout</type>
  411. <value />
  412. </layoutInfo>
  413. <properties>
  414. <property>
  415. <name>caption</name>
  416. <type>java.lang.String</type>
  417. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[conthymc].properties.property[caption].value</value>
  418. <isMultiLan>true</isMultiLan>
  419. <userDefined>true</userDefined>
  420. </property>
  421. <property>
  422. <name>lineWidth</name>
  423. <type>int</type>
  424. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[conthymc].properties.property[lineWidth].value</value>
  425. <isMultiLan>false</isMultiLan>
  426. <userDefined>true</userDefined>
  427. </property>
  428. </properties>
  429. <parent>
  430. <key name="name" value="rootForm" />
  431. </parent>
  432. </component>
  433. <component>
  434. <name>contzgswjgmc</name>
  435. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contzgswjgmc].alias</alias>
  436. <userDefined>true</userDefined>
  437. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  438. <isContainer>true</isContainer>
  439. <constraints>x=0;y=0;width=270;height=19;autoSize=0</constraints>
  440. <tabIndex>0</tabIndex>
  441. <herited>false</herited>
  442. <bimUIObjectPK />
  443. <layoutInfo>
  444. <name />
  445. <type>LabelContainerLayout</type>
  446. <value />
  447. </layoutInfo>
  448. <properties>
  449. <property>
  450. <name>caption</name>
  451. <type>java.lang.String</type>
  452. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contzgswjgmc].properties.property[caption].value</value>
  453. <isMultiLan>true</isMultiLan>
  454. <userDefined>true</userDefined>
  455. </property>
  456. <property>
  457. <name>lineWidth</name>
  458. <type>int</type>
  459. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contzgswjgmc].properties.property[lineWidth].value</value>
  460. <isMultiLan>false</isMultiLan>
  461. <userDefined>true</userDefined>
  462. </property>
  463. </properties>
  464. <parent>
  465. <key name="name" value="rootForm" />
  466. </parent>
  467. </component>
  468. <component>
  469. <name>contzgswjg</name>
  470. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contzgswjg].alias</alias>
  471. <userDefined>true</userDefined>
  472. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  473. <isContainer>true</isContainer>
  474. <constraints>x=0;y=0;width=270;height=19;autoSize=0</constraints>
  475. <tabIndex>0</tabIndex>
  476. <herited>false</herited>
  477. <bimUIObjectPK />
  478. <layoutInfo>
  479. <name />
  480. <type>LabelContainerLayout</type>
  481. <value />
  482. </layoutInfo>
  483. <properties>
  484. <property>
  485. <name>caption</name>
  486. <type>java.lang.String</type>
  487. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contzgswjg].properties.property[caption].value</value>
  488. <isMultiLan>true</isMultiLan>
  489. <userDefined>true</userDefined>
  490. </property>
  491. <property>
  492. <name>lineWidth</name>
  493. <type>int</type>
  494. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contzgswjg].properties.property[lineWidth].value</value>
  495. <isMultiLan>false</isMultiLan>
  496. <userDefined>true</userDefined>
  497. </property>
  498. </properties>
  499. <parent>
  500. <key name="name" value="rootForm" />
  501. </parent>
  502. </component>
  503. <component>
  504. <name>contzgswjgskdm</name>
  505. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contzgswjgskdm].alias</alias>
  506. <userDefined>true</userDefined>
  507. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  508. <isContainer>true</isContainer>
  509. <constraints>x=0;y=0;width=270;height=19;autoSize=0</constraints>
  510. <tabIndex>0</tabIndex>
  511. <herited>false</herited>
  512. <bimUIObjectPK />
  513. <layoutInfo>
  514. <name />
  515. <type>LabelContainerLayout</type>
  516. <value />
  517. </layoutInfo>
  518. <properties>
  519. <property>
  520. <name>caption</name>
  521. <type>java.lang.String</type>
  522. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contzgswjgskdm].properties.property[caption].value</value>
  523. <isMultiLan>true</isMultiLan>
  524. <userDefined>true</userDefined>
  525. </property>
  526. <property>
  527. <name>lineWidth</name>
  528. <type>int</type>
  529. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contzgswjgskdm].properties.property[lineWidth].value</value>
  530. <isMultiLan>false</isMultiLan>
  531. <userDefined>true</userDefined>
  532. </property>
  533. </properties>
  534. <parent>
  535. <key name="name" value="rootForm" />
  536. </parent>
  537. </component>
  538. <component>
  539. <name>contzgswjgskmc</name>
  540. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contzgswjgskmc].alias</alias>
  541. <userDefined>true</userDefined>
  542. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  543. <isContainer>true</isContainer>
  544. <constraints>x=0;y=0;width=270;height=19;autoSize=0</constraints>
  545. <tabIndex>0</tabIndex>
  546. <herited>false</herited>
  547. <bimUIObjectPK />
  548. <layoutInfo>
  549. <name />
  550. <type>LabelContainerLayout</type>
  551. <value />
  552. </layoutInfo>
  553. <properties>
  554. <property>
  555. <name>caption</name>
  556. <type>java.lang.String</type>
  557. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contzgswjgskmc].properties.property[caption].value</value>
  558. <isMultiLan>true</isMultiLan>
  559. <userDefined>true</userDefined>
  560. </property>
  561. <property>
  562. <name>lineWidth</name>
  563. <type>int</type>
  564. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contzgswjgskmc].properties.property[lineWidth].value</value>
  565. <isMultiLan>false</isMultiLan>
  566. <userDefined>true</userDefined>
  567. </property>
  568. </properties>
  569. <parent>
  570. <key name="name" value="rootForm" />
  571. </parent>
  572. </component>
  573. <component>
  574. <name>contfbmba</name>
  575. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contfbmba].alias</alias>
  576. <userDefined>true</userDefined>
  577. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  578. <isContainer>true</isContainer>
  579. <constraints>x=0;y=0;width=270;height=19;autoSize=0</constraints>
  580. <tabIndex>0</tabIndex>
  581. <herited>false</herited>
  582. <bimUIObjectPK />
  583. <layoutInfo>
  584. <name />
  585. <type>LabelContainerLayout</type>
  586. <value />
  587. </layoutInfo>
  588. <properties>
  589. <property>
  590. <name>caption</name>
  591. <type>java.lang.String</type>
  592. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contfbmba].properties.property[caption].value</value>
  593. <isMultiLan>true</isMultiLan>
  594. <userDefined>true</userDefined>
  595. </property>
  596. <property>
  597. <name>lineWidth</name>
  598. <type>int</type>
  599. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contfbmba].properties.property[lineWidth].value</value>
  600. <isMultiLan>false</isMultiLan>
  601. <userDefined>true</userDefined>
  602. </property>
  603. </properties>
  604. <parent>
  605. <key name="name" value="rootForm" />
  606. </parent>
  607. </component>
  608. <component>
  609. <name>contsmzh</name>
  610. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contsmzh].alias</alias>
  611. <userDefined>true</userDefined>
  612. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  613. <isContainer>true</isContainer>
  614. <constraints>x=0;y=0;width=270;height=19;autoSize=0</constraints>
  615. <tabIndex>0</tabIndex>
  616. <herited>false</herited>
  617. <bimUIObjectPK />
  618. <layoutInfo>
  619. <name />
  620. <type>LabelContainerLayout</type>
  621. <value />
  622. </layoutInfo>
  623. <properties>
  624. <property>
  625. <name>caption</name>
  626. <type>java.lang.String</type>
  627. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contsmzh].properties.property[caption].value</value>
  628. <isMultiLan>true</isMultiLan>
  629. <userDefined>true</userDefined>
  630. </property>
  631. <property>
  632. <name>lineWidth</name>
  633. <type>int</type>
  634. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contsmzh].properties.property[lineWidth].value</value>
  635. <isMultiLan>false</isMultiLan>
  636. <userDefined>true</userDefined>
  637. </property>
  638. </properties>
  639. <parent>
  640. <key name="name" value="rootForm" />
  641. </parent>
  642. </component>
  643. <component>
  644. <name>contshxydm</name>
  645. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contshxydm].alias</alias>
  646. <userDefined>true</userDefined>
  647. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  648. <isContainer>true</isContainer>
  649. <constraints>x=0;y=0;width=270;height=19;autoSize=0</constraints>
  650. <tabIndex>0</tabIndex>
  651. <herited>false</herited>
  652. <bimUIObjectPK />
  653. <layoutInfo>
  654. <name />
  655. <type>LabelContainerLayout</type>
  656. <value />
  657. </layoutInfo>
  658. <properties>
  659. <property>
  660. <name>caption</name>
  661. <type>java.lang.String</type>
  662. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contshxydm].properties.property[caption].value</value>
  663. <isMultiLan>true</isMultiLan>
  664. <userDefined>true</userDefined>
  665. </property>
  666. <property>
  667. <name>lineWidth</name>
  668. <type>int</type>
  669. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contshxydm].properties.property[lineWidth].value</value>
  670. <isMultiLan>false</isMultiLan>
  671. <userDefined>true</userDefined>
  672. </property>
  673. </properties>
  674. <parent>
  675. <key name="name" value="rootForm" />
  676. </parent>
  677. </component>
  678. <component>
  679. <name>contnsrsbm</name>
  680. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contnsrsbm].alias</alias>
  681. <userDefined>true</userDefined>
  682. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  683. <isContainer>true</isContainer>
  684. <constraints>x=0;y=0;width=270;height=19;autoSize=0</constraints>
  685. <tabIndex>0</tabIndex>
  686. <herited>false</herited>
  687. <bimUIObjectPK />
  688. <layoutInfo>
  689. <name />
  690. <type>LabelContainerLayout</type>
  691. <value />
  692. </layoutInfo>
  693. <properties>
  694. <property>
  695. <name>caption</name>
  696. <type>java.lang.String</type>
  697. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contnsrsbm].properties.property[caption].value</value>
  698. <isMultiLan>true</isMultiLan>
  699. <userDefined>true</userDefined>
  700. </property>
  701. <property>
  702. <name>lineWidth</name>
  703. <type>int</type>
  704. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contnsrsbm].properties.property[lineWidth].value</value>
  705. <isMultiLan>false</isMultiLan>
  706. <userDefined>true</userDefined>
  707. </property>
  708. </properties>
  709. <parent>
  710. <key name="name" value="rootForm" />
  711. </parent>
  712. </component>
  713. <component>
  714. <name>contyzbm</name>
  715. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contyzbm].alias</alias>
  716. <userDefined>true</userDefined>
  717. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  718. <isContainer>true</isContainer>
  719. <constraints>x=0;y=0;width=270;height=19;autoSize=0</constraints>
  720. <tabIndex>0</tabIndex>
  721. <herited>false</herited>
  722. <bimUIObjectPK />
  723. <layoutInfo>
  724. <name />
  725. <type>LabelContainerLayout</type>
  726. <value />
  727. </layoutInfo>
  728. <properties>
  729. <property>
  730. <name>caption</name>
  731. <type>java.lang.String</type>
  732. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contyzbm].properties.property[caption].value</value>
  733. <isMultiLan>true</isMultiLan>
  734. <userDefined>true</userDefined>
  735. </property>
  736. <property>
  737. <name>lineWidth</name>
  738. <type>int</type>
  739. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contyzbm].properties.property[lineWidth].value</value>
  740. <isMultiLan>false</isMultiLan>
  741. <userDefined>true</userDefined>
  742. </property>
  743. </properties>
  744. <parent>
  745. <key name="name" value="rootForm" />
  746. </parent>
  747. </component>
  748. <component>
  749. <name>contcwxm</name>
  750. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contcwxm].alias</alias>
  751. <userDefined>true</userDefined>
  752. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  753. <isContainer>true</isContainer>
  754. <constraints>x=0;y=0;width=270;height=19;autoSize=0</constraints>
  755. <tabIndex>0</tabIndex>
  756. <herited>false</herited>
  757. <bimUIObjectPK />
  758. <layoutInfo>
  759. <name />
  760. <type>LabelContainerLayout</type>
  761. <value />
  762. </layoutInfo>
  763. <properties>
  764. <property>
  765. <name>caption</name>
  766. <type>java.lang.String</type>
  767. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contcwxm].properties.property[caption].value</value>
  768. <isMultiLan>true</isMultiLan>
  769. <userDefined>true</userDefined>
  770. </property>
  771. <property>
  772. <name>lineWidth</name>
  773. <type>int</type>
  774. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contcwxm].properties.property[lineWidth].value</value>
  775. <isMultiLan>false</isMultiLan>
  776. <userDefined>true</userDefined>
  777. </property>
  778. </properties>
  779. <parent>
  780. <key name="name" value="rootForm" />
  781. </parent>
  782. </component>
  783. <component>
  784. <name>conthydm</name>
  785. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[conthydm].alias</alias>
  786. <userDefined>true</userDefined>
  787. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  788. <isContainer>true</isContainer>
  789. <constraints>x=0;y=0;width=270;height=19;autoSize=0</constraints>
  790. <tabIndex>0</tabIndex>
  791. <herited>false</herited>
  792. <bimUIObjectPK />
  793. <layoutInfo>
  794. <name />
  795. <type>LabelContainerLayout</type>
  796. <value />
  797. </layoutInfo>
  798. <properties>
  799. <property>
  800. <name>caption</name>
  801. <type>java.lang.String</type>
  802. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[conthydm].properties.property[caption].value</value>
  803. <isMultiLan>true</isMultiLan>
  804. <userDefined>true</userDefined>
  805. </property>
  806. <property>
  807. <name>lineWidth</name>
  808. <type>int</type>
  809. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[conthydm].properties.property[lineWidth].value</value>
  810. <isMultiLan>false</isMultiLan>
  811. <userDefined>true</userDefined>
  812. </property>
  813. </properties>
  814. <parent>
  815. <key name="name" value="rootForm" />
  816. </parent>
  817. </component>
  818. <component>
  819. <name>contjjlxdm</name>
  820. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contjjlxdm].alias</alias>
  821. <userDefined>true</userDefined>
  822. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  823. <isContainer>true</isContainer>
  824. <constraints>x=0;y=0;width=270;height=19;autoSize=0</constraints>
  825. <tabIndex>0</tabIndex>
  826. <herited>false</herited>
  827. <bimUIObjectPK />
  828. <layoutInfo>
  829. <name />
  830. <type>LabelContainerLayout</type>
  831. <value />
  832. </layoutInfo>
  833. <properties>
  834. <property>
  835. <name>caption</name>
  836. <type>java.lang.String</type>
  837. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contjjlxdm].properties.property[caption].value</value>
  838. <isMultiLan>true</isMultiLan>
  839. <userDefined>true</userDefined>
  840. </property>
  841. <property>
  842. <name>lineWidth</name>
  843. <type>int</type>
  844. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contjjlxdm].properties.property[lineWidth].value</value>
  845. <isMultiLan>false</isMultiLan>
  846. <userDefined>true</userDefined>
  847. </property>
  848. </properties>
  849. <parent>
  850. <key name="name" value="rootForm" />
  851. </parent>
  852. </component>
  853. <component>
  854. <name>contjjlxmc</name>
  855. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contjjlxmc].alias</alias>
  856. <userDefined>true</userDefined>
  857. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  858. <isContainer>true</isContainer>
  859. <constraints>x=0;y=0;width=270;height=19;autoSize=0</constraints>
  860. <tabIndex>0</tabIndex>
  861. <herited>false</herited>
  862. <bimUIObjectPK />
  863. <layoutInfo>
  864. <name />
  865. <type>LabelContainerLayout</type>
  866. <value />
  867. </layoutInfo>
  868. <properties>
  869. <property>
  870. <name>caption</name>
  871. <type>java.lang.String</type>
  872. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contjjlxmc].properties.property[caption].value</value>
  873. <isMultiLan>true</isMultiLan>
  874. <userDefined>true</userDefined>
  875. </property>
  876. <property>
  877. <name>lineWidth</name>
  878. <type>int</type>
  879. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contjjlxmc].properties.property[lineWidth].value</value>
  880. <isMultiLan>false</isMultiLan>
  881. <userDefined>true</userDefined>
  882. </property>
  883. </properties>
  884. <parent>
  885. <key name="name" value="rootForm" />
  886. </parent>
  887. </component>
  888. <component>
  889. <name>contssglydm</name>
  890. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contssglydm].alias</alias>
  891. <userDefined>true</userDefined>
  892. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  893. <isContainer>true</isContainer>
  894. <constraints>x=0;y=0;width=270;height=19;autoSize=0</constraints>
  895. <tabIndex>0</tabIndex>
  896. <herited>false</herited>
  897. <bimUIObjectPK />
  898. <layoutInfo>
  899. <name />
  900. <type>LabelContainerLayout</type>
  901. <value />
  902. </layoutInfo>
  903. <properties>
  904. <property>
  905. <name>caption</name>
  906. <type>java.lang.String</type>
  907. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contssglydm].properties.property[caption].value</value>
  908. <isMultiLan>true</isMultiLan>
  909. <userDefined>true</userDefined>
  910. </property>
  911. <property>
  912. <name>lineWidth</name>
  913. <type>int</type>
  914. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contssglydm].properties.property[lineWidth].value</value>
  915. <isMultiLan>false</isMultiLan>
  916. <userDefined>true</userDefined>
  917. </property>
  918. </properties>
  919. <parent>
  920. <key name="name" value="rootForm" />
  921. </parent>
  922. </component>
  923. <component>
  924. <name>contbsrxm</name>
  925. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contbsrxm].alias</alias>
  926. <userDefined>true</userDefined>
  927. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  928. <isContainer>true</isContainer>
  929. <constraints>x=0;y=0;width=270;height=19;autoSize=0</constraints>
  930. <tabIndex>0</tabIndex>
  931. <herited>false</herited>
  932. <bimUIObjectPK />
  933. <layoutInfo>
  934. <name />
  935. <type>LabelContainerLayout</type>
  936. <value />
  937. </layoutInfo>
  938. <properties>
  939. <property>
  940. <name>caption</name>
  941. <type>java.lang.String</type>
  942. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contbsrxm].properties.property[caption].value</value>
  943. <isMultiLan>true</isMultiLan>
  944. <userDefined>true</userDefined>
  945. </property>
  946. <property>
  947. <name>lineWidth</name>
  948. <type>int</type>
  949. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contbsrxm].properties.property[lineWidth].value</value>
  950. <isMultiLan>false</isMultiLan>
  951. <userDefined>true</userDefined>
  952. </property>
  953. </properties>
  954. <parent>
  955. <key name="name" value="rootForm" />
  956. </parent>
  957. </component>
  958. <component>
  959. <name>contjdxzdm</name>
  960. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contjdxzdm].alias</alias>
  961. <userDefined>true</userDefined>
  962. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  963. <isContainer>true</isContainer>
  964. <constraints>x=0;y=0;width=270;height=19;autoSize=0</constraints>
  965. <tabIndex>0</tabIndex>
  966. <herited>false</herited>
  967. <bimUIObjectPK />
  968. <layoutInfo>
  969. <name />
  970. <type>LabelContainerLayout</type>
  971. <value />
  972. </layoutInfo>
  973. <properties>
  974. <property>
  975. <name>caption</name>
  976. <type>java.lang.String</type>
  977. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contjdxzdm].properties.property[caption].value</value>
  978. <isMultiLan>true</isMultiLan>
  979. <userDefined>true</userDefined>
  980. </property>
  981. <property>
  982. <name>lineWidth</name>
  983. <type>int</type>
  984. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contjdxzdm].properties.property[lineWidth].value</value>
  985. <isMultiLan>false</isMultiLan>
  986. <userDefined>true</userDefined>
  987. </property>
  988. </properties>
  989. <parent>
  990. <key name="name" value="rootForm" />
  991. </parent>
  992. </component>
  993. <component>
  994. <name>contkjywrdm</name>
  995. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contkjywrdm].alias</alias>
  996. <userDefined>true</userDefined>
  997. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  998. <isContainer>true</isContainer>
  999. <constraints>x=0;y=0;width=270;height=19;autoSize=0</constraints>
  1000. <tabIndex>0</tabIndex>
  1001. <herited>false</herited>
  1002. <bimUIObjectPK />
  1003. <layoutInfo>
  1004. <name />
  1005. <type>LabelContainerLayout</type>
  1006. <value />
  1007. </layoutInfo>
  1008. <properties>
  1009. <property>
  1010. <name>caption</name>
  1011. <type>java.lang.String</type>
  1012. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contkjywrdm].properties.property[caption].value</value>
  1013. <isMultiLan>true</isMultiLan>
  1014. <userDefined>true</userDefined>
  1015. </property>
  1016. <property>
  1017. <name>lineWidth</name>
  1018. <type>int</type>
  1019. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contkjywrdm].properties.property[lineWidth].value</value>
  1020. <isMultiLan>false</isMultiLan>
  1021. <userDefined>true</userDefined>
  1022. </property>
  1023. </properties>
  1024. <parent>
  1025. <key name="name" value="rootForm" />
  1026. </parent>
  1027. </component>
  1028. <component>
  1029. <name>contdjrq</name>
  1030. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contdjrq].alias</alias>
  1031. <userDefined>true</userDefined>
  1032. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  1033. <isContainer>true</isContainer>
  1034. <constraints>x=0;y=0;width=270;height=19;autoSize=0</constraints>
  1035. <tabIndex>0</tabIndex>
  1036. <herited>false</herited>
  1037. <bimUIObjectPK />
  1038. <layoutInfo>
  1039. <name />
  1040. <type>LabelContainerLayout</type>
  1041. <value />
  1042. </layoutInfo>
  1043. <properties>
  1044. <property>
  1045. <name>caption</name>
  1046. <type>java.lang.String</type>
  1047. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contdjrq].properties.property[caption].value</value>
  1048. <isMultiLan>true</isMultiLan>
  1049. <userDefined>true</userDefined>
  1050. </property>
  1051. <property>
  1052. <name>lineWidth</name>
  1053. <type>int</type>
  1054. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contdjrq].properties.property[lineWidth].value</value>
  1055. <isMultiLan>false</isMultiLan>
  1056. <userDefined>true</userDefined>
  1057. </property>
  1058. </properties>
  1059. <parent>
  1060. <key name="name" value="rootForm" />
  1061. </parent>
  1062. </component>
  1063. <component>
  1064. <name>contswjgdm</name>
  1065. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contswjgdm].alias</alias>
  1066. <userDefined>true</userDefined>
  1067. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  1068. <isContainer>true</isContainer>
  1069. <constraints>x=0;y=0;width=270;height=19;autoSize=0</constraints>
  1070. <tabIndex>0</tabIndex>
  1071. <herited>false</herited>
  1072. <bimUIObjectPK />
  1073. <layoutInfo>
  1074. <name />
  1075. <type>LabelContainerLayout</type>
  1076. <value />
  1077. </layoutInfo>
  1078. <properties>
  1079. <property>
  1080. <name>caption</name>
  1081. <type>java.lang.String</type>
  1082. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contswjgdm].properties.property[caption].value</value>
  1083. <isMultiLan>true</isMultiLan>
  1084. <userDefined>true</userDefined>
  1085. </property>
  1086. <property>
  1087. <name>lineWidth</name>
  1088. <type>int</type>
  1089. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contswjgdm].properties.property[lineWidth].value</value>
  1090. <isMultiLan>false</isMultiLan>
  1091. <userDefined>true</userDefined>
  1092. </property>
  1093. </properties>
  1094. <parent>
  1095. <key name="name" value="rootForm" />
  1096. </parent>
  1097. </component>
  1098. <component>
  1099. <name>contswjgmc</name>
  1100. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contswjgmc].alias</alias>
  1101. <userDefined>true</userDefined>
  1102. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  1103. <isContainer>true</isContainer>
  1104. <constraints>x=0;y=0;width=270;height=19;autoSize=0</constraints>
  1105. <tabIndex>0</tabIndex>
  1106. <herited>false</herited>
  1107. <bimUIObjectPK />
  1108. <layoutInfo>
  1109. <name />
  1110. <type>LabelContainerLayout</type>
  1111. <value />
  1112. </layoutInfo>
  1113. <properties>
  1114. <property>
  1115. <name>caption</name>
  1116. <type>java.lang.String</type>
  1117. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contswjgmc].properties.property[caption].value</value>
  1118. <isMultiLan>true</isMultiLan>
  1119. <userDefined>true</userDefined>
  1120. </property>
  1121. <property>
  1122. <name>lineWidth</name>
  1123. <type>int</type>
  1124. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contswjgmc].properties.property[lineWidth].value</value>
  1125. <isMultiLan>false</isMultiLan>
  1126. <userDefined>true</userDefined>
  1127. </property>
  1128. </properties>
  1129. <parent>
  1130. <key name="name" value="rootForm" />
  1131. </parent>
  1132. </component>
  1133. <component>
  1134. <name>contsfscjyqy</name>
  1135. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contsfscjyqy].alias</alias>
  1136. <userDefined>true</userDefined>
  1137. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  1138. <isContainer>true</isContainer>
  1139. <constraints>x=0;y=0;width=270;height=19;autoSize=0</constraints>
  1140. <tabIndex>0</tabIndex>
  1141. <herited>false</herited>
  1142. <bimUIObjectPK />
  1143. <layoutInfo>
  1144. <name />
  1145. <type>LabelContainerLayout</type>
  1146. <value />
  1147. </layoutInfo>
  1148. <properties>
  1149. <property>
  1150. <name>caption</name>
  1151. <type>java.lang.String</type>
  1152. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contsfscjyqy].properties.property[caption].value</value>
  1153. <isMultiLan>true</isMultiLan>
  1154. <userDefined>true</userDefined>
  1155. </property>
  1156. <property>
  1157. <name>lineWidth</name>
  1158. <type>int</type>
  1159. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contsfscjyqy].properties.property[lineWidth].value</value>
  1160. <isMultiLan>false</isMultiLan>
  1161. <userDefined>true</userDefined>
  1162. </property>
  1163. </properties>
  1164. <parent>
  1165. <key name="name" value="rootForm" />
  1166. </parent>
  1167. </component>
  1168. <component>
  1169. <name>contnsrztdm</name>
  1170. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contnsrztdm].alias</alias>
  1171. <userDefined>true</userDefined>
  1172. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  1173. <isContainer>true</isContainer>
  1174. <constraints>x=0;y=0;width=270;height=19;autoSize=0</constraints>
  1175. <tabIndex>0</tabIndex>
  1176. <herited>false</herited>
  1177. <bimUIObjectPK />
  1178. <layoutInfo>
  1179. <name />
  1180. <type>LabelContainerLayout</type>
  1181. <value />
  1182. </layoutInfo>
  1183. <properties>
  1184. <property>
  1185. <name>caption</name>
  1186. <type>java.lang.String</type>
  1187. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contnsrztdm].properties.property[caption].value</value>
  1188. <isMultiLan>true</isMultiLan>
  1189. <userDefined>true</userDefined>
  1190. </property>
  1191. <property>
  1192. <name>lineWidth</name>
  1193. <type>int</type>
  1194. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contnsrztdm].properties.property[lineWidth].value</value>
  1195. <isMultiLan>false</isMultiLan>
  1196. <userDefined>true</userDefined>
  1197. </property>
  1198. </properties>
  1199. <parent>
  1200. <key name="name" value="rootForm" />
  1201. </parent>
  1202. </component>
  1203. <component>
  1204. <name>contnsrztmc</name>
  1205. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contnsrztmc].alias</alias>
  1206. <userDefined>true</userDefined>
  1207. <classType>com.kingdee.bos.ctrl.web.LabelContainer</classType>
  1208. <isContainer>true</isContainer>
  1209. <constraints>x=0;y=0;width=270;height=19;autoSize=0</constraints>
  1210. <tabIndex>0</tabIndex>
  1211. <herited>false</herited>
  1212. <bimUIObjectPK />
  1213. <layoutInfo>
  1214. <name />
  1215. <type>LabelContainerLayout</type>
  1216. <value />
  1217. </layoutInfo>
  1218. <properties>
  1219. <property>
  1220. <name>caption</name>
  1221. <type>java.lang.String</type>
  1222. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contnsrztmc].properties.property[caption].value</value>
  1223. <isMultiLan>true</isMultiLan>
  1224. <userDefined>true</userDefined>
  1225. </property>
  1226. <property>
  1227. <name>lineWidth</name>
  1228. <type>int</type>
  1229. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contnsrztmc].properties.property[lineWidth].value</value>
  1230. <isMultiLan>false</isMultiLan>
  1231. <userDefined>true</userDefined>
  1232. </property>
  1233. </properties>
  1234. <parent>
  1235. <key name="name" value="rootForm" />
  1236. </parent>
  1237. </component>
  1238. <component>
  1239. <name>txtName</name>
  1240. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtName].alias</alias>
  1241. <userDefined>false</userDefined>
  1242. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  1243. <isContainer>false</isContainer>
  1244. <constraints>7</constraints>
  1245. <tabIndex>0</tabIndex>
  1246. <herited>false</herited>
  1247. <bimUIObjectPK />
  1248. <properties>
  1249. <property>
  1250. <name>maxLength</name>
  1251. <type>int</type>
  1252. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtName].properties.property[maxLength].value</value>
  1253. <isMultiLan>false</isMultiLan>
  1254. <userDefined>false</userDefined>
  1255. </property>
  1256. </properties>
  1257. <parent>
  1258. <key name="name" value="contName" />
  1259. </parent>
  1260. <propertyBindings>
  1261. <propertyBinding>
  1262. <propertyName>value</propertyName>
  1263. <propertyType>java.lang.String</propertyType>
  1264. <bindingObject>editData</bindingObject>
  1265. <bindingField>name</bindingField>
  1266. <fieldType>String</fieldType>
  1267. <accessType>2</accessType>
  1268. <autoMode>false</autoMode>
  1269. <herited>false</herited>
  1270. <userDefined>false</userDefined>
  1271. </propertyBinding>
  1272. </propertyBindings>
  1273. </component>
  1274. <component>
  1275. <name>txtNumber</name>
  1276. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtNumber].alias</alias>
  1277. <userDefined>false</userDefined>
  1278. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  1279. <isContainer>false</isContainer>
  1280. <constraints>7</constraints>
  1281. <tabIndex>0</tabIndex>
  1282. <herited>false</herited>
  1283. <bimUIObjectPK />
  1284. <properties>
  1285. <property>
  1286. <name>maxLength</name>
  1287. <type>int</type>
  1288. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtNumber].properties.property[maxLength].value</value>
  1289. <isMultiLan>false</isMultiLan>
  1290. <userDefined>false</userDefined>
  1291. </property>
  1292. </properties>
  1293. <parent>
  1294. <key name="name" value="contNumber" />
  1295. </parent>
  1296. <propertyBindings>
  1297. <propertyBinding>
  1298. <propertyName>value</propertyName>
  1299. <propertyType>java.lang.String</propertyType>
  1300. <bindingObject>editData</bindingObject>
  1301. <bindingField>number</bindingField>
  1302. <fieldType>String</fieldType>
  1303. <accessType>2</accessType>
  1304. <autoMode>false</autoMode>
  1305. <herited>false</herited>
  1306. <userDefined>false</userDefined>
  1307. </propertyBinding>
  1308. </propertyBindings>
  1309. </component>
  1310. <component>
  1311. <name>txtDescription</name>
  1312. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtDescription].alias</alias>
  1313. <userDefined>false</userDefined>
  1314. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  1315. <isContainer>false</isContainer>
  1316. <constraints>7</constraints>
  1317. <tabIndex>0</tabIndex>
  1318. <herited>false</herited>
  1319. <bimUIObjectPK />
  1320. <properties>
  1321. <property>
  1322. <name>maxLength</name>
  1323. <type>int</type>
  1324. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtDescription].properties.property[maxLength].value</value>
  1325. <isMultiLan>false</isMultiLan>
  1326. <userDefined>false</userDefined>
  1327. </property>
  1328. </properties>
  1329. <parent>
  1330. <key name="name" value="contDescription" />
  1331. </parent>
  1332. <propertyBindings>
  1333. <propertyBinding>
  1334. <propertyName>value</propertyName>
  1335. <propertyType>java.lang.String</propertyType>
  1336. <bindingObject>editData</bindingObject>
  1337. <bindingField>description</bindingField>
  1338. <fieldType>String</fieldType>
  1339. <accessType>2</accessType>
  1340. <autoMode>false</autoMode>
  1341. <herited>false</herited>
  1342. <userDefined>false</userDefined>
  1343. </propertyBinding>
  1344. </propertyBindings>
  1345. </component>
  1346. <component>
  1347. <name>txtSimpleName</name>
  1348. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtSimpleName].alias</alias>
  1349. <userDefined>false</userDefined>
  1350. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  1351. <isContainer>false</isContainer>
  1352. <constraints>7</constraints>
  1353. <tabIndex>0</tabIndex>
  1354. <herited>false</herited>
  1355. <bimUIObjectPK />
  1356. <properties>
  1357. <property>
  1358. <name>maxLength</name>
  1359. <type>int</type>
  1360. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtSimpleName].properties.property[maxLength].value</value>
  1361. <isMultiLan>false</isMultiLan>
  1362. <userDefined>false</userDefined>
  1363. </property>
  1364. </properties>
  1365. <parent>
  1366. <key name="name" value="contSimpleName" />
  1367. </parent>
  1368. <propertyBindings>
  1369. <propertyBinding>
  1370. <propertyName>value</propertyName>
  1371. <propertyType>java.lang.String</propertyType>
  1372. <bindingObject>editData</bindingObject>
  1373. <bindingField>simpleName</bindingField>
  1374. <fieldType>String</fieldType>
  1375. <accessType>2</accessType>
  1376. <autoMode>false</autoMode>
  1377. <herited>false</herited>
  1378. <userDefined>false</userDefined>
  1379. </propertyBinding>
  1380. </propertyBindings>
  1381. </component>
  1382. <component>
  1383. <name>btnSave</name>
  1384. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[btnSave].alias</alias>
  1385. <userDefined>false</userDefined>
  1386. <classType>com.kingdee.bos.ctrl.web.Button</classType>
  1387. <isContainer>false</isContainer>
  1388. <constraints>0</constraints>
  1389. <tabIndex>0</tabIndex>
  1390. <herited>false</herited>
  1391. <bimUIObjectPK />
  1392. <properties>
  1393. <property>
  1394. <name>label</name>
  1395. <type>java.lang.String</type>
  1396. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[btnSave].properties.property[label].value</value>
  1397. <isMultiLan>true</isMultiLan>
  1398. <userDefined>false</userDefined>
  1399. </property>
  1400. <property>
  1401. <name>actionBinding</name>
  1402. <type>java.lang.String</type>
  1403. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[btnSave].properties.property[actionBinding].value</value>
  1404. <isMultiLan>false</isMultiLan>
  1405. <userDefined>false</userDefined>
  1406. </property>
  1407. </properties>
  1408. <parent>
  1409. <key name="name" value="rootToolBar" />
  1410. </parent>
  1411. </component>
  1412. <component>
  1413. <name>btnSubmit</name>
  1414. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[btnSubmit].alias</alias>
  1415. <userDefined>false</userDefined>
  1416. <classType>com.kingdee.bos.ctrl.web.Button</classType>
  1417. <isContainer>false</isContainer>
  1418. <constraints>1</constraints>
  1419. <tabIndex>0</tabIndex>
  1420. <herited>false</herited>
  1421. <bimUIObjectPK />
  1422. <properties>
  1423. <property>
  1424. <name>label</name>
  1425. <type>java.lang.String</type>
  1426. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[btnSubmit].properties.property[label].value</value>
  1427. <isMultiLan>true</isMultiLan>
  1428. <userDefined>false</userDefined>
  1429. </property>
  1430. <property>
  1431. <name>actionBinding</name>
  1432. <type>java.lang.String</type>
  1433. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[btnSubmit].properties.property[actionBinding].value</value>
  1434. <isMultiLan>false</isMultiLan>
  1435. <userDefined>false</userDefined>
  1436. </property>
  1437. </properties>
  1438. <parent>
  1439. <key name="name" value="rootToolBar" />
  1440. </parent>
  1441. </component>
  1442. <component>
  1443. <name>btnCopy</name>
  1444. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[btnCopy].alias</alias>
  1445. <userDefined>false</userDefined>
  1446. <classType>com.kingdee.bos.ctrl.web.Button</classType>
  1447. <isContainer>false</isContainer>
  1448. <constraints>2</constraints>
  1449. <tabIndex>0</tabIndex>
  1450. <herited>false</herited>
  1451. <bimUIObjectPK />
  1452. <properties>
  1453. <property>
  1454. <name>label</name>
  1455. <type>java.lang.String</type>
  1456. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[btnCopy].properties.property[label].value</value>
  1457. <isMultiLan>true</isMultiLan>
  1458. <userDefined>false</userDefined>
  1459. </property>
  1460. <property>
  1461. <name>actionBinding</name>
  1462. <type>java.lang.String</type>
  1463. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[btnCopy].properties.property[actionBinding].value</value>
  1464. <isMultiLan>false</isMultiLan>
  1465. <userDefined>false</userDefined>
  1466. </property>
  1467. </properties>
  1468. <parent>
  1469. <key name="name" value="rootToolBar" />
  1470. </parent>
  1471. </component>
  1472. <component>
  1473. <name>btnRemove</name>
  1474. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[btnRemove].alias</alias>
  1475. <userDefined>false</userDefined>
  1476. <classType>com.kingdee.bos.ctrl.web.Button</classType>
  1477. <isContainer>false</isContainer>
  1478. <constraints>3</constraints>
  1479. <tabIndex>0</tabIndex>
  1480. <herited>false</herited>
  1481. <bimUIObjectPK />
  1482. <properties>
  1483. <property>
  1484. <name>label</name>
  1485. <type>java.lang.String</type>
  1486. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[btnRemove].properties.property[label].value</value>
  1487. <isMultiLan>true</isMultiLan>
  1488. <userDefined>false</userDefined>
  1489. </property>
  1490. <property>
  1491. <name>actionBinding</name>
  1492. <type>java.lang.String</type>
  1493. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[btnRemove].properties.property[actionBinding].value</value>
  1494. <isMultiLan>false</isMultiLan>
  1495. <userDefined>false</userDefined>
  1496. </property>
  1497. </properties>
  1498. <parent>
  1499. <key name="name" value="rootToolBar" />
  1500. </parent>
  1501. </component>
  1502. <component>
  1503. <name>btnExit</name>
  1504. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[btnExit].alias</alias>
  1505. <userDefined>false</userDefined>
  1506. <classType>com.kingdee.bos.ctrl.web.Button</classType>
  1507. <isContainer>false</isContainer>
  1508. <constraints>4</constraints>
  1509. <tabIndex>0</tabIndex>
  1510. <herited>false</herited>
  1511. <bimUIObjectPK />
  1512. <properties>
  1513. <property>
  1514. <name>label</name>
  1515. <type>java.lang.String</type>
  1516. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[btnExit].properties.property[label].value</value>
  1517. <isMultiLan>true</isMultiLan>
  1518. <userDefined>false</userDefined>
  1519. </property>
  1520. <property>
  1521. <name>actionBinding</name>
  1522. <type>java.lang.String</type>
  1523. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[btnExit].properties.property[actionBinding].value</value>
  1524. <isMultiLan>false</isMultiLan>
  1525. <userDefined>false</userDefined>
  1526. </property>
  1527. </properties>
  1528. <parent>
  1529. <key name="name" value="rootToolBar" />
  1530. </parent>
  1531. </component>
  1532. <component>
  1533. <name>txtdjxhid</name>
  1534. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtdjxhid].alias</alias>
  1535. <userDefined>true</userDefined>
  1536. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  1537. <isContainer>false</isContainer>
  1538. <constraints>3</constraints>
  1539. <tabIndex>10</tabIndex>
  1540. <herited>false</herited>
  1541. <bimUIObjectPK />
  1542. <properties>
  1543. <property>
  1544. <name>maxLength</name>
  1545. <type>int</type>
  1546. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtdjxhid].properties.property[maxLength].value</value>
  1547. <isMultiLan>false</isMultiLan>
  1548. <userDefined>true</userDefined>
  1549. </property>
  1550. </properties>
  1551. <parent>
  1552. <key name="name" value="contdjxhid" />
  1553. </parent>
  1554. <propertyBindings>
  1555. <propertyBinding>
  1556. <propertyName>text</propertyName>
  1557. <propertyType>java.lang.String</propertyType>
  1558. <bindingObject>editData</bindingObject>
  1559. <bindingField>djxhid</bindingField>
  1560. <fieldType>String</fieldType>
  1561. <accessType>2</accessType>
  1562. <autoMode>false</autoMode>
  1563. <herited>false</herited>
  1564. <userDefined>true</userDefined>
  1565. </propertyBinding>
  1566. </propertyBindings>
  1567. </component>
  1568. <component>
  1569. <name>txtqymc</name>
  1570. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtqymc].alias</alias>
  1571. <userDefined>true</userDefined>
  1572. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  1573. <isContainer>false</isContainer>
  1574. <constraints>3</constraints>
  1575. <tabIndex>11</tabIndex>
  1576. <herited>false</herited>
  1577. <bimUIObjectPK />
  1578. <properties>
  1579. <property>
  1580. <name>maxLength</name>
  1581. <type>int</type>
  1582. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtqymc].properties.property[maxLength].value</value>
  1583. <isMultiLan>false</isMultiLan>
  1584. <userDefined>true</userDefined>
  1585. </property>
  1586. </properties>
  1587. <parent>
  1588. <key name="name" value="contqymc" />
  1589. </parent>
  1590. <propertyBindings>
  1591. <propertyBinding>
  1592. <propertyName>text</propertyName>
  1593. <propertyType>java.lang.String</propertyType>
  1594. <bindingObject>editData</bindingObject>
  1595. <bindingField>qymc</bindingField>
  1596. <fieldType>String</fieldType>
  1597. <accessType>2</accessType>
  1598. <autoMode>false</autoMode>
  1599. <herited>false</herited>
  1600. <userDefined>true</userDefined>
  1601. </propertyBinding>
  1602. </propertyBindings>
  1603. </component>
  1604. <component>
  1605. <name>txtfrxm</name>
  1606. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtfrxm].alias</alias>
  1607. <userDefined>true</userDefined>
  1608. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  1609. <isContainer>false</isContainer>
  1610. <constraints>3</constraints>
  1611. <tabIndex>12</tabIndex>
  1612. <herited>false</herited>
  1613. <bimUIObjectPK />
  1614. <properties>
  1615. <property>
  1616. <name>maxLength</name>
  1617. <type>int</type>
  1618. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtfrxm].properties.property[maxLength].value</value>
  1619. <isMultiLan>false</isMultiLan>
  1620. <userDefined>true</userDefined>
  1621. </property>
  1622. </properties>
  1623. <parent>
  1624. <key name="name" value="contfrxm" />
  1625. </parent>
  1626. <propertyBindings>
  1627. <propertyBinding>
  1628. <propertyName>text</propertyName>
  1629. <propertyType>java.lang.String</propertyType>
  1630. <bindingObject>editData</bindingObject>
  1631. <bindingField>frxm</bindingField>
  1632. <fieldType>String</fieldType>
  1633. <accessType>2</accessType>
  1634. <autoMode>false</autoMode>
  1635. <herited>false</herited>
  1636. <userDefined>true</userDefined>
  1637. </propertyBinding>
  1638. </propertyBindings>
  1639. </component>
  1640. <component>
  1641. <name>txtlxdh</name>
  1642. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtlxdh].alias</alias>
  1643. <userDefined>true</userDefined>
  1644. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  1645. <isContainer>false</isContainer>
  1646. <constraints>3</constraints>
  1647. <tabIndex>13</tabIndex>
  1648. <herited>false</herited>
  1649. <bimUIObjectPK />
  1650. <properties>
  1651. <property>
  1652. <name>maxLength</name>
  1653. <type>int</type>
  1654. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtlxdh].properties.property[maxLength].value</value>
  1655. <isMultiLan>false</isMultiLan>
  1656. <userDefined>true</userDefined>
  1657. </property>
  1658. </properties>
  1659. <parent>
  1660. <key name="name" value="contlxdh" />
  1661. </parent>
  1662. <propertyBindings>
  1663. <propertyBinding>
  1664. <propertyName>text</propertyName>
  1665. <propertyType>java.lang.String</propertyType>
  1666. <bindingObject>editData</bindingObject>
  1667. <bindingField>lxdh</bindingField>
  1668. <fieldType>String</fieldType>
  1669. <accessType>2</accessType>
  1670. <autoMode>false</autoMode>
  1671. <herited>false</herited>
  1672. <userDefined>true</userDefined>
  1673. </propertyBinding>
  1674. </propertyBindings>
  1675. </component>
  1676. <component>
  1677. <name>txtscjydz</name>
  1678. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtscjydz].alias</alias>
  1679. <userDefined>true</userDefined>
  1680. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  1681. <isContainer>false</isContainer>
  1682. <constraints>3</constraints>
  1683. <tabIndex>14</tabIndex>
  1684. <herited>false</herited>
  1685. <bimUIObjectPK />
  1686. <properties>
  1687. <property>
  1688. <name>maxLength</name>
  1689. <type>int</type>
  1690. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtscjydz].properties.property[maxLength].value</value>
  1691. <isMultiLan>false</isMultiLan>
  1692. <userDefined>true</userDefined>
  1693. </property>
  1694. </properties>
  1695. <parent>
  1696. <key name="name" value="contscjydz" />
  1697. </parent>
  1698. <propertyBindings>
  1699. <propertyBinding>
  1700. <propertyName>text</propertyName>
  1701. <propertyType>java.lang.String</propertyType>
  1702. <bindingObject>editData</bindingObject>
  1703. <bindingField>scjydz</bindingField>
  1704. <fieldType>String</fieldType>
  1705. <accessType>2</accessType>
  1706. <autoMode>false</autoMode>
  1707. <herited>false</herited>
  1708. <userDefined>true</userDefined>
  1709. </propertyBinding>
  1710. </propertyBindings>
  1711. </component>
  1712. <component>
  1713. <name>txthymc</name>
  1714. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txthymc].alias</alias>
  1715. <userDefined>true</userDefined>
  1716. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  1717. <isContainer>false</isContainer>
  1718. <constraints>3</constraints>
  1719. <tabIndex>15</tabIndex>
  1720. <herited>false</herited>
  1721. <bimUIObjectPK />
  1722. <properties>
  1723. <property>
  1724. <name>maxLength</name>
  1725. <type>int</type>
  1726. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txthymc].properties.property[maxLength].value</value>
  1727. <isMultiLan>false</isMultiLan>
  1728. <userDefined>true</userDefined>
  1729. </property>
  1730. </properties>
  1731. <parent>
  1732. <key name="name" value="conthymc" />
  1733. </parent>
  1734. <propertyBindings>
  1735. <propertyBinding>
  1736. <propertyName>text</propertyName>
  1737. <propertyType>java.lang.String</propertyType>
  1738. <bindingObject>editData</bindingObject>
  1739. <bindingField>hymc</bindingField>
  1740. <fieldType>String</fieldType>
  1741. <accessType>2</accessType>
  1742. <autoMode>false</autoMode>
  1743. <herited>false</herited>
  1744. <userDefined>true</userDefined>
  1745. </propertyBinding>
  1746. </propertyBindings>
  1747. </component>
  1748. <component>
  1749. <name>txtzgswjgmc</name>
  1750. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtzgswjgmc].alias</alias>
  1751. <userDefined>true</userDefined>
  1752. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  1753. <isContainer>false</isContainer>
  1754. <constraints>3</constraints>
  1755. <tabIndex>16</tabIndex>
  1756. <herited>false</herited>
  1757. <bimUIObjectPK />
  1758. <properties>
  1759. <property>
  1760. <name>maxLength</name>
  1761. <type>int</type>
  1762. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtzgswjgmc].properties.property[maxLength].value</value>
  1763. <isMultiLan>false</isMultiLan>
  1764. <userDefined>true</userDefined>
  1765. </property>
  1766. </properties>
  1767. <parent>
  1768. <key name="name" value="contzgswjgmc" />
  1769. </parent>
  1770. <propertyBindings>
  1771. <propertyBinding>
  1772. <propertyName>text</propertyName>
  1773. <propertyType>java.lang.String</propertyType>
  1774. <bindingObject>editData</bindingObject>
  1775. <bindingField>zgswjgmc</bindingField>
  1776. <fieldType>String</fieldType>
  1777. <accessType>2</accessType>
  1778. <autoMode>false</autoMode>
  1779. <herited>false</herited>
  1780. <userDefined>true</userDefined>
  1781. </propertyBinding>
  1782. </propertyBindings>
  1783. </component>
  1784. <component>
  1785. <name>txtzgswjg</name>
  1786. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtzgswjg].alias</alias>
  1787. <userDefined>true</userDefined>
  1788. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  1789. <isContainer>false</isContainer>
  1790. <constraints>3</constraints>
  1791. <tabIndex>17</tabIndex>
  1792. <herited>false</herited>
  1793. <bimUIObjectPK />
  1794. <properties>
  1795. <property>
  1796. <name>maxLength</name>
  1797. <type>int</type>
  1798. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtzgswjg].properties.property[maxLength].value</value>
  1799. <isMultiLan>false</isMultiLan>
  1800. <userDefined>true</userDefined>
  1801. </property>
  1802. </properties>
  1803. <parent>
  1804. <key name="name" value="contzgswjg" />
  1805. </parent>
  1806. <propertyBindings>
  1807. <propertyBinding>
  1808. <propertyName>text</propertyName>
  1809. <propertyType>java.lang.String</propertyType>
  1810. <bindingObject>editData</bindingObject>
  1811. <bindingField>zgswjg</bindingField>
  1812. <fieldType>String</fieldType>
  1813. <accessType>2</accessType>
  1814. <autoMode>false</autoMode>
  1815. <herited>false</herited>
  1816. <userDefined>true</userDefined>
  1817. </propertyBinding>
  1818. </propertyBindings>
  1819. </component>
  1820. <component>
  1821. <name>txtzgswjgskdm</name>
  1822. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtzgswjgskdm].alias</alias>
  1823. <userDefined>true</userDefined>
  1824. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  1825. <isContainer>false</isContainer>
  1826. <constraints>3</constraints>
  1827. <tabIndex>18</tabIndex>
  1828. <herited>false</herited>
  1829. <bimUIObjectPK />
  1830. <properties>
  1831. <property>
  1832. <name>maxLength</name>
  1833. <type>int</type>
  1834. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtzgswjgskdm].properties.property[maxLength].value</value>
  1835. <isMultiLan>false</isMultiLan>
  1836. <userDefined>true</userDefined>
  1837. </property>
  1838. </properties>
  1839. <parent>
  1840. <key name="name" value="contzgswjgskdm" />
  1841. </parent>
  1842. <propertyBindings>
  1843. <propertyBinding>
  1844. <propertyName>text</propertyName>
  1845. <propertyType>java.lang.String</propertyType>
  1846. <bindingObject>editData</bindingObject>
  1847. <bindingField>zgswjgskdm</bindingField>
  1848. <fieldType>String</fieldType>
  1849. <accessType>2</accessType>
  1850. <autoMode>false</autoMode>
  1851. <herited>false</herited>
  1852. <userDefined>true</userDefined>
  1853. </propertyBinding>
  1854. </propertyBindings>
  1855. </component>
  1856. <component>
  1857. <name>txtzgswjgskmc</name>
  1858. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtzgswjgskmc].alias</alias>
  1859. <userDefined>true</userDefined>
  1860. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  1861. <isContainer>false</isContainer>
  1862. <constraints>3</constraints>
  1863. <tabIndex>19</tabIndex>
  1864. <herited>false</herited>
  1865. <bimUIObjectPK />
  1866. <properties>
  1867. <property>
  1868. <name>maxLength</name>
  1869. <type>int</type>
  1870. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtzgswjgskmc].properties.property[maxLength].value</value>
  1871. <isMultiLan>false</isMultiLan>
  1872. <userDefined>true</userDefined>
  1873. </property>
  1874. </properties>
  1875. <parent>
  1876. <key name="name" value="contzgswjgskmc" />
  1877. </parent>
  1878. <propertyBindings>
  1879. <propertyBinding>
  1880. <propertyName>text</propertyName>
  1881. <propertyType>java.lang.String</propertyType>
  1882. <bindingObject>editData</bindingObject>
  1883. <bindingField>zgswjgskmc</bindingField>
  1884. <fieldType>String</fieldType>
  1885. <accessType>2</accessType>
  1886. <autoMode>false</autoMode>
  1887. <herited>false</herited>
  1888. <userDefined>true</userDefined>
  1889. </propertyBinding>
  1890. </propertyBindings>
  1891. </component>
  1892. <component>
  1893. <name>txtfbmba</name>
  1894. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtfbmba].alias</alias>
  1895. <userDefined>true</userDefined>
  1896. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  1897. <isContainer>false</isContainer>
  1898. <constraints>3</constraints>
  1899. <tabIndex>20</tabIndex>
  1900. <herited>false</herited>
  1901. <bimUIObjectPK />
  1902. <properties>
  1903. <property>
  1904. <name>maxLength</name>
  1905. <type>int</type>
  1906. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtfbmba].properties.property[maxLength].value</value>
  1907. <isMultiLan>false</isMultiLan>
  1908. <userDefined>true</userDefined>
  1909. </property>
  1910. </properties>
  1911. <parent>
  1912. <key name="name" value="contfbmba" />
  1913. </parent>
  1914. <propertyBindings>
  1915. <propertyBinding>
  1916. <propertyName>text</propertyName>
  1917. <propertyType>java.lang.String</propertyType>
  1918. <bindingObject>editData</bindingObject>
  1919. <bindingField>fbmba</bindingField>
  1920. <fieldType>String</fieldType>
  1921. <accessType>2</accessType>
  1922. <autoMode>false</autoMode>
  1923. <herited>false</herited>
  1924. <userDefined>true</userDefined>
  1925. </propertyBinding>
  1926. </propertyBindings>
  1927. </component>
  1928. <component>
  1929. <name>txtsmzh</name>
  1930. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtsmzh].alias</alias>
  1931. <userDefined>true</userDefined>
  1932. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  1933. <isContainer>false</isContainer>
  1934. <constraints>3</constraints>
  1935. <tabIndex>21</tabIndex>
  1936. <herited>false</herited>
  1937. <bimUIObjectPK />
  1938. <properties>
  1939. <property>
  1940. <name>maxLength</name>
  1941. <type>int</type>
  1942. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtsmzh].properties.property[maxLength].value</value>
  1943. <isMultiLan>false</isMultiLan>
  1944. <userDefined>true</userDefined>
  1945. </property>
  1946. </properties>
  1947. <parent>
  1948. <key name="name" value="contsmzh" />
  1949. </parent>
  1950. <propertyBindings>
  1951. <propertyBinding>
  1952. <propertyName>text</propertyName>
  1953. <propertyType>java.lang.String</propertyType>
  1954. <bindingObject>editData</bindingObject>
  1955. <bindingField>smzh</bindingField>
  1956. <fieldType>String</fieldType>
  1957. <accessType>2</accessType>
  1958. <autoMode>false</autoMode>
  1959. <herited>false</herited>
  1960. <userDefined>true</userDefined>
  1961. </propertyBinding>
  1962. </propertyBindings>
  1963. </component>
  1964. <component>
  1965. <name>txtshxydm</name>
  1966. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtshxydm].alias</alias>
  1967. <userDefined>true</userDefined>
  1968. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  1969. <isContainer>false</isContainer>
  1970. <constraints>3</constraints>
  1971. <tabIndex>22</tabIndex>
  1972. <herited>false</herited>
  1973. <bimUIObjectPK />
  1974. <properties>
  1975. <property>
  1976. <name>maxLength</name>
  1977. <type>int</type>
  1978. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtshxydm].properties.property[maxLength].value</value>
  1979. <isMultiLan>false</isMultiLan>
  1980. <userDefined>true</userDefined>
  1981. </property>
  1982. </properties>
  1983. <parent>
  1984. <key name="name" value="contshxydm" />
  1985. </parent>
  1986. <propertyBindings>
  1987. <propertyBinding>
  1988. <propertyName>text</propertyName>
  1989. <propertyType>java.lang.String</propertyType>
  1990. <bindingObject>editData</bindingObject>
  1991. <bindingField>shxydm</bindingField>
  1992. <fieldType>String</fieldType>
  1993. <accessType>2</accessType>
  1994. <autoMode>false</autoMode>
  1995. <herited>false</herited>
  1996. <userDefined>true</userDefined>
  1997. </propertyBinding>
  1998. </propertyBindings>
  1999. </component>
  2000. <component>
  2001. <name>txtnsrsbm</name>
  2002. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtnsrsbm].alias</alias>
  2003. <userDefined>true</userDefined>
  2004. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  2005. <isContainer>false</isContainer>
  2006. <constraints>3</constraints>
  2007. <tabIndex>23</tabIndex>
  2008. <herited>false</herited>
  2009. <bimUIObjectPK />
  2010. <properties>
  2011. <property>
  2012. <name>maxLength</name>
  2013. <type>int</type>
  2014. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtnsrsbm].properties.property[maxLength].value</value>
  2015. <isMultiLan>false</isMultiLan>
  2016. <userDefined>true</userDefined>
  2017. </property>
  2018. </properties>
  2019. <parent>
  2020. <key name="name" value="contnsrsbm" />
  2021. </parent>
  2022. <propertyBindings>
  2023. <propertyBinding>
  2024. <propertyName>text</propertyName>
  2025. <propertyType>java.lang.String</propertyType>
  2026. <bindingObject>editData</bindingObject>
  2027. <bindingField>nsrsbm</bindingField>
  2028. <fieldType>String</fieldType>
  2029. <accessType>2</accessType>
  2030. <autoMode>false</autoMode>
  2031. <herited>false</herited>
  2032. <userDefined>true</userDefined>
  2033. </propertyBinding>
  2034. </propertyBindings>
  2035. </component>
  2036. <component>
  2037. <name>txtyzbm</name>
  2038. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtyzbm].alias</alias>
  2039. <userDefined>true</userDefined>
  2040. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  2041. <isContainer>false</isContainer>
  2042. <constraints>3</constraints>
  2043. <tabIndex>24</tabIndex>
  2044. <herited>false</herited>
  2045. <bimUIObjectPK />
  2046. <properties>
  2047. <property>
  2048. <name>maxLength</name>
  2049. <type>int</type>
  2050. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtyzbm].properties.property[maxLength].value</value>
  2051. <isMultiLan>false</isMultiLan>
  2052. <userDefined>true</userDefined>
  2053. </property>
  2054. </properties>
  2055. <parent>
  2056. <key name="name" value="contyzbm" />
  2057. </parent>
  2058. <propertyBindings>
  2059. <propertyBinding>
  2060. <propertyName>text</propertyName>
  2061. <propertyType>java.lang.String</propertyType>
  2062. <bindingObject>editData</bindingObject>
  2063. <bindingField>yzbm</bindingField>
  2064. <fieldType>String</fieldType>
  2065. <accessType>2</accessType>
  2066. <autoMode>false</autoMode>
  2067. <herited>false</herited>
  2068. <userDefined>true</userDefined>
  2069. </propertyBinding>
  2070. </propertyBindings>
  2071. </component>
  2072. <component>
  2073. <name>txtcwxm</name>
  2074. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtcwxm].alias</alias>
  2075. <userDefined>true</userDefined>
  2076. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  2077. <isContainer>false</isContainer>
  2078. <constraints>3</constraints>
  2079. <tabIndex>25</tabIndex>
  2080. <herited>false</herited>
  2081. <bimUIObjectPK />
  2082. <properties>
  2083. <property>
  2084. <name>maxLength</name>
  2085. <type>int</type>
  2086. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtcwxm].properties.property[maxLength].value</value>
  2087. <isMultiLan>false</isMultiLan>
  2088. <userDefined>true</userDefined>
  2089. </property>
  2090. </properties>
  2091. <parent>
  2092. <key name="name" value="contcwxm" />
  2093. </parent>
  2094. <propertyBindings>
  2095. <propertyBinding>
  2096. <propertyName>text</propertyName>
  2097. <propertyType>java.lang.String</propertyType>
  2098. <bindingObject>editData</bindingObject>
  2099. <bindingField>cwxm</bindingField>
  2100. <fieldType>String</fieldType>
  2101. <accessType>2</accessType>
  2102. <autoMode>false</autoMode>
  2103. <herited>false</herited>
  2104. <userDefined>true</userDefined>
  2105. </propertyBinding>
  2106. </propertyBindings>
  2107. </component>
  2108. <component>
  2109. <name>txthydm</name>
  2110. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txthydm].alias</alias>
  2111. <userDefined>true</userDefined>
  2112. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  2113. <isContainer>false</isContainer>
  2114. <constraints>3</constraints>
  2115. <tabIndex>26</tabIndex>
  2116. <herited>false</herited>
  2117. <bimUIObjectPK />
  2118. <properties>
  2119. <property>
  2120. <name>maxLength</name>
  2121. <type>int</type>
  2122. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txthydm].properties.property[maxLength].value</value>
  2123. <isMultiLan>false</isMultiLan>
  2124. <userDefined>true</userDefined>
  2125. </property>
  2126. </properties>
  2127. <parent>
  2128. <key name="name" value="conthydm" />
  2129. </parent>
  2130. <propertyBindings>
  2131. <propertyBinding>
  2132. <propertyName>text</propertyName>
  2133. <propertyType>java.lang.String</propertyType>
  2134. <bindingObject>editData</bindingObject>
  2135. <bindingField>hydm</bindingField>
  2136. <fieldType>String</fieldType>
  2137. <accessType>2</accessType>
  2138. <autoMode>false</autoMode>
  2139. <herited>false</herited>
  2140. <userDefined>true</userDefined>
  2141. </propertyBinding>
  2142. </propertyBindings>
  2143. </component>
  2144. <component>
  2145. <name>txtjjlxdm</name>
  2146. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtjjlxdm].alias</alias>
  2147. <userDefined>true</userDefined>
  2148. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  2149. <isContainer>false</isContainer>
  2150. <constraints>3</constraints>
  2151. <tabIndex>27</tabIndex>
  2152. <herited>false</herited>
  2153. <bimUIObjectPK />
  2154. <properties>
  2155. <property>
  2156. <name>maxLength</name>
  2157. <type>int</type>
  2158. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtjjlxdm].properties.property[maxLength].value</value>
  2159. <isMultiLan>false</isMultiLan>
  2160. <userDefined>true</userDefined>
  2161. </property>
  2162. </properties>
  2163. <parent>
  2164. <key name="name" value="contjjlxdm" />
  2165. </parent>
  2166. <propertyBindings>
  2167. <propertyBinding>
  2168. <propertyName>text</propertyName>
  2169. <propertyType>java.lang.String</propertyType>
  2170. <bindingObject>editData</bindingObject>
  2171. <bindingField>jjlxdm</bindingField>
  2172. <fieldType>String</fieldType>
  2173. <accessType>2</accessType>
  2174. <autoMode>false</autoMode>
  2175. <herited>false</herited>
  2176. <userDefined>true</userDefined>
  2177. </propertyBinding>
  2178. </propertyBindings>
  2179. </component>
  2180. <component>
  2181. <name>txtjjlxmc</name>
  2182. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtjjlxmc].alias</alias>
  2183. <userDefined>true</userDefined>
  2184. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  2185. <isContainer>false</isContainer>
  2186. <constraints>3</constraints>
  2187. <tabIndex>28</tabIndex>
  2188. <herited>false</herited>
  2189. <bimUIObjectPK />
  2190. <properties>
  2191. <property>
  2192. <name>maxLength</name>
  2193. <type>int</type>
  2194. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtjjlxmc].properties.property[maxLength].value</value>
  2195. <isMultiLan>false</isMultiLan>
  2196. <userDefined>true</userDefined>
  2197. </property>
  2198. </properties>
  2199. <parent>
  2200. <key name="name" value="contjjlxmc" />
  2201. </parent>
  2202. <propertyBindings>
  2203. <propertyBinding>
  2204. <propertyName>text</propertyName>
  2205. <propertyType>java.lang.String</propertyType>
  2206. <bindingObject>editData</bindingObject>
  2207. <bindingField>jjlxmc</bindingField>
  2208. <fieldType>String</fieldType>
  2209. <accessType>2</accessType>
  2210. <autoMode>false</autoMode>
  2211. <herited>false</herited>
  2212. <userDefined>true</userDefined>
  2213. </propertyBinding>
  2214. </propertyBindings>
  2215. </component>
  2216. <component>
  2217. <name>txtssglydm</name>
  2218. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtssglydm].alias</alias>
  2219. <userDefined>true</userDefined>
  2220. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  2221. <isContainer>false</isContainer>
  2222. <constraints>3</constraints>
  2223. <tabIndex>29</tabIndex>
  2224. <herited>false</herited>
  2225. <bimUIObjectPK />
  2226. <properties>
  2227. <property>
  2228. <name>maxLength</name>
  2229. <type>int</type>
  2230. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtssglydm].properties.property[maxLength].value</value>
  2231. <isMultiLan>false</isMultiLan>
  2232. <userDefined>true</userDefined>
  2233. </property>
  2234. </properties>
  2235. <parent>
  2236. <key name="name" value="contssglydm" />
  2237. </parent>
  2238. <propertyBindings>
  2239. <propertyBinding>
  2240. <propertyName>text</propertyName>
  2241. <propertyType>java.lang.String</propertyType>
  2242. <bindingObject>editData</bindingObject>
  2243. <bindingField>ssglydm</bindingField>
  2244. <fieldType>String</fieldType>
  2245. <accessType>2</accessType>
  2246. <autoMode>false</autoMode>
  2247. <herited>false</herited>
  2248. <userDefined>true</userDefined>
  2249. </propertyBinding>
  2250. </propertyBindings>
  2251. </component>
  2252. <component>
  2253. <name>txtbsrxm</name>
  2254. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtbsrxm].alias</alias>
  2255. <userDefined>true</userDefined>
  2256. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  2257. <isContainer>false</isContainer>
  2258. <constraints>3</constraints>
  2259. <tabIndex>30</tabIndex>
  2260. <herited>false</herited>
  2261. <bimUIObjectPK />
  2262. <properties>
  2263. <property>
  2264. <name>maxLength</name>
  2265. <type>int</type>
  2266. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtbsrxm].properties.property[maxLength].value</value>
  2267. <isMultiLan>false</isMultiLan>
  2268. <userDefined>true</userDefined>
  2269. </property>
  2270. </properties>
  2271. <parent>
  2272. <key name="name" value="contbsrxm" />
  2273. </parent>
  2274. <propertyBindings>
  2275. <propertyBinding>
  2276. <propertyName>text</propertyName>
  2277. <propertyType>java.lang.String</propertyType>
  2278. <bindingObject>editData</bindingObject>
  2279. <bindingField>bsrxm</bindingField>
  2280. <fieldType>String</fieldType>
  2281. <accessType>2</accessType>
  2282. <autoMode>false</autoMode>
  2283. <herited>false</herited>
  2284. <userDefined>true</userDefined>
  2285. </propertyBinding>
  2286. </propertyBindings>
  2287. </component>
  2288. <component>
  2289. <name>txtjdxzdm</name>
  2290. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtjdxzdm].alias</alias>
  2291. <userDefined>true</userDefined>
  2292. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  2293. <isContainer>false</isContainer>
  2294. <constraints>3</constraints>
  2295. <tabIndex>31</tabIndex>
  2296. <herited>false</herited>
  2297. <bimUIObjectPK />
  2298. <properties>
  2299. <property>
  2300. <name>maxLength</name>
  2301. <type>int</type>
  2302. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtjdxzdm].properties.property[maxLength].value</value>
  2303. <isMultiLan>false</isMultiLan>
  2304. <userDefined>true</userDefined>
  2305. </property>
  2306. </properties>
  2307. <parent>
  2308. <key name="name" value="contjdxzdm" />
  2309. </parent>
  2310. <propertyBindings>
  2311. <propertyBinding>
  2312. <propertyName>text</propertyName>
  2313. <propertyType>java.lang.String</propertyType>
  2314. <bindingObject>editData</bindingObject>
  2315. <bindingField>jdxzdm</bindingField>
  2316. <fieldType>String</fieldType>
  2317. <accessType>2</accessType>
  2318. <autoMode>false</autoMode>
  2319. <herited>false</herited>
  2320. <userDefined>true</userDefined>
  2321. </propertyBinding>
  2322. </propertyBindings>
  2323. </component>
  2324. <component>
  2325. <name>txtkjywrdm</name>
  2326. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtkjywrdm].alias</alias>
  2327. <userDefined>true</userDefined>
  2328. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  2329. <isContainer>false</isContainer>
  2330. <constraints>3</constraints>
  2331. <tabIndex>32</tabIndex>
  2332. <herited>false</herited>
  2333. <bimUIObjectPK />
  2334. <properties>
  2335. <property>
  2336. <name>maxLength</name>
  2337. <type>int</type>
  2338. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtkjywrdm].properties.property[maxLength].value</value>
  2339. <isMultiLan>false</isMultiLan>
  2340. <userDefined>true</userDefined>
  2341. </property>
  2342. </properties>
  2343. <parent>
  2344. <key name="name" value="contkjywrdm" />
  2345. </parent>
  2346. <propertyBindings>
  2347. <propertyBinding>
  2348. <propertyName>text</propertyName>
  2349. <propertyType>java.lang.String</propertyType>
  2350. <bindingObject>editData</bindingObject>
  2351. <bindingField>kjywrdm</bindingField>
  2352. <fieldType>String</fieldType>
  2353. <accessType>2</accessType>
  2354. <autoMode>false</autoMode>
  2355. <herited>false</herited>
  2356. <userDefined>true</userDefined>
  2357. </propertyBinding>
  2358. </propertyBindings>
  2359. </component>
  2360. <component>
  2361. <name>txtdjrq</name>
  2362. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtdjrq].alias</alias>
  2363. <userDefined>true</userDefined>
  2364. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  2365. <isContainer>false</isContainer>
  2366. <constraints>3</constraints>
  2367. <tabIndex>33</tabIndex>
  2368. <herited>false</herited>
  2369. <bimUIObjectPK />
  2370. <properties>
  2371. <property>
  2372. <name>maxLength</name>
  2373. <type>int</type>
  2374. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtdjrq].properties.property[maxLength].value</value>
  2375. <isMultiLan>false</isMultiLan>
  2376. <userDefined>true</userDefined>
  2377. </property>
  2378. </properties>
  2379. <parent>
  2380. <key name="name" value="contdjrq" />
  2381. </parent>
  2382. <propertyBindings>
  2383. <propertyBinding>
  2384. <propertyName>text</propertyName>
  2385. <propertyType>java.lang.String</propertyType>
  2386. <bindingObject>editData</bindingObject>
  2387. <bindingField>djrq</bindingField>
  2388. <fieldType>String</fieldType>
  2389. <accessType>2</accessType>
  2390. <autoMode>false</autoMode>
  2391. <herited>false</herited>
  2392. <userDefined>true</userDefined>
  2393. </propertyBinding>
  2394. </propertyBindings>
  2395. </component>
  2396. <component>
  2397. <name>txtswjgdm</name>
  2398. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtswjgdm].alias</alias>
  2399. <userDefined>true</userDefined>
  2400. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  2401. <isContainer>false</isContainer>
  2402. <constraints>3</constraints>
  2403. <tabIndex>34</tabIndex>
  2404. <herited>false</herited>
  2405. <bimUIObjectPK />
  2406. <properties>
  2407. <property>
  2408. <name>maxLength</name>
  2409. <type>int</type>
  2410. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtswjgdm].properties.property[maxLength].value</value>
  2411. <isMultiLan>false</isMultiLan>
  2412. <userDefined>true</userDefined>
  2413. </property>
  2414. </properties>
  2415. <parent>
  2416. <key name="name" value="contswjgdm" />
  2417. </parent>
  2418. <propertyBindings>
  2419. <propertyBinding>
  2420. <propertyName>text</propertyName>
  2421. <propertyType>java.lang.String</propertyType>
  2422. <bindingObject>editData</bindingObject>
  2423. <bindingField>swjgdm</bindingField>
  2424. <fieldType>String</fieldType>
  2425. <accessType>2</accessType>
  2426. <autoMode>false</autoMode>
  2427. <herited>false</herited>
  2428. <userDefined>true</userDefined>
  2429. </propertyBinding>
  2430. </propertyBindings>
  2431. </component>
  2432. <component>
  2433. <name>txtswjgmc</name>
  2434. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtswjgmc].alias</alias>
  2435. <userDefined>true</userDefined>
  2436. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  2437. <isContainer>false</isContainer>
  2438. <constraints>3</constraints>
  2439. <tabIndex>35</tabIndex>
  2440. <herited>false</herited>
  2441. <bimUIObjectPK />
  2442. <properties>
  2443. <property>
  2444. <name>maxLength</name>
  2445. <type>int</type>
  2446. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtswjgmc].properties.property[maxLength].value</value>
  2447. <isMultiLan>false</isMultiLan>
  2448. <userDefined>true</userDefined>
  2449. </property>
  2450. </properties>
  2451. <parent>
  2452. <key name="name" value="contswjgmc" />
  2453. </parent>
  2454. <propertyBindings>
  2455. <propertyBinding>
  2456. <propertyName>text</propertyName>
  2457. <propertyType>java.lang.String</propertyType>
  2458. <bindingObject>editData</bindingObject>
  2459. <bindingField>swjgmc</bindingField>
  2460. <fieldType>String</fieldType>
  2461. <accessType>2</accessType>
  2462. <autoMode>false</autoMode>
  2463. <herited>false</herited>
  2464. <userDefined>true</userDefined>
  2465. </propertyBinding>
  2466. </propertyBindings>
  2467. </component>
  2468. <component>
  2469. <name>txtsfscjyqy</name>
  2470. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtsfscjyqy].alias</alias>
  2471. <userDefined>true</userDefined>
  2472. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  2473. <isContainer>false</isContainer>
  2474. <constraints>3</constraints>
  2475. <tabIndex>36</tabIndex>
  2476. <herited>false</herited>
  2477. <bimUIObjectPK />
  2478. <properties>
  2479. <property>
  2480. <name>maxLength</name>
  2481. <type>int</type>
  2482. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtsfscjyqy].properties.property[maxLength].value</value>
  2483. <isMultiLan>false</isMultiLan>
  2484. <userDefined>true</userDefined>
  2485. </property>
  2486. </properties>
  2487. <parent>
  2488. <key name="name" value="contsfscjyqy" />
  2489. </parent>
  2490. <propertyBindings>
  2491. <propertyBinding>
  2492. <propertyName>text</propertyName>
  2493. <propertyType>java.lang.String</propertyType>
  2494. <bindingObject>editData</bindingObject>
  2495. <bindingField>sfscjyqy</bindingField>
  2496. <fieldType>String</fieldType>
  2497. <accessType>2</accessType>
  2498. <autoMode>false</autoMode>
  2499. <herited>false</herited>
  2500. <userDefined>true</userDefined>
  2501. </propertyBinding>
  2502. </propertyBindings>
  2503. </component>
  2504. <component>
  2505. <name>txtnsrztdm</name>
  2506. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtnsrztdm].alias</alias>
  2507. <userDefined>true</userDefined>
  2508. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  2509. <isContainer>false</isContainer>
  2510. <constraints>3</constraints>
  2511. <tabIndex>37</tabIndex>
  2512. <herited>false</herited>
  2513. <bimUIObjectPK />
  2514. <properties>
  2515. <property>
  2516. <name>maxLength</name>
  2517. <type>int</type>
  2518. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtnsrztdm].properties.property[maxLength].value</value>
  2519. <isMultiLan>false</isMultiLan>
  2520. <userDefined>true</userDefined>
  2521. </property>
  2522. </properties>
  2523. <parent>
  2524. <key name="name" value="contnsrztdm" />
  2525. </parent>
  2526. <propertyBindings>
  2527. <propertyBinding>
  2528. <propertyName>text</propertyName>
  2529. <propertyType>java.lang.String</propertyType>
  2530. <bindingObject>editData</bindingObject>
  2531. <bindingField>nsrztdm</bindingField>
  2532. <fieldType>String</fieldType>
  2533. <accessType>2</accessType>
  2534. <autoMode>false</autoMode>
  2535. <herited>false</herited>
  2536. <userDefined>true</userDefined>
  2537. </propertyBinding>
  2538. </propertyBindings>
  2539. </component>
  2540. <component>
  2541. <name>txtnsrztmc</name>
  2542. <alias>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtnsrztmc].alias</alias>
  2543. <userDefined>true</userDefined>
  2544. <classType>com.kingdee.bos.ctrl.web.TextField</classType>
  2545. <isContainer>false</isContainer>
  2546. <constraints>3</constraints>
  2547. <tabIndex>38</tabIndex>
  2548. <herited>false</herited>
  2549. <bimUIObjectPK />
  2550. <properties>
  2551. <property>
  2552. <name>maxLength</name>
  2553. <type>int</type>
  2554. <value>webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtnsrztmc].properties.property[maxLength].value</value>
  2555. <isMultiLan>false</isMultiLan>
  2556. <userDefined>true</userDefined>
  2557. </property>
  2558. </properties>
  2559. <parent>
  2560. <key name="name" value="contnsrztmc" />
  2561. </parent>
  2562. <propertyBindings>
  2563. <propertyBinding>
  2564. <propertyName>text</propertyName>
  2565. <propertyType>java.lang.String</propertyType>
  2566. <bindingObject>editData</bindingObject>
  2567. <bindingField>nsrztmc</bindingField>
  2568. <fieldType>String</fieldType>
  2569. <accessType>2</accessType>
  2570. <autoMode>false</autoMode>
  2571. <herited>false</herited>
  2572. <userDefined>true</userDefined>
  2573. </propertyBinding>
  2574. </propertyBindings>
  2575. </component>
  2576. </components>
  2577. <dataObjects>
  2578. <dataObject>
  2579. <name>editData</name>
  2580. <type>com.kingdee.eas.custom.shuiyou.registration.app.RegistrationInfo</type>
  2581. <objectType>enty</objectType>
  2582. <herited>false</herited>
  2583. <userDefined>false</userDefined>
  2584. </dataObject>
  2585. </dataObjects>
  2586. <metas>
  2587. <webMeta>
  2588. <name>newMeta0</name>
  2589. <httpEquiv>Pragma</httpEquiv>
  2590. <content>no-cache</content>
  2591. <herited>false</herited>
  2592. <userDefined>false</userDefined>
  2593. </webMeta>
  2594. <webMeta>
  2595. <name>newMeta1</name>
  2596. <httpEquiv>Cache-Control</httpEquiv>
  2597. <content>no-cache</content>
  2598. <herited>false</herited>
  2599. <userDefined>false</userDefined>
  2600. </webMeta>
  2601. <webMeta>
  2602. <name>newMeta2</name>
  2603. <httpEquiv>Expires</httpEquiv>
  2604. <content>0</content>
  2605. <herited>false</herited>
  2606. <userDefined>false</userDefined>
  2607. </webMeta>
  2608. </metas>
  2609. <resource>
  2610. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].alias">
  2611. <lang locale="en_US" value="null" />
  2612. <lang locale="zh_CN" value="注册信息" />
  2613. <lang locale="zh_HK" value="註冊信息" />
  2614. <lang locale="zh_TW" value="註冊信息" />
  2615. </rs>
  2616. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[btnCopy].alias">
  2617. <lang locale="en_US" value="null" />
  2618. <lang locale="zh_CN" value="null" />
  2619. <lang locale="zh_HK" value="null" />
  2620. <lang locale="zh_TW" value="null" />
  2621. </rs>
  2622. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[btnCopy].properties.property[actionBinding].value">
  2623. <lang locale="en_US" value="copyNewAction" />
  2624. <lang locale="zh_CN" value="copyNewAction" />
  2625. <lang locale="zh_HK" value="copyNewAction" />
  2626. <lang locale="zh_TW" value="copyNewAction" />
  2627. </rs>
  2628. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[btnCopy].properties.property[label].value">
  2629. <lang locale="en_US" value="null" />
  2630. <lang locale="zh_CN" value="复制" />
  2631. <lang locale="zh_HK" value="複製" />
  2632. <lang locale="zh_TW" value="複製" />
  2633. </rs>
  2634. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[btnExit].alias">
  2635. <lang locale="en_US" value="null" />
  2636. <lang locale="zh_CN" value="null" />
  2637. <lang locale="zh_HK" value="null" />
  2638. <lang locale="zh_TW" value="null" />
  2639. </rs>
  2640. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[btnExit].properties.property[actionBinding].value">
  2641. <lang locale="en_US" value="exitAction" />
  2642. <lang locale="zh_CN" value="exitAction" />
  2643. <lang locale="zh_HK" value="exitAction" />
  2644. <lang locale="zh_TW" value="exitAction" />
  2645. </rs>
  2646. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[btnExit].properties.property[label].value">
  2647. <lang locale="en_US" value="null" />
  2648. <lang locale="zh_CN" value="退出" />
  2649. <lang locale="zh_HK" value="退出" />
  2650. <lang locale="zh_TW" value="退出" />
  2651. </rs>
  2652. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[btnRemove].alias">
  2653. <lang locale="en_US" value="null" />
  2654. <lang locale="zh_CN" value="null" />
  2655. <lang locale="zh_HK" value="null" />
  2656. <lang locale="zh_TW" value="null" />
  2657. </rs>
  2658. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[btnRemove].properties.property[actionBinding].value">
  2659. <lang locale="en_US" value="deleteAction" />
  2660. <lang locale="zh_CN" value="deleteAction" />
  2661. <lang locale="zh_HK" value="deleteAction" />
  2662. <lang locale="zh_TW" value="deleteAction" />
  2663. </rs>
  2664. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[btnRemove].properties.property[label].value">
  2665. <lang locale="en_US" value="null" />
  2666. <lang locale="zh_CN" value="删除" />
  2667. <lang locale="zh_HK" value="刪除" />
  2668. <lang locale="zh_TW" value="刪除" />
  2669. </rs>
  2670. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[btnSave].alias">
  2671. <lang locale="en_US" value="null" />
  2672. <lang locale="zh_CN" value="null" />
  2673. <lang locale="zh_HK" value="null" />
  2674. <lang locale="zh_TW" value="null" />
  2675. </rs>
  2676. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[btnSave].properties.property[actionBinding].value">
  2677. <lang locale="en_US" value="saveAction" />
  2678. <lang locale="zh_CN" value="saveAction" />
  2679. <lang locale="zh_HK" value="saveAction" />
  2680. <lang locale="zh_TW" value="saveAction" />
  2681. </rs>
  2682. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[btnSave].properties.property[label].value">
  2683. <lang locale="en_US" value="null" />
  2684. <lang locale="zh_CN" value="保存" />
  2685. <lang locale="zh_HK" value="保存" />
  2686. <lang locale="zh_TW" value="保存" />
  2687. </rs>
  2688. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[btnSubmit].alias">
  2689. <lang locale="en_US" value="null" />
  2690. <lang locale="zh_CN" value="null" />
  2691. <lang locale="zh_HK" value="null" />
  2692. <lang locale="zh_TW" value="null" />
  2693. </rs>
  2694. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[btnSubmit].properties.property[actionBinding].value">
  2695. <lang locale="en_US" value="submitAction" />
  2696. <lang locale="zh_CN" value="submitAction" />
  2697. <lang locale="zh_HK" value="submitAction" />
  2698. <lang locale="zh_TW" value="submitAction" />
  2699. </rs>
  2700. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[btnSubmit].properties.property[label].value">
  2701. <lang locale="en_US" value="null" />
  2702. <lang locale="zh_CN" value="提交" />
  2703. <lang locale="zh_HK" value="提交" />
  2704. <lang locale="zh_TW" value="提交" />
  2705. </rs>
  2706. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contDescription].alias">
  2707. <lang locale="en_US" value="null" />
  2708. <lang locale="zh_CN" value="null" />
  2709. <lang locale="zh_HK" value="null" />
  2710. <lang locale="zh_TW" value="null" />
  2711. </rs>
  2712. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contDescription].properties.property[caption].value">
  2713. <lang locale="en_US" value="描述" />
  2714. <lang locale="zh_CN" value="描述" />
  2715. <lang locale="zh_HK" value="描述" />
  2716. <lang locale="zh_TW" value="描述" />
  2717. </rs>
  2718. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contDescription].properties.property[lineWidth].value">
  2719. <lang locale="en_US" value="100" />
  2720. <lang locale="zh_CN" value="100" />
  2721. <lang locale="zh_HK" value="100" />
  2722. <lang locale="zh_TW" value="100" />
  2723. </rs>
  2724. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contName].alias">
  2725. <lang locale="en_US" value="null" />
  2726. <lang locale="zh_CN" value="null" />
  2727. <lang locale="zh_HK" value="null" />
  2728. <lang locale="zh_TW" value="null" />
  2729. </rs>
  2730. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contName].properties.property[caption].value">
  2731. <lang locale="en_US" value="名称" />
  2732. <lang locale="zh_CN" value="名称" />
  2733. <lang locale="zh_HK" value="名稱" />
  2734. <lang locale="zh_TW" value="名稱" />
  2735. </rs>
  2736. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contName].properties.property[lineWidth].value">
  2737. <lang locale="en_US" value="100" />
  2738. <lang locale="zh_CN" value="100" />
  2739. <lang locale="zh_HK" value="100" />
  2740. <lang locale="zh_TW" value="100" />
  2741. </rs>
  2742. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contNumber].alias">
  2743. <lang locale="en_US" value="null" />
  2744. <lang locale="zh_CN" value="null" />
  2745. <lang locale="zh_HK" value="null" />
  2746. <lang locale="zh_TW" value="null" />
  2747. </rs>
  2748. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contNumber].properties.property[caption].value">
  2749. <lang locale="en_US" value="编码" />
  2750. <lang locale="zh_CN" value="编码" />
  2751. <lang locale="zh_HK" value="編碼" />
  2752. <lang locale="zh_TW" value="編碼" />
  2753. </rs>
  2754. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contNumber].properties.property[lineWidth].value">
  2755. <lang locale="en_US" value="100" />
  2756. <lang locale="zh_CN" value="100" />
  2757. <lang locale="zh_HK" value="100" />
  2758. <lang locale="zh_TW" value="100" />
  2759. </rs>
  2760. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contSimpleName].alias">
  2761. <lang locale="en_US" value="null" />
  2762. <lang locale="zh_CN" value="null" />
  2763. <lang locale="zh_HK" value="null" />
  2764. <lang locale="zh_TW" value="null" />
  2765. </rs>
  2766. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contSimpleName].properties.property[caption].value">
  2767. <lang locale="en_US" value="简称" />
  2768. <lang locale="zh_CN" value="简称" />
  2769. <lang locale="zh_HK" value="簡稱" />
  2770. <lang locale="zh_TW" value="簡稱" />
  2771. </rs>
  2772. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contSimpleName].properties.property[lineWidth].value">
  2773. <lang locale="en_US" value="100" />
  2774. <lang locale="zh_CN" value="100" />
  2775. <lang locale="zh_HK" value="100" />
  2776. <lang locale="zh_TW" value="100" />
  2777. </rs>
  2778. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contbsrxm].alias">
  2779. <lang locale="en_US" value="null" />
  2780. <lang locale="zh_CN" value="null" />
  2781. <lang locale="zh_HK" value="null" />
  2782. <lang locale="zh_TW" value="null" />
  2783. </rs>
  2784. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contbsrxm].properties.property[caption].value">
  2785. <lang locale="en_US" value="null" />
  2786. <lang locale="zh_CN" value="报税人姓名" />
  2787. <lang locale="zh_HK" value="報稅人姓名" />
  2788. <lang locale="zh_TW" value="報稅人姓名" />
  2789. </rs>
  2790. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contbsrxm].properties.property[lineWidth].value">
  2791. <lang locale="en_US" value="100" />
  2792. <lang locale="zh_CN" value="100" />
  2793. <lang locale="zh_HK" value="100" />
  2794. <lang locale="zh_TW" value="100" />
  2795. </rs>
  2796. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contcwxm].alias">
  2797. <lang locale="en_US" value="null" />
  2798. <lang locale="zh_CN" value="null" />
  2799. <lang locale="zh_HK" value="null" />
  2800. <lang locale="zh_TW" value="null" />
  2801. </rs>
  2802. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contcwxm].properties.property[caption].value">
  2803. <lang locale="en_US" value="null" />
  2804. <lang locale="zh_CN" value="财务负责人" />
  2805. <lang locale="zh_HK" value="財務負責人" />
  2806. <lang locale="zh_TW" value="財務負責人" />
  2807. </rs>
  2808. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contcwxm].properties.property[lineWidth].value">
  2809. <lang locale="en_US" value="100" />
  2810. <lang locale="zh_CN" value="100" />
  2811. <lang locale="zh_HK" value="100" />
  2812. <lang locale="zh_TW" value="100" />
  2813. </rs>
  2814. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contdjrq].alias">
  2815. <lang locale="en_US" value="null" />
  2816. <lang locale="zh_CN" value="null" />
  2817. <lang locale="zh_HK" value="null" />
  2818. <lang locale="zh_TW" value="null" />
  2819. </rs>
  2820. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contdjrq].properties.property[caption].value">
  2821. <lang locale="en_US" value="null" />
  2822. <lang locale="zh_CN" value="登记日期" />
  2823. <lang locale="zh_HK" value="登記日期" />
  2824. <lang locale="zh_TW" value="登記日期" />
  2825. </rs>
  2826. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contdjrq].properties.property[lineWidth].value">
  2827. <lang locale="en_US" value="100" />
  2828. <lang locale="zh_CN" value="100" />
  2829. <lang locale="zh_HK" value="100" />
  2830. <lang locale="zh_TW" value="100" />
  2831. </rs>
  2832. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contdjxhid].alias">
  2833. <lang locale="en_US" value="null" />
  2834. <lang locale="zh_CN" value="null" />
  2835. <lang locale="zh_HK" value="null" />
  2836. <lang locale="zh_TW" value="null" />
  2837. </rs>
  2838. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contdjxhid].properties.property[caption].value">
  2839. <lang locale="en_US" value="null" />
  2840. <lang locale="zh_CN" value="登记序号" />
  2841. <lang locale="zh_HK" value="登記序號" />
  2842. <lang locale="zh_TW" value="登記序號" />
  2843. </rs>
  2844. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contdjxhid].properties.property[lineWidth].value">
  2845. <lang locale="en_US" value="100" />
  2846. <lang locale="zh_CN" value="100" />
  2847. <lang locale="zh_HK" value="100" />
  2848. <lang locale="zh_TW" value="100" />
  2849. </rs>
  2850. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contfbmba].alias">
  2851. <lang locale="en_US" value="null" />
  2852. <lang locale="zh_CN" value="null" />
  2853. <lang locale="zh_HK" value="null" />
  2854. <lang locale="zh_TW" value="null" />
  2855. </rs>
  2856. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contfbmba].properties.property[caption].value">
  2857. <lang locale="en_US" value="null" />
  2858. <lang locale="zh_CN" value="是否分部门备案" />
  2859. <lang locale="zh_HK" value="是否分部門備案" />
  2860. <lang locale="zh_TW" value="是否分部門備案" />
  2861. </rs>
  2862. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contfbmba].properties.property[lineWidth].value">
  2863. <lang locale="en_US" value="100" />
  2864. <lang locale="zh_CN" value="100" />
  2865. <lang locale="zh_HK" value="100" />
  2866. <lang locale="zh_TW" value="100" />
  2867. </rs>
  2868. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contfrxm].alias">
  2869. <lang locale="en_US" value="null" />
  2870. <lang locale="zh_CN" value="null" />
  2871. <lang locale="zh_HK" value="null" />
  2872. <lang locale="zh_TW" value="null" />
  2873. </rs>
  2874. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contfrxm].properties.property[caption].value">
  2875. <lang locale="en_US" value="null" />
  2876. <lang locale="zh_CN" value="法人姓名" />
  2877. <lang locale="zh_HK" value="法人姓名" />
  2878. <lang locale="zh_TW" value="法人姓名" />
  2879. </rs>
  2880. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contfrxm].properties.property[lineWidth].value">
  2881. <lang locale="en_US" value="100" />
  2882. <lang locale="zh_CN" value="100" />
  2883. <lang locale="zh_HK" value="100" />
  2884. <lang locale="zh_TW" value="100" />
  2885. </rs>
  2886. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[conthydm].alias">
  2887. <lang locale="en_US" value="null" />
  2888. <lang locale="zh_CN" value="null" />
  2889. <lang locale="zh_HK" value="null" />
  2890. <lang locale="zh_TW" value="null" />
  2891. </rs>
  2892. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[conthydm].properties.property[caption].value">
  2893. <lang locale="en_US" value="null" />
  2894. <lang locale="zh_CN" value="行业代码" />
  2895. <lang locale="zh_HK" value="行業代碼" />
  2896. <lang locale="zh_TW" value="行業代碼" />
  2897. </rs>
  2898. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[conthydm].properties.property[lineWidth].value">
  2899. <lang locale="en_US" value="100" />
  2900. <lang locale="zh_CN" value="100" />
  2901. <lang locale="zh_HK" value="100" />
  2902. <lang locale="zh_TW" value="100" />
  2903. </rs>
  2904. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[conthymc].alias">
  2905. <lang locale="en_US" value="null" />
  2906. <lang locale="zh_CN" value="null" />
  2907. <lang locale="zh_HK" value="null" />
  2908. <lang locale="zh_TW" value="null" />
  2909. </rs>
  2910. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[conthymc].properties.property[caption].value">
  2911. <lang locale="en_US" value="null" />
  2912. <lang locale="zh_CN" value="行业名称" />
  2913. <lang locale="zh_HK" value="行業名稱" />
  2914. <lang locale="zh_TW" value="行業名稱" />
  2915. </rs>
  2916. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[conthymc].properties.property[lineWidth].value">
  2917. <lang locale="en_US" value="100" />
  2918. <lang locale="zh_CN" value="100" />
  2919. <lang locale="zh_HK" value="100" />
  2920. <lang locale="zh_TW" value="100" />
  2921. </rs>
  2922. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contjdxzdm].alias">
  2923. <lang locale="en_US" value="null" />
  2924. <lang locale="zh_CN" value="null" />
  2925. <lang locale="zh_HK" value="null" />
  2926. <lang locale="zh_TW" value="null" />
  2927. </rs>
  2928. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contjdxzdm].properties.property[caption].value">
  2929. <lang locale="en_US" value="null" />
  2930. <lang locale="zh_CN" value="街道乡镇代码" />
  2931. <lang locale="zh_HK" value="街道鄉鎮代碼" />
  2932. <lang locale="zh_TW" value="街道鄉鎮代碼" />
  2933. </rs>
  2934. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contjdxzdm].properties.property[lineWidth].value">
  2935. <lang locale="en_US" value="100" />
  2936. <lang locale="zh_CN" value="100" />
  2937. <lang locale="zh_HK" value="100" />
  2938. <lang locale="zh_TW" value="100" />
  2939. </rs>
  2940. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contjjlxdm].alias">
  2941. <lang locale="en_US" value="null" />
  2942. <lang locale="zh_CN" value="null" />
  2943. <lang locale="zh_HK" value="null" />
  2944. <lang locale="zh_TW" value="null" />
  2945. </rs>
  2946. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contjjlxdm].properties.property[caption].value">
  2947. <lang locale="en_US" value="null" />
  2948. <lang locale="zh_CN" value="经济类型名称代码" />
  2949. <lang locale="zh_HK" value="經濟類型名稱代碼" />
  2950. <lang locale="zh_TW" value="經濟類型名稱代碼" />
  2951. </rs>
  2952. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contjjlxdm].properties.property[lineWidth].value">
  2953. <lang locale="en_US" value="100" />
  2954. <lang locale="zh_CN" value="100" />
  2955. <lang locale="zh_HK" value="100" />
  2956. <lang locale="zh_TW" value="100" />
  2957. </rs>
  2958. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contjjlxmc].alias">
  2959. <lang locale="en_US" value="null" />
  2960. <lang locale="zh_CN" value="null" />
  2961. <lang locale="zh_HK" value="null" />
  2962. <lang locale="zh_TW" value="null" />
  2963. </rs>
  2964. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contjjlxmc].properties.property[caption].value">
  2965. <lang locale="en_US" value="null" />
  2966. <lang locale="zh_CN" value="经济类型名称" />
  2967. <lang locale="zh_HK" value="經濟類型名稱" />
  2968. <lang locale="zh_TW" value="經濟類型名稱" />
  2969. </rs>
  2970. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contjjlxmc].properties.property[lineWidth].value">
  2971. <lang locale="en_US" value="100" />
  2972. <lang locale="zh_CN" value="100" />
  2973. <lang locale="zh_HK" value="100" />
  2974. <lang locale="zh_TW" value="100" />
  2975. </rs>
  2976. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contkjywrdm].alias">
  2977. <lang locale="en_US" value="null" />
  2978. <lang locale="zh_CN" value="null" />
  2979. <lang locale="zh_HK" value="null" />
  2980. <lang locale="zh_TW" value="null" />
  2981. </rs>
  2982. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contkjywrdm].properties.property[caption].value">
  2983. <lang locale="en_US" value="null" />
  2984. <lang locale="zh_CN" value="扣缴义务人代码" />
  2985. <lang locale="zh_HK" value="扣繳義務人代碼" />
  2986. <lang locale="zh_TW" value="扣繳義務人代碼" />
  2987. </rs>
  2988. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contkjywrdm].properties.property[lineWidth].value">
  2989. <lang locale="en_US" value="100" />
  2990. <lang locale="zh_CN" value="100" />
  2991. <lang locale="zh_HK" value="100" />
  2992. <lang locale="zh_TW" value="100" />
  2993. </rs>
  2994. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contlxdh].alias">
  2995. <lang locale="en_US" value="null" />
  2996. <lang locale="zh_CN" value="null" />
  2997. <lang locale="zh_HK" value="null" />
  2998. <lang locale="zh_TW" value="null" />
  2999. </rs>
  3000. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contlxdh].properties.property[caption].value">
  3001. <lang locale="en_US" value="null" />
  3002. <lang locale="zh_CN" value="联系电话" />
  3003. <lang locale="zh_HK" value="聯繫電話" />
  3004. <lang locale="zh_TW" value="聯繫電話" />
  3005. </rs>
  3006. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contlxdh].properties.property[lineWidth].value">
  3007. <lang locale="en_US" value="100" />
  3008. <lang locale="zh_CN" value="100" />
  3009. <lang locale="zh_HK" value="100" />
  3010. <lang locale="zh_TW" value="100" />
  3011. </rs>
  3012. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contnsrsbm].alias">
  3013. <lang locale="en_US" value="null" />
  3014. <lang locale="zh_CN" value="null" />
  3015. <lang locale="zh_HK" value="null" />
  3016. <lang locale="zh_TW" value="null" />
  3017. </rs>
  3018. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contnsrsbm].properties.property[caption].value">
  3019. <lang locale="en_US" value="null" />
  3020. <lang locale="zh_CN" value="纳税人识别码" />
  3021. <lang locale="zh_HK" value="納稅人識別碼" />
  3022. <lang locale="zh_TW" value="納稅人識別碼" />
  3023. </rs>
  3024. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contnsrsbm].properties.property[lineWidth].value">
  3025. <lang locale="en_US" value="100" />
  3026. <lang locale="zh_CN" value="100" />
  3027. <lang locale="zh_HK" value="100" />
  3028. <lang locale="zh_TW" value="100" />
  3029. </rs>
  3030. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contnsrztdm].alias">
  3031. <lang locale="en_US" value="null" />
  3032. <lang locale="zh_CN" value="null" />
  3033. <lang locale="zh_HK" value="null" />
  3034. <lang locale="zh_TW" value="null" />
  3035. </rs>
  3036. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contnsrztdm].properties.property[caption].value">
  3037. <lang locale="en_US" value="null" />
  3038. <lang locale="zh_CN" value="纳税人状态代码" />
  3039. <lang locale="zh_HK" value="納稅人狀態代碼" />
  3040. <lang locale="zh_TW" value="納稅人狀態代碼" />
  3041. </rs>
  3042. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contnsrztdm].properties.property[lineWidth].value">
  3043. <lang locale="en_US" value="100" />
  3044. <lang locale="zh_CN" value="100" />
  3045. <lang locale="zh_HK" value="100" />
  3046. <lang locale="zh_TW" value="100" />
  3047. </rs>
  3048. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contnsrztmc].alias">
  3049. <lang locale="en_US" value="null" />
  3050. <lang locale="zh_CN" value="null" />
  3051. <lang locale="zh_HK" value="null" />
  3052. <lang locale="zh_TW" value="null" />
  3053. </rs>
  3054. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contnsrztmc].properties.property[caption].value">
  3055. <lang locale="en_US" value="null" />
  3056. <lang locale="zh_CN" value="纳税人状态名称" />
  3057. <lang locale="zh_HK" value="納稅人狀態名稱" />
  3058. <lang locale="zh_TW" value="納稅人狀態名稱" />
  3059. </rs>
  3060. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contnsrztmc].properties.property[lineWidth].value">
  3061. <lang locale="en_US" value="100" />
  3062. <lang locale="zh_CN" value="100" />
  3063. <lang locale="zh_HK" value="100" />
  3064. <lang locale="zh_TW" value="100" />
  3065. </rs>
  3066. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contqymc].alias">
  3067. <lang locale="en_US" value="null" />
  3068. <lang locale="zh_CN" value="null" />
  3069. <lang locale="zh_HK" value="null" />
  3070. <lang locale="zh_TW" value="null" />
  3071. </rs>
  3072. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contqymc].properties.property[caption].value">
  3073. <lang locale="en_US" value="null" />
  3074. <lang locale="zh_CN" value="企业名称" />
  3075. <lang locale="zh_HK" value="企業名稱" />
  3076. <lang locale="zh_TW" value="企業名稱" />
  3077. </rs>
  3078. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contqymc].properties.property[lineWidth].value">
  3079. <lang locale="en_US" value="100" />
  3080. <lang locale="zh_CN" value="100" />
  3081. <lang locale="zh_HK" value="100" />
  3082. <lang locale="zh_TW" value="100" />
  3083. </rs>
  3084. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contscjydz].alias">
  3085. <lang locale="en_US" value="null" />
  3086. <lang locale="zh_CN" value="null" />
  3087. <lang locale="zh_HK" value="null" />
  3088. <lang locale="zh_TW" value="null" />
  3089. </rs>
  3090. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contscjydz].properties.property[caption].value">
  3091. <lang locale="en_US" value="null" />
  3092. <lang locale="zh_CN" value="生产经营地址" />
  3093. <lang locale="zh_HK" value="生產經營地址" />
  3094. <lang locale="zh_TW" value="生產經營地址" />
  3095. </rs>
  3096. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contscjydz].properties.property[lineWidth].value">
  3097. <lang locale="en_US" value="100" />
  3098. <lang locale="zh_CN" value="100" />
  3099. <lang locale="zh_HK" value="100" />
  3100. <lang locale="zh_TW" value="100" />
  3101. </rs>
  3102. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contsfscjyqy].alias">
  3103. <lang locale="en_US" value="null" />
  3104. <lang locale="zh_CN" value="null" />
  3105. <lang locale="zh_HK" value="null" />
  3106. <lang locale="zh_TW" value="null" />
  3107. </rs>
  3108. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contsfscjyqy].properties.property[caption].value">
  3109. <lang locale="en_US" value="null" />
  3110. <lang locale="zh_CN" value="是否是生产经营企业" />
  3111. <lang locale="zh_HK" value="是否是生產經營企業" />
  3112. <lang locale="zh_TW" value="是否是生產經營企業" />
  3113. </rs>
  3114. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contsfscjyqy].properties.property[lineWidth].value">
  3115. <lang locale="en_US" value="100" />
  3116. <lang locale="zh_CN" value="100" />
  3117. <lang locale="zh_HK" value="100" />
  3118. <lang locale="zh_TW" value="100" />
  3119. </rs>
  3120. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contshxydm].alias">
  3121. <lang locale="en_US" value="null" />
  3122. <lang locale="zh_CN" value="null" />
  3123. <lang locale="zh_HK" value="null" />
  3124. <lang locale="zh_TW" value="null" />
  3125. </rs>
  3126. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contshxydm].properties.property[caption].value">
  3127. <lang locale="en_US" value="null" />
  3128. <lang locale="zh_CN" value="社会信用代码" />
  3129. <lang locale="zh_HK" value="社會信用代碼" />
  3130. <lang locale="zh_TW" value="社會信用代碼" />
  3131. </rs>
  3132. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contshxydm].properties.property[lineWidth].value">
  3133. <lang locale="en_US" value="100" />
  3134. <lang locale="zh_CN" value="100" />
  3135. <lang locale="zh_HK" value="100" />
  3136. <lang locale="zh_TW" value="100" />
  3137. </rs>
  3138. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contsmzh].alias">
  3139. <lang locale="en_US" value="null" />
  3140. <lang locale="zh_CN" value="null" />
  3141. <lang locale="zh_HK" value="null" />
  3142. <lang locale="zh_TW" value="null" />
  3143. </rs>
  3144. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contsmzh].properties.property[caption].value">
  3145. <lang locale="en_US" value="null" />
  3146. <lang locale="zh_CN" value="实名账号" />
  3147. <lang locale="zh_HK" value="實名賬號" />
  3148. <lang locale="zh_TW" value="實名賬號" />
  3149. </rs>
  3150. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contsmzh].properties.property[lineWidth].value">
  3151. <lang locale="en_US" value="100" />
  3152. <lang locale="zh_CN" value="100" />
  3153. <lang locale="zh_HK" value="100" />
  3154. <lang locale="zh_TW" value="100" />
  3155. </rs>
  3156. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contssglydm].alias">
  3157. <lang locale="en_US" value="null" />
  3158. <lang locale="zh_CN" value="null" />
  3159. <lang locale="zh_HK" value="null" />
  3160. <lang locale="zh_TW" value="null" />
  3161. </rs>
  3162. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contssglydm].properties.property[caption].value">
  3163. <lang locale="en_US" value="null" />
  3164. <lang locale="zh_CN" value="税收管理员代码" />
  3165. <lang locale="zh_HK" value="稅收管理員代碼" />
  3166. <lang locale="zh_TW" value="稅收管理員代碼" />
  3167. </rs>
  3168. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contssglydm].properties.property[lineWidth].value">
  3169. <lang locale="en_US" value="100" />
  3170. <lang locale="zh_CN" value="100" />
  3171. <lang locale="zh_HK" value="100" />
  3172. <lang locale="zh_TW" value="100" />
  3173. </rs>
  3174. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contswjgdm].alias">
  3175. <lang locale="en_US" value="null" />
  3176. <lang locale="zh_CN" value="null" />
  3177. <lang locale="zh_HK" value="null" />
  3178. <lang locale="zh_TW" value="null" />
  3179. </rs>
  3180. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contswjgdm].properties.property[caption].value">
  3181. <lang locale="en_US" value="null" />
  3182. <lang locale="zh_CN" value="税务机关代码" />
  3183. <lang locale="zh_HK" value="稅務機關代碼" />
  3184. <lang locale="zh_TW" value="稅務機關代碼" />
  3185. </rs>
  3186. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contswjgdm].properties.property[lineWidth].value">
  3187. <lang locale="en_US" value="100" />
  3188. <lang locale="zh_CN" value="100" />
  3189. <lang locale="zh_HK" value="100" />
  3190. <lang locale="zh_TW" value="100" />
  3191. </rs>
  3192. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contswjgmc].alias">
  3193. <lang locale="en_US" value="null" />
  3194. <lang locale="zh_CN" value="null" />
  3195. <lang locale="zh_HK" value="null" />
  3196. <lang locale="zh_TW" value="null" />
  3197. </rs>
  3198. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contswjgmc].properties.property[caption].value">
  3199. <lang locale="en_US" value="null" />
  3200. <lang locale="zh_CN" value="税务机关名称" />
  3201. <lang locale="zh_HK" value="稅務機關名稱" />
  3202. <lang locale="zh_TW" value="稅務機關名稱" />
  3203. </rs>
  3204. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contswjgmc].properties.property[lineWidth].value">
  3205. <lang locale="en_US" value="100" />
  3206. <lang locale="zh_CN" value="100" />
  3207. <lang locale="zh_HK" value="100" />
  3208. <lang locale="zh_TW" value="100" />
  3209. </rs>
  3210. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contyzbm].alias">
  3211. <lang locale="en_US" value="null" />
  3212. <lang locale="zh_CN" value="null" />
  3213. <lang locale="zh_HK" value="null" />
  3214. <lang locale="zh_TW" value="null" />
  3215. </rs>
  3216. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contyzbm].properties.property[caption].value">
  3217. <lang locale="en_US" value="null" />
  3218. <lang locale="zh_CN" value="邮政编码" />
  3219. <lang locale="zh_HK" value="郵遞區號" />
  3220. <lang locale="zh_TW" value="郵遞區號" />
  3221. </rs>
  3222. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contyzbm].properties.property[lineWidth].value">
  3223. <lang locale="en_US" value="100" />
  3224. <lang locale="zh_CN" value="100" />
  3225. <lang locale="zh_HK" value="100" />
  3226. <lang locale="zh_TW" value="100" />
  3227. </rs>
  3228. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contzgswjg].alias">
  3229. <lang locale="en_US" value="null" />
  3230. <lang locale="zh_CN" value="null" />
  3231. <lang locale="zh_HK" value="null" />
  3232. <lang locale="zh_TW" value="null" />
  3233. </rs>
  3234. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contzgswjg].properties.property[caption].value">
  3235. <lang locale="en_US" value="null" />
  3236. <lang locale="zh_CN" value="主管税务机关代码" />
  3237. <lang locale="zh_HK" value="主管稅務機關代碼" />
  3238. <lang locale="zh_TW" value="主管稅務機關代碼" />
  3239. </rs>
  3240. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contzgswjg].properties.property[lineWidth].value">
  3241. <lang locale="en_US" value="100" />
  3242. <lang locale="zh_CN" value="100" />
  3243. <lang locale="zh_HK" value="100" />
  3244. <lang locale="zh_TW" value="100" />
  3245. </rs>
  3246. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contzgswjgmc].alias">
  3247. <lang locale="en_US" value="null" />
  3248. <lang locale="zh_CN" value="null" />
  3249. <lang locale="zh_HK" value="null" />
  3250. <lang locale="zh_TW" value="null" />
  3251. </rs>
  3252. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contzgswjgmc].properties.property[caption].value">
  3253. <lang locale="en_US" value="null" />
  3254. <lang locale="zh_CN" value="主管税务机关名称" />
  3255. <lang locale="zh_HK" value="主管稅務機關名稱" />
  3256. <lang locale="zh_TW" value="主管稅務機關名稱" />
  3257. </rs>
  3258. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contzgswjgmc].properties.property[lineWidth].value">
  3259. <lang locale="en_US" value="100" />
  3260. <lang locale="zh_CN" value="100" />
  3261. <lang locale="zh_HK" value="100" />
  3262. <lang locale="zh_TW" value="100" />
  3263. </rs>
  3264. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contzgswjgskdm].alias">
  3265. <lang locale="en_US" value="null" />
  3266. <lang locale="zh_CN" value="null" />
  3267. <lang locale="zh_HK" value="null" />
  3268. <lang locale="zh_TW" value="null" />
  3269. </rs>
  3270. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contzgswjgskdm].properties.property[caption].value">
  3271. <lang locale="en_US" value="null" />
  3272. <lang locale="zh_CN" value="主管税务分局所科代码" />
  3273. <lang locale="zh_HK" value="主管稅務分局所科代碼" />
  3274. <lang locale="zh_TW" value="主管稅務分局所科代碼" />
  3275. </rs>
  3276. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contzgswjgskdm].properties.property[lineWidth].value">
  3277. <lang locale="en_US" value="100" />
  3278. <lang locale="zh_CN" value="100" />
  3279. <lang locale="zh_HK" value="100" />
  3280. <lang locale="zh_TW" value="100" />
  3281. </rs>
  3282. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contzgswjgskmc].alias">
  3283. <lang locale="en_US" value="null" />
  3284. <lang locale="zh_CN" value="null" />
  3285. <lang locale="zh_HK" value="null" />
  3286. <lang locale="zh_TW" value="null" />
  3287. </rs>
  3288. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contzgswjgskmc].properties.property[caption].value">
  3289. <lang locale="en_US" value="null" />
  3290. <lang locale="zh_CN" value="主管税务分局所科名称" />
  3291. <lang locale="zh_HK" value="主管稅務分局所科名稱" />
  3292. <lang locale="zh_TW" value="主管稅務分局所科名稱" />
  3293. </rs>
  3294. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[contzgswjgskmc].properties.property[lineWidth].value">
  3295. <lang locale="en_US" value="100" />
  3296. <lang locale="zh_CN" value="100" />
  3297. <lang locale="zh_HK" value="100" />
  3298. <lang locale="zh_TW" value="100" />
  3299. </rs>
  3300. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[innerWindowUserTag].alias">
  3301. <lang locale="en_US" value="null" />
  3302. <lang locale="zh_CN" value="null" />
  3303. <lang locale="zh_HK" value="null" />
  3304. <lang locale="zh_TW" value="null" />
  3305. </rs>
  3306. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[innerWindowUserTag].properties.property[attributes].value">
  3307. <lang locale="en_US" value="beanName=value" />
  3308. <lang locale="zh_CN" value="beanName=#{custom.shuiyou.registration.RegistrationInfoEditUIBean}" />
  3309. <lang locale="zh_HK" value="beanName=#{custom.shuiyou.registration.RegistrationInfoEditUIBean}" />
  3310. <lang locale="zh_TW" value="beanName=#{custom.shuiyou.registration.RegistrationInfoEditUIBean}" />
  3311. </rs>
  3312. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[msgArea].alias">
  3313. <lang locale="en_US" value="null" />
  3314. <lang locale="zh_CN" value="null" />
  3315. <lang locale="zh_HK" value="null" />
  3316. <lang locale="zh_TW" value="null" />
  3317. </rs>
  3318. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[rootForm].alias">
  3319. <lang locale="en_US" value="null" />
  3320. <lang locale="zh_CN" value="null" />
  3321. <lang locale="zh_HK" value="null" />
  3322. <lang locale="zh_TW" value="null" />
  3323. </rs>
  3324. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[rootToolBar].alias">
  3325. <lang locale="en_US" value="null" />
  3326. <lang locale="zh_CN" value="null" />
  3327. <lang locale="zh_HK" value="null" />
  3328. <lang locale="zh_TW" value="null" />
  3329. </rs>
  3330. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtDescription].alias">
  3331. <lang locale="en_US" value="null" />
  3332. <lang locale="zh_CN" value="描述" />
  3333. <lang locale="zh_HK" value="描述" />
  3334. <lang locale="zh_TW" value="描述" />
  3335. </rs>
  3336. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtDescription].properties.property[maxLength].value">
  3337. <lang locale="en_US" value="255" />
  3338. <lang locale="zh_CN" value="255" />
  3339. <lang locale="zh_HK" value="255" />
  3340. <lang locale="zh_TW" value="255" />
  3341. </rs>
  3342. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtName].alias">
  3343. <lang locale="en_US" value="null" />
  3344. <lang locale="zh_CN" value="名称" />
  3345. <lang locale="zh_HK" value="名稱" />
  3346. <lang locale="zh_TW" value="名稱" />
  3347. </rs>
  3348. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtName].properties.property[maxLength].value">
  3349. <lang locale="en_US" value="255" />
  3350. <lang locale="zh_CN" value="255" />
  3351. <lang locale="zh_HK" value="255" />
  3352. <lang locale="zh_TW" value="255" />
  3353. </rs>
  3354. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtNumber].alias">
  3355. <lang locale="en_US" value="null" />
  3356. <lang locale="zh_CN" value="编码" />
  3357. <lang locale="zh_HK" value="編碼" />
  3358. <lang locale="zh_TW" value="編碼" />
  3359. </rs>
  3360. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtNumber].properties.property[maxLength].value">
  3361. <lang locale="en_US" value="80" />
  3362. <lang locale="zh_CN" value="80" />
  3363. <lang locale="zh_HK" value="80" />
  3364. <lang locale="zh_TW" value="80" />
  3365. </rs>
  3366. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtSimpleName].alias">
  3367. <lang locale="en_US" value="null" />
  3368. <lang locale="zh_CN" value="简称" />
  3369. <lang locale="zh_HK" value="簡稱" />
  3370. <lang locale="zh_TW" value="簡稱" />
  3371. </rs>
  3372. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtSimpleName].properties.property[maxLength].value">
  3373. <lang locale="en_US" value="80" />
  3374. <lang locale="zh_CN" value="80" />
  3375. <lang locale="zh_HK" value="80" />
  3376. <lang locale="zh_TW" value="80" />
  3377. </rs>
  3378. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtbsrxm].alias">
  3379. <lang locale="en_US" value="null" />
  3380. <lang locale="zh_CN" value="报税人姓名" />
  3381. <lang locale="zh_HK" value="報稅人姓名" />
  3382. <lang locale="zh_TW" value="報稅人姓名" />
  3383. </rs>
  3384. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtbsrxm].properties.property[maxLength].value">
  3385. <lang locale="en_US" value="100" />
  3386. <lang locale="zh_CN" value="100" />
  3387. <lang locale="zh_HK" value="100" />
  3388. <lang locale="zh_TW" value="100" />
  3389. </rs>
  3390. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtcwxm].alias">
  3391. <lang locale="en_US" value="null" />
  3392. <lang locale="zh_CN" value="财务负责人" />
  3393. <lang locale="zh_HK" value="財務負責人" />
  3394. <lang locale="zh_TW" value="財務負責人" />
  3395. </rs>
  3396. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtcwxm].properties.property[maxLength].value">
  3397. <lang locale="en_US" value="100" />
  3398. <lang locale="zh_CN" value="100" />
  3399. <lang locale="zh_HK" value="100" />
  3400. <lang locale="zh_TW" value="100" />
  3401. </rs>
  3402. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtdjrq].alias">
  3403. <lang locale="en_US" value="null" />
  3404. <lang locale="zh_CN" value="登记日期" />
  3405. <lang locale="zh_HK" value="登記日期" />
  3406. <lang locale="zh_TW" value="登記日期" />
  3407. </rs>
  3408. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtdjrq].properties.property[maxLength].value">
  3409. <lang locale="en_US" value="100" />
  3410. <lang locale="zh_CN" value="100" />
  3411. <lang locale="zh_HK" value="100" />
  3412. <lang locale="zh_TW" value="100" />
  3413. </rs>
  3414. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtdjxhid].alias">
  3415. <lang locale="en_US" value="null" />
  3416. <lang locale="zh_CN" value="登记序号" />
  3417. <lang locale="zh_HK" value="登記序號" />
  3418. <lang locale="zh_TW" value="登記序號" />
  3419. </rs>
  3420. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtdjxhid].properties.property[maxLength].value">
  3421. <lang locale="en_US" value="100" />
  3422. <lang locale="zh_CN" value="100" />
  3423. <lang locale="zh_HK" value="100" />
  3424. <lang locale="zh_TW" value="100" />
  3425. </rs>
  3426. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtfbmba].alias">
  3427. <lang locale="en_US" value="null" />
  3428. <lang locale="zh_CN" value="是否分部门备案" />
  3429. <lang locale="zh_HK" value="是否分部門備案" />
  3430. <lang locale="zh_TW" value="是否分部門備案" />
  3431. </rs>
  3432. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtfbmba].properties.property[maxLength].value">
  3433. <lang locale="en_US" value="100" />
  3434. <lang locale="zh_CN" value="100" />
  3435. <lang locale="zh_HK" value="100" />
  3436. <lang locale="zh_TW" value="100" />
  3437. </rs>
  3438. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtfrxm].alias">
  3439. <lang locale="en_US" value="null" />
  3440. <lang locale="zh_CN" value="法人姓名" />
  3441. <lang locale="zh_HK" value="法人姓名" />
  3442. <lang locale="zh_TW" value="法人姓名" />
  3443. </rs>
  3444. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtfrxm].properties.property[maxLength].value">
  3445. <lang locale="en_US" value="100" />
  3446. <lang locale="zh_CN" value="100" />
  3447. <lang locale="zh_HK" value="100" />
  3448. <lang locale="zh_TW" value="100" />
  3449. </rs>
  3450. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txthydm].alias">
  3451. <lang locale="en_US" value="null" />
  3452. <lang locale="zh_CN" value="行业代码" />
  3453. <lang locale="zh_HK" value="行業代碼" />
  3454. <lang locale="zh_TW" value="行業代碼" />
  3455. </rs>
  3456. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txthydm].properties.property[maxLength].value">
  3457. <lang locale="en_US" value="100" />
  3458. <lang locale="zh_CN" value="100" />
  3459. <lang locale="zh_HK" value="100" />
  3460. <lang locale="zh_TW" value="100" />
  3461. </rs>
  3462. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txthymc].alias">
  3463. <lang locale="en_US" value="null" />
  3464. <lang locale="zh_CN" value="行业名称" />
  3465. <lang locale="zh_HK" value="行業名稱" />
  3466. <lang locale="zh_TW" value="行業名稱" />
  3467. </rs>
  3468. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txthymc].properties.property[maxLength].value">
  3469. <lang locale="en_US" value="100" />
  3470. <lang locale="zh_CN" value="100" />
  3471. <lang locale="zh_HK" value="100" />
  3472. <lang locale="zh_TW" value="100" />
  3473. </rs>
  3474. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtjdxzdm].alias">
  3475. <lang locale="en_US" value="null" />
  3476. <lang locale="zh_CN" value="街道乡镇代码" />
  3477. <lang locale="zh_HK" value="街道鄉鎮代碼" />
  3478. <lang locale="zh_TW" value="街道鄉鎮代碼" />
  3479. </rs>
  3480. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtjdxzdm].properties.property[maxLength].value">
  3481. <lang locale="en_US" value="100" />
  3482. <lang locale="zh_CN" value="100" />
  3483. <lang locale="zh_HK" value="100" />
  3484. <lang locale="zh_TW" value="100" />
  3485. </rs>
  3486. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtjjlxdm].alias">
  3487. <lang locale="en_US" value="null" />
  3488. <lang locale="zh_CN" value="经济类型名称代码" />
  3489. <lang locale="zh_HK" value="經濟類型名稱代碼" />
  3490. <lang locale="zh_TW" value="經濟類型名稱代碼" />
  3491. </rs>
  3492. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtjjlxdm].properties.property[maxLength].value">
  3493. <lang locale="en_US" value="100" />
  3494. <lang locale="zh_CN" value="100" />
  3495. <lang locale="zh_HK" value="100" />
  3496. <lang locale="zh_TW" value="100" />
  3497. </rs>
  3498. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtjjlxmc].alias">
  3499. <lang locale="en_US" value="null" />
  3500. <lang locale="zh_CN" value="经济类型名称" />
  3501. <lang locale="zh_HK" value="經濟類型名稱" />
  3502. <lang locale="zh_TW" value="經濟類型名稱" />
  3503. </rs>
  3504. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtjjlxmc].properties.property[maxLength].value">
  3505. <lang locale="en_US" value="100" />
  3506. <lang locale="zh_CN" value="100" />
  3507. <lang locale="zh_HK" value="100" />
  3508. <lang locale="zh_TW" value="100" />
  3509. </rs>
  3510. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtkjywrdm].alias">
  3511. <lang locale="en_US" value="null" />
  3512. <lang locale="zh_CN" value="扣缴义务人代码" />
  3513. <lang locale="zh_HK" value="扣繳義務人代碼" />
  3514. <lang locale="zh_TW" value="扣繳義務人代碼" />
  3515. </rs>
  3516. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtkjywrdm].properties.property[maxLength].value">
  3517. <lang locale="en_US" value="100" />
  3518. <lang locale="zh_CN" value="100" />
  3519. <lang locale="zh_HK" value="100" />
  3520. <lang locale="zh_TW" value="100" />
  3521. </rs>
  3522. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtlxdh].alias">
  3523. <lang locale="en_US" value="null" />
  3524. <lang locale="zh_CN" value="联系电话" />
  3525. <lang locale="zh_HK" value="聯繫電話" />
  3526. <lang locale="zh_TW" value="聯繫電話" />
  3527. </rs>
  3528. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtlxdh].properties.property[maxLength].value">
  3529. <lang locale="en_US" value="100" />
  3530. <lang locale="zh_CN" value="100" />
  3531. <lang locale="zh_HK" value="100" />
  3532. <lang locale="zh_TW" value="100" />
  3533. </rs>
  3534. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtnsrsbm].alias">
  3535. <lang locale="en_US" value="null" />
  3536. <lang locale="zh_CN" value="纳税人识别码" />
  3537. <lang locale="zh_HK" value="納稅人識別碼" />
  3538. <lang locale="zh_TW" value="納稅人識別碼" />
  3539. </rs>
  3540. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtnsrsbm].properties.property[maxLength].value">
  3541. <lang locale="en_US" value="100" />
  3542. <lang locale="zh_CN" value="100" />
  3543. <lang locale="zh_HK" value="100" />
  3544. <lang locale="zh_TW" value="100" />
  3545. </rs>
  3546. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtnsrztdm].alias">
  3547. <lang locale="en_US" value="null" />
  3548. <lang locale="zh_CN" value="纳税人状态代码" />
  3549. <lang locale="zh_HK" value="納稅人狀態代碼" />
  3550. <lang locale="zh_TW" value="納稅人狀態代碼" />
  3551. </rs>
  3552. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtnsrztdm].properties.property[maxLength].value">
  3553. <lang locale="en_US" value="100" />
  3554. <lang locale="zh_CN" value="100" />
  3555. <lang locale="zh_HK" value="100" />
  3556. <lang locale="zh_TW" value="100" />
  3557. </rs>
  3558. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtnsrztmc].alias">
  3559. <lang locale="en_US" value="null" />
  3560. <lang locale="zh_CN" value="纳税人状态名称" />
  3561. <lang locale="zh_HK" value="納稅人狀態名稱" />
  3562. <lang locale="zh_TW" value="納稅人狀態名稱" />
  3563. </rs>
  3564. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtnsrztmc].properties.property[maxLength].value">
  3565. <lang locale="en_US" value="100" />
  3566. <lang locale="zh_CN" value="100" />
  3567. <lang locale="zh_HK" value="100" />
  3568. <lang locale="zh_TW" value="100" />
  3569. </rs>
  3570. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtqymc].alias">
  3571. <lang locale="en_US" value="null" />
  3572. <lang locale="zh_CN" value="企业名称" />
  3573. <lang locale="zh_HK" value="企業名稱" />
  3574. <lang locale="zh_TW" value="企業名稱" />
  3575. </rs>
  3576. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtqymc].properties.property[maxLength].value">
  3577. <lang locale="en_US" value="100" />
  3578. <lang locale="zh_CN" value="100" />
  3579. <lang locale="zh_HK" value="100" />
  3580. <lang locale="zh_TW" value="100" />
  3581. </rs>
  3582. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtscjydz].alias">
  3583. <lang locale="en_US" value="null" />
  3584. <lang locale="zh_CN" value="生产经营地址" />
  3585. <lang locale="zh_HK" value="生產經營地址" />
  3586. <lang locale="zh_TW" value="生產經營地址" />
  3587. </rs>
  3588. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtscjydz].properties.property[maxLength].value">
  3589. <lang locale="en_US" value="100" />
  3590. <lang locale="zh_CN" value="100" />
  3591. <lang locale="zh_HK" value="100" />
  3592. <lang locale="zh_TW" value="100" />
  3593. </rs>
  3594. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtsfscjyqy].alias">
  3595. <lang locale="en_US" value="null" />
  3596. <lang locale="zh_CN" value="是否是生产经营企业" />
  3597. <lang locale="zh_HK" value="是否是生產經營企業" />
  3598. <lang locale="zh_TW" value="是否是生產經營企業" />
  3599. </rs>
  3600. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtsfscjyqy].properties.property[maxLength].value">
  3601. <lang locale="en_US" value="100" />
  3602. <lang locale="zh_CN" value="100" />
  3603. <lang locale="zh_HK" value="100" />
  3604. <lang locale="zh_TW" value="100" />
  3605. </rs>
  3606. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtshxydm].alias">
  3607. <lang locale="en_US" value="null" />
  3608. <lang locale="zh_CN" value="社会信用代码" />
  3609. <lang locale="zh_HK" value="社會信用代碼" />
  3610. <lang locale="zh_TW" value="社會信用代碼" />
  3611. </rs>
  3612. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtshxydm].properties.property[maxLength].value">
  3613. <lang locale="en_US" value="100" />
  3614. <lang locale="zh_CN" value="100" />
  3615. <lang locale="zh_HK" value="100" />
  3616. <lang locale="zh_TW" value="100" />
  3617. </rs>
  3618. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtsmzh].alias">
  3619. <lang locale="en_US" value="null" />
  3620. <lang locale="zh_CN" value="实名账号" />
  3621. <lang locale="zh_HK" value="實名賬號" />
  3622. <lang locale="zh_TW" value="實名賬號" />
  3623. </rs>
  3624. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtsmzh].properties.property[maxLength].value">
  3625. <lang locale="en_US" value="100" />
  3626. <lang locale="zh_CN" value="100" />
  3627. <lang locale="zh_HK" value="100" />
  3628. <lang locale="zh_TW" value="100" />
  3629. </rs>
  3630. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtssglydm].alias">
  3631. <lang locale="en_US" value="null" />
  3632. <lang locale="zh_CN" value="税收管理员代码" />
  3633. <lang locale="zh_HK" value="稅收管理員代碼" />
  3634. <lang locale="zh_TW" value="稅收管理員代碼" />
  3635. </rs>
  3636. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtssglydm].properties.property[maxLength].value">
  3637. <lang locale="en_US" value="100" />
  3638. <lang locale="zh_CN" value="100" />
  3639. <lang locale="zh_HK" value="100" />
  3640. <lang locale="zh_TW" value="100" />
  3641. </rs>
  3642. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtswjgdm].alias">
  3643. <lang locale="en_US" value="null" />
  3644. <lang locale="zh_CN" value="税务机关代码" />
  3645. <lang locale="zh_HK" value="稅務機關代碼" />
  3646. <lang locale="zh_TW" value="稅務機關代碼" />
  3647. </rs>
  3648. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtswjgdm].properties.property[maxLength].value">
  3649. <lang locale="en_US" value="100" />
  3650. <lang locale="zh_CN" value="100" />
  3651. <lang locale="zh_HK" value="100" />
  3652. <lang locale="zh_TW" value="100" />
  3653. </rs>
  3654. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtswjgmc].alias">
  3655. <lang locale="en_US" value="null" />
  3656. <lang locale="zh_CN" value="税务机关名称" />
  3657. <lang locale="zh_HK" value="稅務機關名稱" />
  3658. <lang locale="zh_TW" value="稅務機關名稱" />
  3659. </rs>
  3660. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtswjgmc].properties.property[maxLength].value">
  3661. <lang locale="en_US" value="100" />
  3662. <lang locale="zh_CN" value="100" />
  3663. <lang locale="zh_HK" value="100" />
  3664. <lang locale="zh_TW" value="100" />
  3665. </rs>
  3666. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtyzbm].alias">
  3667. <lang locale="en_US" value="null" />
  3668. <lang locale="zh_CN" value="邮政编码" />
  3669. <lang locale="zh_HK" value="郵遞區號" />
  3670. <lang locale="zh_TW" value="郵遞區號" />
  3671. </rs>
  3672. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtyzbm].properties.property[maxLength].value">
  3673. <lang locale="en_US" value="100" />
  3674. <lang locale="zh_CN" value="100" />
  3675. <lang locale="zh_HK" value="100" />
  3676. <lang locale="zh_TW" value="100" />
  3677. </rs>
  3678. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtzgswjg].alias">
  3679. <lang locale="en_US" value="null" />
  3680. <lang locale="zh_CN" value="主管税务机关代码" />
  3681. <lang locale="zh_HK" value="主管稅務機關代碼" />
  3682. <lang locale="zh_TW" value="主管稅務機關代碼" />
  3683. </rs>
  3684. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtzgswjg].properties.property[maxLength].value">
  3685. <lang locale="en_US" value="100" />
  3686. <lang locale="zh_CN" value="100" />
  3687. <lang locale="zh_HK" value="100" />
  3688. <lang locale="zh_TW" value="100" />
  3689. </rs>
  3690. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtzgswjgmc].alias">
  3691. <lang locale="en_US" value="null" />
  3692. <lang locale="zh_CN" value="主管税务机关名称" />
  3693. <lang locale="zh_HK" value="主管稅務機關名稱" />
  3694. <lang locale="zh_TW" value="主管稅務機關名稱" />
  3695. </rs>
  3696. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtzgswjgmc].properties.property[maxLength].value">
  3697. <lang locale="en_US" value="100" />
  3698. <lang locale="zh_CN" value="100" />
  3699. <lang locale="zh_HK" value="100" />
  3700. <lang locale="zh_TW" value="100" />
  3701. </rs>
  3702. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtzgswjgskdm].alias">
  3703. <lang locale="en_US" value="null" />
  3704. <lang locale="zh_CN" value="主管税务分局所科代码" />
  3705. <lang locale="zh_HK" value="主管稅務分局所科代碼" />
  3706. <lang locale="zh_TW" value="主管稅務分局所科代碼" />
  3707. </rs>
  3708. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtzgswjgskdm].properties.property[maxLength].value">
  3709. <lang locale="en_US" value="100" />
  3710. <lang locale="zh_CN" value="100" />
  3711. <lang locale="zh_HK" value="100" />
  3712. <lang locale="zh_TW" value="100" />
  3713. </rs>
  3714. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtzgswjgskmc].alias">
  3715. <lang locale="en_US" value="null" />
  3716. <lang locale="zh_CN" value="主管税务分局所科名称" />
  3717. <lang locale="zh_HK" value="主管稅務分局所科名稱" />
  3718. <lang locale="zh_TW" value="主管稅務分局所科名稱" />
  3719. </rs>
  3720. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].components.component[txtzgswjgskmc].properties.property[maxLength].value">
  3721. <lang locale="en_US" value="100" />
  3722. <lang locale="zh_CN" value="100" />
  3723. <lang locale="zh_HK" value="100" />
  3724. <lang locale="zh_TW" value="100" />
  3725. </rs>
  3726. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].description">
  3727. <lang locale="en_US" value="null" />
  3728. <lang locale="zh_CN" value="" />
  3729. <lang locale="zh_TW" value="null" />
  3730. </rs>
  3731. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].extendedProperty.height_self_adaption">
  3732. <lang locale="en_US" value="true" />
  3733. <lang locale="zh_CN" value="true" />
  3734. <lang locale="zh_TW" value="true" />
  3735. </rs>
  3736. <rs key="webUIObject[com.kingdee.eas.custom.shuiyou.registration.web.RegistrationInfoEditUI].title">
  3737. <lang locale="en_US" value="null" />
  3738. <lang locale="zh_CN" value="注册信息" />
  3739. <lang locale="zh_HK" value="註冊信息" />
  3740. <lang locale="zh_TW" value="註冊信息" />
  3741. </rs>
  3742. </resource>
  3743. </webUIObject>