EmployeeDetail.kdrs-form 255 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <DocRoot xmlns:c="http://www.kingdee.com/Common" xmlns:f="http://www.kingdee.com/Form" xmlns:t="http://www.kingdee.com/Table" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="4.0">
  3. <DocInfo>
  4. <c:Created>Tue Nov 01 13:41:13 CST 2005</c:Created>
  5. <c:Company>kingdee.com</c:Company>
  6. <c:LastModified>Wed May 13 15:51:45 CST 2009</c:LastModified>
  7. <c:Author>null</c:Author>
  8. </DocInfo>
  9. <DataSources version="2.0">
  10. <c:DataSource id="ds_contract">
  11. <c:Reference />
  12. <c:Params>
  13. <c:Param dataType="String" source="associate">
  14. <c:ColName>empID</c:ColName>
  15. <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
  16. </c:Param>
  17. </c:Params>
  18. </c:DataSource>
  19. <c:DataSource id="ds_degree">
  20. <c:Reference />
  21. <c:Params>
  22. <c:Param dataType="String" source="associate">
  23. <c:ColName>empID</c:ColName>
  24. <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
  25. </c:Param>
  26. </c:Params>
  27. </c:DataSource>
  28. <c:DataSource id="ds_communist">
  29. <c:Reference />
  30. <c:Params>
  31. <c:Param dataType="String" source="associate">
  32. <c:ColName>empID</c:ColName>
  33. <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
  34. </c:Param>
  35. </c:Params>
  36. </c:DataSource>
  37. <c:DataSource id="ds_primaryPosition">
  38. <c:Reference />
  39. <c:Params>
  40. <c:Param dataType="String" source="associate">
  41. <c:ColName>empID</c:ColName>
  42. <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
  43. </c:Param>
  44. </c:Params>
  45. </c:DataSource>
  46. <c:DataSource id="ds_benefit">
  47. <c:Reference />
  48. <c:Params>
  49. <c:Param dataType="String" source="associate">
  50. <c:ColName>personID</c:ColName>
  51. <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
  52. </c:Param>
  53. </c:Params>
  54. </c:DataSource>
  55. <c:DataSource id="ds_resource">
  56. <c:Reference />
  57. <c:Params>
  58. <c:Param dataType="String" source="associate">
  59. <c:ColName>empID</c:ColName>
  60. <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
  61. </c:Param>
  62. </c:Params>
  63. </c:DataSource>
  64. <c:DataSource id="ds_baseInfo">
  65. <c:Reference />
  66. <c:Params />
  67. </c:DataSource>
  68. <c:DataSource id="ds_linkMen">
  69. <c:Reference />
  70. <c:Params>
  71. <c:Param dataType="String" source="associate">
  72. <c:ColName>empID</c:ColName>
  73. <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
  74. </c:Param>
  75. </c:Params>
  76. </c:DataSource>
  77. <c:DataSource id="ds_workExp">
  78. <c:Reference />
  79. <c:Params>
  80. <c:Param dataType="String" source="associate">
  81. <c:ColName>empID</c:ColName>
  82. <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
  83. </c:Param>
  84. </c:Params>
  85. </c:DataSource>
  86. <c:DataSource id="ds_family">
  87. <c:Reference />
  88. <c:Params>
  89. <c:Param dataType="String" source="associate">
  90. <c:ColName>empID</c:ColName>
  91. <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
  92. </c:Param>
  93. </c:Params>
  94. </c:DataSource>
  95. <c:DataSource id="ds_language">
  96. <c:Reference />
  97. <c:Params>
  98. <c:Param dataType="String" source="associate">
  99. <c:ColName>empID</c:ColName>
  100. <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
  101. </c:Param>
  102. </c:Params>
  103. </c:DataSource>
  104. <c:DataSource id="ds_archive">
  105. <c:Reference />
  106. <c:Params>
  107. <c:Param dataType="String" source="associate">
  108. <c:ColName>empID</c:ColName>
  109. <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
  110. </c:Param>
  111. </c:Params>
  112. </c:DataSource>
  113. <c:DataSource id="ds_compet">
  114. <c:Reference />
  115. <c:Params>
  116. <c:Param dataType="String" source="associate">
  117. <c:ColName>empID</c:ColName>
  118. <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
  119. </c:Param>
  120. </c:Params>
  121. </c:DataSource>
  122. <c:DataSource id="ds_train">
  123. <c:Reference />
  124. <c:Params>
  125. <c:Param dataType="String" source="associate">
  126. <c:ColName>empID</c:ColName>
  127. <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
  128. </c:Param>
  129. </c:Params>
  130. </c:DataSource>
  131. <c:DataSource id="ds_post">
  132. <c:Reference />
  133. <c:Params>
  134. <c:Param dataType="String" source="associate">
  135. <c:ColName>empID</c:ColName>
  136. <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
  137. </c:Param>
  138. </c:Params>
  139. </c:DataSource>
  140. <c:DataSource id="ds_certificate">
  141. <c:Reference />
  142. <c:Params>
  143. <c:Param dataType="String" source="associate">
  144. <c:ColName>empID</c:ColName>
  145. <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
  146. </c:Param>
  147. </c:Params>
  148. </c:DataSource>
  149. <c:DataSource id="ds_workExpCur">
  150. <c:Reference />
  151. <c:Params>
  152. <c:Param dataType="String" source="associate">
  153. <c:ColName>empID</c:ColName>
  154. <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
  155. </c:Param>
  156. </c:Params>
  157. </c:DataSource>
  158. <c:DataSource id="ds_contactMethod">
  159. <c:Reference />
  160. <c:Params>
  161. <c:Param dataType="String" source="associate">
  162. <c:ColName>empID</c:ColName>
  163. <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
  164. </c:Param>
  165. </c:Params>
  166. </c:DataSource>
  167. <c:DataSource id="ds_rewordPunish">
  168. <c:Reference />
  169. <c:Params>
  170. <c:Param dataType="String" source="associate">
  171. <c:ColName>empID</c:ColName>
  172. <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
  173. </c:Param>
  174. </c:Params>
  175. </c:DataSource>
  176. </DataSources>
  177. <Schemes />
  178. <Styles version="1.0">
  179. <c:Style id="3">
  180. <c:Font fontName="宋体" size="16" color="#000000" bold="true" underline="false" italic="false" strikethrough="false" weight="400.0" />
  181. <c:Borders>
  182. <c:Border position="left" lineStyle="NullLine" />
  183. <c:Border position="top" lineStyle="NullLine" />
  184. <c:Border position="right" lineStyle="NullLine" />
  185. <c:Border position="bottom" lineStyle="NullLine" />
  186. <c:Border position="diagonalleft" lineStyle="NullLine" />
  187. <c:Border position="diagonalright" lineStyle="NullLine" />
  188. </c:Borders>
  189. <c:Interior color="#ffffff" pattern="Solid" patternColor="#000000" />
  190. <c:Alignment horizontal="center" vertical="middle" wrapText="false" rotate="0" shrink="false" lineSpace="0.0" clip="true" />
  191. <c:Protection hidden="false" locked="false" />
  192. </c:Style>
  193. <c:Style id="7">
  194. <c:Font fontName="宋体" size="14" color="#000000" bold="true" underline="false" italic="false" strikethrough="false" weight="400.0" />
  195. <c:Borders>
  196. <c:Border position="left" lineStyle="Single" penStyle="Solid" color="#000000" />
  197. <c:Border position="top" lineStyle="Single" penStyle="Solid" color="#000000" />
  198. <c:Border position="right" lineStyle="Single" penStyle="Solid" color="#000000" />
  199. <c:Border position="bottom" lineStyle="Single" penStyle="Solid" color="#000000" />
  200. <c:Border position="diagonalleft" lineStyle="NullLine" />
  201. <c:Border position="diagonalright" lineStyle="NullLine" />
  202. </c:Borders>
  203. <c:Interior color="#ffffff" pattern="Solid" patternColor="#000000" />
  204. <c:Alignment horizontal="left" vertical="middle" wrapText="false" rotate="0" shrink="false" lineSpace="0.0" clip="true" />
  205. <c:Protection hidden="false" locked="false" />
  206. </c:Style>
  207. <c:Style id="2">
  208. <c:Font fontName="宋体" size="9" color="#000000" bold="false" underline="false" italic="false" strikethrough="false" weight="400.0" />
  209. <c:Borders>
  210. <c:Border position="left" lineStyle="NullLine" />
  211. <c:Border position="top" lineStyle="NullLine" />
  212. <c:Border position="right" lineStyle="NullLine" />
  213. <c:Border position="bottom" lineStyle="NullLine" />
  214. <c:Border position="diagonalleft" lineStyle="NullLine" />
  215. <c:Border position="diagonalright" lineStyle="NullLine" />
  216. </c:Borders>
  217. <c:Interior color="#ffffff" pattern="Solid" patternColor="#000000" />
  218. <c:Alignment horizontal="center" vertical="middle" wrapText="false" rotate="0" shrink="false" lineSpace="0.0" clip="true" />
  219. <c:Protection hidden="false" locked="false" />
  220. </c:Style>
  221. <c:Style id="0">
  222. <c:Interior color="#ffffff" pattern="Solid" patternColor="#000000" />
  223. </c:Style>
  224. <c:Style id="14">
  225. <c:Font fontName="宋体" size="9" color="#000000" bold="false" underline="false" italic="false" strikethrough="false" weight="400.0" />
  226. <c:Borders>
  227. <c:Border position="left" lineStyle="Single" penStyle="Solid" color="#000000" />
  228. <c:Border position="top" lineStyle="Single" penStyle="Solid" color="#000000" />
  229. <c:Border position="right" lineStyle="Single" penStyle="Solid" color="#000000" />
  230. <c:Border position="bottom" lineStyle="Single" penStyle="Solid" color="#000000" />
  231. <c:Border position="diagonalleft" lineStyle="NullLine" />
  232. <c:Border position="diagonalright" lineStyle="NullLine" />
  233. </c:Borders>
  234. <c:Interior color="#ffffff" pattern="Solid" patternColor="#000000" />
  235. <c:Alignment horizontal="center" vertical="middle" wrapText="true" rotate="0" shrink="false" lineSpace="0.0" padding="1,1,1,1" clip="true" />
  236. <c:Protection hidden="false" locked="false" />
  237. </c:Style>
  238. <c:Style id="1">
  239. <c:Borders>
  240. <c:Border position="left" lineStyle="Single" penStyle="Dot" />
  241. <c:Border position="top" lineStyle="Single" penStyle="Dot" />
  242. <c:Border position="right" lineStyle="Single" penStyle="Dot" />
  243. <c:Border position="bottom" lineStyle="Single" penStyle="Dot" />
  244. </c:Borders>
  245. </c:Style>
  246. <c:Style id="6">
  247. <c:Font fontName="宋体" size="9" color="#000000" bold="false" underline="false" italic="false" strikethrough="false" weight="400.0" />
  248. <c:Borders>
  249. <c:Border position="left" lineStyle="NullLine" />
  250. <c:Border position="top" lineStyle="NullLine" />
  251. <c:Border position="right" lineStyle="NullLine" />
  252. <c:Border position="bottom" lineStyle="NullLine" />
  253. <c:Border position="diagonalleft" lineStyle="NullLine" />
  254. <c:Border position="diagonalright" lineStyle="NullLine" />
  255. </c:Borders>
  256. <c:Interior color="#ffffff" pattern="Solid" patternColor="#000000" />
  257. <c:Alignment horizontal="left" vertical="middle" wrapText="true" rotate="0" shrink="false" lineSpace="0.0" clip="true" />
  258. <c:Protection hidden="false" locked="false" />
  259. </c:Style>
  260. <c:Style id="10">
  261. <c:Font fontName="宋体" size="9" color="#000000" bold="false" underline="false" italic="false" strikethrough="false" weight="400.0" />
  262. <c:Borders>
  263. <c:Border position="left" lineStyle="Single" penStyle="Solid" color="#000000" />
  264. <c:Border position="top" lineStyle="Single" penStyle="Solid" color="#000000" />
  265. <c:Border position="right" lineStyle="Single" penStyle="Solid" color="#000000" />
  266. <c:Border position="bottom" lineStyle="Single" penStyle="Solid" color="#000000" />
  267. <c:Border position="diagonalleft" lineStyle="NullLine" />
  268. <c:Border position="diagonalright" lineStyle="NullLine" />
  269. </c:Borders>
  270. <c:Interior color="#ffffff" pattern="Solid" patternColor="#000000" />
  271. <c:Alignment horizontal="center" vertical="top" wrapText="true" rotate="0" shrink="false" lineSpace="0.0" clip="true" />
  272. <c:Protection hidden="false" locked="false" />
  273. </c:Style>
  274. <c:Style id="5">
  275. <c:Font fontName="宋体" size="9" color="#000000" bold="false" underline="false" italic="false" strikethrough="false" weight="400.0" />
  276. <c:Borders>
  277. <c:Border position="left" lineStyle="NullLine" />
  278. <c:Border position="top" lineStyle="NullLine" />
  279. <c:Border position="right" lineStyle="NullLine" />
  280. <c:Border position="bottom" lineStyle="NullLine" />
  281. <c:Border position="diagonalleft" lineStyle="NullLine" />
  282. <c:Border position="diagonalright" lineStyle="NullLine" />
  283. </c:Borders>
  284. <c:Interior color="#ffffff" pattern="Solid" patternColor="#000000" />
  285. <c:Alignment horizontal="left" vertical="middle" wrapText="false" rotate="0" shrink="false" lineSpace="0.0" clip="true" />
  286. <c:Protection hidden="false" locked="false" />
  287. </c:Style>
  288. <c:Style id="13">
  289. <c:Font fontName="宋体" size="14" color="#000000" bold="true" underline="false" italic="false" strikethrough="false" weight="400.0" />
  290. <c:Borders>
  291. <c:Border position="left" lineStyle="Single" penStyle="Solid" color="#000000" />
  292. <c:Border position="top" lineStyle="Single" penStyle="Solid" color="#000000" />
  293. <c:Border position="right" lineStyle="Single" penStyle="Solid" color="#000000" />
  294. <c:Border position="bottom" lineStyle="Single" penStyle="Solid" color="#000000" />
  295. <c:Border position="diagonalleft" lineStyle="NullLine" />
  296. <c:Border position="diagonalright" lineStyle="NullLine" />
  297. </c:Borders>
  298. <c:Interior color="#ffffff" pattern="Solid" patternColor="#000000" />
  299. <c:Alignment horizontal="left" vertical="middle" wrapText="false" rotate="0" shrink="false" lineSpace="0.0" padding="1,1,1,1" clip="true" />
  300. <c:Protection hidden="false" locked="false" />
  301. </c:Style>
  302. <c:Style id="9">
  303. <c:Font color="#000000" />
  304. <c:Borders>
  305. <c:Border position="left" lineStyle="Single" penStyle="Solid" color="#000000" />
  306. <c:Border position="top" lineStyle="Single" penStyle="Solid" color="#000000" />
  307. <c:Border position="right" lineStyle="Single" penStyle="Solid" color="#000000" />
  308. <c:Border position="bottom" lineStyle="Single" penStyle="Solid" color="#000000" />
  309. </c:Borders>
  310. <c:Interior color="#ffffff" pattern="Solid" patternColor="#000000" />
  311. </c:Style>
  312. <c:Style id="11">
  313. <c:Font fontName="宋体" size="9" color="#000000" bold="false" underline="false" italic="false" strikethrough="false" weight="400.0" />
  314. <c:Borders>
  315. <c:Border position="left" lineStyle="Single" penStyle="Solid" color="#000000" />
  316. <c:Border position="top" lineStyle="Single" penStyle="Solid" color="#000000" />
  317. <c:Border position="right" lineStyle="Single" penStyle="Solid" color="#000000" />
  318. <c:Border position="bottom" lineStyle="Single" penStyle="Solid" color="#000000" />
  319. <c:Border position="diagonalleft" lineStyle="NullLine" />
  320. <c:Border position="diagonalright" lineStyle="NullLine" />
  321. </c:Borders>
  322. <c:Interior color="#ffffff" pattern="Solid" patternColor="#000000" />
  323. <c:Alignment horizontal="center" vertical="middle" wrapText="false" rotate="0" shrink="false" lineSpace="0.0" padding="1,1,1,1" clip="true" />
  324. <c:Protection hidden="false" locked="false" />
  325. </c:Style>
  326. <c:Style id="4">
  327. <c:Font fontName="宋体" size="14" color="#000000" bold="true" underline="false" italic="false" strikethrough="false" weight="400.0" />
  328. <c:Borders>
  329. <c:Border position="left" lineStyle="NullLine" />
  330. <c:Border position="top" lineStyle="NullLine" />
  331. <c:Border position="right" lineStyle="NullLine" />
  332. <c:Border position="bottom" lineStyle="NullLine" />
  333. <c:Border position="diagonalleft" lineStyle="NullLine" />
  334. <c:Border position="diagonalright" lineStyle="NullLine" />
  335. </c:Borders>
  336. <c:Interior color="#ffffff" pattern="Solid" patternColor="#000000" />
  337. <c:Alignment horizontal="left" vertical="middle" wrapText="false" rotate="0" shrink="false" lineSpace="0.0" clip="true" />
  338. <c:Protection hidden="false" locked="false" />
  339. </c:Style>
  340. <c:Style id="8">
  341. <c:Font fontName="宋体" size="9" color="#000000" bold="false" underline="false" italic="false" strikethrough="false" weight="400.0" />
  342. <c:Borders>
  343. <c:Border position="left" lineStyle="Single" penStyle="Solid" color="#000000" />
  344. <c:Border position="top" lineStyle="Single" penStyle="Solid" color="#000000" />
  345. <c:Border position="right" lineStyle="Single" penStyle="Solid" color="#000000" />
  346. <c:Border position="bottom" lineStyle="Single" penStyle="Solid" color="#000000" />
  347. <c:Border position="diagonalleft" lineStyle="NullLine" />
  348. <c:Border position="diagonalright" lineStyle="NullLine" />
  349. </c:Borders>
  350. <c:Interior color="#ffffff" pattern="Solid" patternColor="#000000" />
  351. <c:Alignment horizontal="center" vertical="middle" wrapText="false" rotate="0" shrink="false" lineSpace="0.0" clip="true" />
  352. <c:Protection hidden="false" locked="false" />
  353. </c:Style>
  354. <c:Style id="12">
  355. <c:Borders>
  356. <c:Border position="left" lineStyle="NullLine" />
  357. <c:Border position="top" lineStyle="NullLine" />
  358. <c:Border position="right" lineStyle="NullLine" />
  359. <c:Border position="bottom" lineStyle="NullLine" />
  360. </c:Borders>
  361. <c:Interior color="#ffffff" pattern="Solid" patternColor="#000000" />
  362. </c:Style>
  363. </Styles>
  364. <Headers />
  365. <Footers />
  366. <DataObjects version="1.0">
  367. <DataObject name="ds_contract">
  368. <CommonQuery name="ds_contract">
  369. <Parameters>
  370. <Parameter name="empID" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
  371. </Parameters>
  372. <Outputs>
  373. <Columns>
  374. <Column name="employee.id" alias.zh_CN="员工ID" alias.en="" alias.zh_TW="員工ID" alias="#1" dataType="string" order="0" />
  375. <Column name="contractType.name" alias.zh_CN="合同类别" alias.en="" alias.zh_TW="合同類別" alias="#1" dataType="string" order="0" />
  376. <Column name="contractTemplet.name" alias.zh_CN="合同模板" alias.en="" alias.zh_TW="合同範本" alias="#1" dataType="string" order="0" />
  377. <Column name="contractNo" alias.zh_CN="合同编码" alias.en="" alias.zh_TW="合同編碼" alias="#1" dataType="string" order="0" />
  378. <Column name="recordDate" alias.zh_CN="签订日期" alias.en="" alias.zh_TW="簽訂日期" alias="#1" dataType="string" order="0" />
  379. <Column name="effectDate" alias.zh_CN="生效日期" alias.en="" alias.zh_TW="生效日期" alias="#1" dataType="string" order="0" />
  380. <Column name="freeDate" alias.zh_CN="解除日期" alias.en="" alias.zh_TW="解除日期" alias="#1" dataType="string" order="0" />
  381. <Column name="endDate" alias.zh_CN="终止日期" alias.en="" alias.zh_TW="終止日期" alias="#1" dataType="string" order="0" />
  382. <Column name="contractServerLimit" alias.zh_CN="服务期限" alias.en="" alias.zh_TW="服務期限" alias="#1" dataType="string" order="0" />
  383. </Columns>
  384. </Outputs>
  385. <Query version="1.0" type="bos.query">
  386. <Columns>
  387. <Column name="employee.id" alias.zh_CN="员工ID" alias.en="" alias.zh_TW="員工ID" alias="#1" dataType="string" />
  388. <Column name="contractType.name" alias.zh_CN="合同类别" alias.en="" alias.zh_TW="合同類別" alias="#1" dataType="string" />
  389. <Column name="contractTemplet.name" alias.zh_CN="合同模板" alias.en="" alias.zh_TW="合同範本" alias="#1" dataType="string" />
  390. <Column name="contractNo" alias.zh_CN="合同编码" alias.en="" alias.zh_TW="合同編碼" alias="#1" dataType="string" />
  391. <Column name="recordDate" alias.zh_CN="签订日期" alias.en="" alias.zh_TW="簽訂日期" alias="#1" dataType="string" />
  392. <Column name="effectDate" alias.zh_CN="生效日期" alias.en="" alias.zh_TW="生效日期" alias="#1" dataType="string" />
  393. <Column name="freeDate" alias.zh_CN="解除日期" alias.en="" alias.zh_TW="解除日期" alias="#1" dataType="string" />
  394. <Column name="endDate" alias.zh_CN="终止日期" alias.en="" alias.zh_TW="終止日期" alias="#1" dataType="string" />
  395. <Column name="contractServerLimit" alias.zh_CN="服务期限" alias.en="" alias.zh_TW="服務期限" alias="#1" dataType="string" />
  396. </Columns>
  397. <Tables />
  398. <Joins />
  399. <Orders />
  400. <Filter />
  401. <Content><![CDATA[T0005.bos-query]]></Content>
  402. </Query>
  403. <EXT />
  404. </CommonQuery>
  405. </DataObject>
  406. <DataObject name="ds_degree">
  407. <CommonQuery name="ds_degree">
  408. <Parameters>
  409. <Parameter name="empID" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
  410. </Parameters>
  411. <Outputs>
  412. <Columns>
  413. <Column name="personId" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  414. <Column name="diploma" alias.zh_CN="学历" alias.zh_TW="學歷" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  415. <Column name="degree" alias.zh_CN="学位" alias.zh_TW="學位" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  416. <Column name="isHighest" alias.zh_CN="是否最高学历" alias.zh_TW="是否最高學歷" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  417. <Column name="graduateSchool" alias.zh_CN="毕业学校" alias.zh_TW="畢業學校" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  418. <Column name="enrollDate" alias.zh_CN="入学时间" alias.zh_TW="入學時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  419. <Column name="graduateDate" alias.zh_CN="毕业时间" alias.zh_TW="畢業時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  420. <Column name="specialty" alias.zh_CN="所学专业" alias.zh_TW="所學專業" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  421. <Column name="specialtyType" alias.zh_CN="专业类型" alias.zh_TW="專業類型" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  422. <Column name="studyPattern" alias.zh_CN="学习形式" alias.zh_TW="學習形式" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  423. <Column name="studyLength" alias.zh_CN="学制(年)" alias.zh_TW="學制(年)" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  424. <Column name="degreeCountry" alias.zh_CN="学位授予国家" alias.zh_TW="學位授予國家" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  425. <Column name="degreeUnit" alias.zh_CN="学位授予单位" alias.zh_TW="學位授予單位" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  426. <Column name="degreeDate" alias.zh_CN="学位授予日期" alias.zh_TW="學位授予日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  427. </Columns>
  428. </Outputs>
  429. <Query version="1.0" type="bos.query">
  430. <Columns>
  431. <Column name="personId" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  432. <Column name="diploma" alias.zh_CN="学历" alias.zh_TW="學歷" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  433. <Column name="degree" alias.zh_CN="学位" alias.zh_TW="學位" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  434. <Column name="isHighest" alias.zh_CN="是否最高学历" alias.zh_TW="是否最高學歷" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  435. <Column name="graduateSchool" alias.zh_CN="毕业学校" alias.zh_TW="畢業學校" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  436. <Column name="enrollDate" alias.zh_CN="入学时间" alias.zh_TW="入學時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  437. <Column name="graduateDate" alias.zh_CN="毕业时间" alias.zh_TW="畢業時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  438. <Column name="specialty" alias.zh_CN="所学专业" alias.zh_TW="所學專業" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  439. <Column name="specialtyType" alias.zh_CN="专业类型" alias.zh_TW="專業類型" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  440. <Column name="studyPattern" alias.zh_CN="学习形式" alias.zh_TW="學習形式" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  441. <Column name="studyLength" alias.zh_CN="学制(年)" alias.zh_TW="學制(年)" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  442. <Column name="degreeCountry" alias.zh_CN="学位授予国家" alias.zh_TW="學位授予國家" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  443. <Column name="degreeUnit" alias.zh_CN="学位授予单位" alias.zh_TW="學位授予單位" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  444. <Column name="degreeDate" alias.zh_CN="学位授予日期" alias.zh_TW="學位授予日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  445. </Columns>
  446. <Tables />
  447. <Joins />
  448. <Orders />
  449. <Filter />
  450. <Content><![CDATA[T0003.bos-query]]></Content>
  451. </Query>
  452. <EXT />
  453. </CommonQuery>
  454. </DataObject>
  455. <DataObject name="ds_communist">
  456. <CommonQuery name="ds_communist">
  457. <Parameters>
  458. <Parameter name="empID" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
  459. </Parameters>
  460. <Outputs>
  461. <Columns>
  462. <Column name="empID" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  463. <Column name="joinDate" alias.zh_CN="入党时间" alias.zh_TW="入黨時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  464. <Column name="transDate" alias.zh_CN="党员转正时间" alias.zh_TW="黨員轉正時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  465. <Column name="depUnit" alias.zh_CN="发展党员单位" alias.zh_TW="發展黨員單位" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  466. <Column name="depYear" alias.zh_CN="发展党员年份" alias.zh_TW="發展黨員年份" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  467. <Column name="joinCircs" alias.zh_CN="入党转正情况" alias.zh_TW="入黨轉正情況" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  468. <Column name="communistDuty" alias.zh_CN="党内职务" alias.zh_TW="黨內職務" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  469. <Column name="firstCircs" alias.zh_CN="一线情况" alias.zh_TW="一線情況" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  470. </Columns>
  471. </Outputs>
  472. <Query version="1.0" type="bos.query">
  473. <Columns>
  474. <Column name="empID" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  475. <Column name="joinDate" alias.zh_CN="入党时间" alias.zh_TW="入黨時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  476. <Column name="transDate" alias.zh_CN="党员转正时间" alias.zh_TW="黨員轉正時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  477. <Column name="depUnit" alias.zh_CN="发展党员单位" alias.zh_TW="發展黨員單位" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  478. <Column name="depYear" alias.zh_CN="发展党员年份" alias.zh_TW="發展黨員年份" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  479. <Column name="joinCircs" alias.zh_CN="入党转正情况" alias.zh_TW="入黨轉正情況" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  480. <Column name="communistDuty" alias.zh_CN="党内职务" alias.zh_TW="黨內職務" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  481. <Column name="firstCircs" alias.zh_CN="一线情况" alias.zh_TW="一線情況" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  482. </Columns>
  483. <Tables />
  484. <Joins />
  485. <Orders />
  486. <Filter />
  487. <Content><![CDATA[T0012.bos-query]]></Content>
  488. </Query>
  489. <EXT />
  490. </CommonQuery>
  491. </DataObject>
  492. <DataObject name="ds_primaryPosition">
  493. <CommonQuery name="ds_primaryPosition">
  494. <Parameters>
  495. <Parameter name="empID" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
  496. </Parameters>
  497. <Outputs>
  498. <Columns>
  499. <Column name="id" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  500. <Column name="employeeType" alias.zh_CN="员工类别" alias.zh_TW="員工類別" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  501. <Column name="adminOrgUnit" alias.zh_CN="所属组织单元" alias.zh_TW="所屬組織單元" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  502. <Column name="position" alias.zh_CN="职位" alias.zh_TW="職位" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  503. <Column name="job" alias.zh_CN="职务" alias.zh_TW="職務" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  504. <Column name="jobLevel" alias.zh_CN="职级" alias.zh_TW="職級" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  505. <Column name="enterDate" alias.zh_CN="入职日期" alias.zh_TW="入職日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  506. <Column name="tryoutMonth" alias.zh_CN="试用期(月)" alias.zh_TW="試用期(月)" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  507. <Column name="formalDate" alias.zh_CN="转正日期" alias.zh_TW="轉正日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  508. <Column name="joinGroupDate" alias.zh_CN="入集团日期" alias.zh_TW="入集團日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  509. <Column name="joinGroupYears" alias.zh_CN="集团服务年限" alias.zh_TW="集團服務年限" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  510. <Column name="joinDate" alias.zh_CN="入司日期" alias.zh_TW="入司日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  511. <Column name="joinCompanyYears" alias.zh_CN="公司服务年限" alias.zh_TW="公司服務年限" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  512. <Column name="baseDate" alias.zh_CN="任职开始日期" alias.zh_TW="任職開始日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  513. <Column name="quitDate" alias.zh_CN="任职结束日期" alias.zh_TW="任職結束日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  514. <Column name="joinBaseYears" alias.zh_CN="担任本职位时间" alias.zh_TW="擔任本職位時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  515. </Columns>
  516. </Outputs>
  517. <Query version="1.0" type="bos.query">
  518. <Columns>
  519. <Column name="id" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  520. <Column name="employeeType" alias.zh_CN="员工类别" alias.zh_TW="員工類別" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  521. <Column name="adminOrgUnit" alias.zh_CN="所属组织单元" alias.zh_TW="所屬組織單元" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  522. <Column name="position" alias.zh_CN="职位" alias.zh_TW="職位" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  523. <Column name="job" alias.zh_CN="职务" alias.zh_TW="職務" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  524. <Column name="jobLevel" alias.zh_CN="职级" alias.zh_TW="職級" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  525. <Column name="enterDate" alias.zh_CN="入职日期" alias.zh_TW="入職日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  526. <Column name="tryoutMonth" alias.zh_CN="试用期(月)" alias.zh_TW="試用期(月)" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  527. <Column name="formalDate" alias.zh_CN="转正日期" alias.zh_TW="轉正日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  528. <Column name="joinGroupDate" alias.zh_CN="入集团日期" alias.zh_TW="入集團日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  529. <Column name="joinGroupYears" alias.zh_CN="集团服务年限" alias.zh_TW="集團服務年限" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  530. <Column name="joinDate" alias.zh_CN="入司日期" alias.zh_TW="入司日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  531. <Column name="joinCompanyYears" alias.zh_CN="公司服务年限" alias.zh_TW="公司服務年限" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  532. <Column name="baseDate" alias.zh_CN="任职开始日期" alias.zh_TW="任職開始日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  533. <Column name="quitDate" alias.zh_CN="任职结束日期" alias.zh_TW="任職結束日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  534. <Column name="joinBaseYears" alias.zh_CN="担任本职位时间" alias.zh_TW="擔任本職位時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  535. </Columns>
  536. <Tables />
  537. <Joins />
  538. <Orders />
  539. <Filter />
  540. <Content><![CDATA[T0002.bos-query]]></Content>
  541. </Query>
  542. <EXT />
  543. </CommonQuery>
  544. </DataObject>
  545. <DataObject name="ds_benefit">
  546. <CommonQuery name="ds_benefit">
  547. <Parameters>
  548. <Parameter name="personID" alias="#1" desc="#1" dataType="string" allowNull="false" />
  549. </Parameters>
  550. <Outputs>
  551. <Columns>
  552. <Column name="personID" alias.zh_CN="职员ID" alias.en="" alias.zh_TW="職員ID" alias="#1" dataType="string" order="0" />
  553. <Column name="accounts" alias.zh_CN="帐号" alias.en="" alias.zh_TW="帳號" alias="#1" dataType="string" order="0" />
  554. <Column name="accountTypeName" alias.zh_CN="账户类型" alias.en="" alias.zh_TW="賬戶類型" alias="#1" dataType="string" order="0" />
  555. <Column name="benefitName" alias.zh_CN="险种项目名" alias.en="" alias.zh_TW="險種項目名" alias="#1" dataType="string" order="0" />
  556. <Column name="benefitValue" alias.zh_CN="险种项目基数值" alias.en="" alias.zh_TW="險種項目基數值" alias="#1" dataType="string" order="0" />
  557. </Columns>
  558. </Outputs>
  559. <Query version="1.0" type="bos.query">
  560. <Columns>
  561. <Column name="personID" alias.zh_CN="职员ID" alias.en="" alias.zh_TW="職員ID" alias="#1" dataType="string" />
  562. <Column name="accounts" alias.zh_CN="帐号" alias.en="" alias.zh_TW="帳號" alias="#1" dataType="string" />
  563. <Column name="accountTypeName" alias.zh_CN="账户类型" alias.en="" alias.zh_TW="賬戶類型" alias="#1" dataType="string" />
  564. <Column name="benefitName" alias.zh_CN="险种项目名" alias.en="" alias.zh_TW="險種項目名" alias="#1" dataType="string" />
  565. <Column name="benefitValue" alias.zh_CN="险种项目基数值" alias.en="" alias.zh_TW="險種項目基數值" alias="#1" dataType="string" />
  566. </Columns>
  567. <Tables />
  568. <Joins />
  569. <Orders />
  570. <Filter />
  571. <Content><![CDATA[T0019.bos-query]]></Content>
  572. </Query>
  573. <EXT />
  574. </CommonQuery>
  575. </DataObject>
  576. <DataObject name="ds_resource">
  577. <CommonQuery name="ds_resource">
  578. <Parameters>
  579. <Parameter name="empID" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
  580. </Parameters>
  581. <Outputs>
  582. <Columns>
  583. <Column name="empID" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  584. <Column name="resourceNumber" alias.zh_CN="编码" alias.zh_TW="編碼" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  585. <Column name="resourceName" alias.zh_CN="名称" alias.zh_TW="名稱" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  586. <Column name="remark" alias.zh_CN="描述" alias.zh_TW="描述" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  587. </Columns>
  588. </Outputs>
  589. <Query version="1.0" type="bos.query">
  590. <Columns>
  591. <Column name="empID" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  592. <Column name="resourceNumber" alias.zh_CN="编码" alias.zh_TW="編碼" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  593. <Column name="resourceName" alias.zh_CN="名称" alias.zh_TW="名稱" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  594. <Column name="remark" alias.zh_CN="描述" alias.zh_TW="描述" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  595. </Columns>
  596. <Tables />
  597. <Joins />
  598. <Orders />
  599. <Filter />
  600. <Content><![CDATA[T0015.bos-query]]></Content>
  601. </Query>
  602. <EXT />
  603. </CommonQuery>
  604. </DataObject>
  605. <DataObject name="ds_baseInfo">
  606. <CommonQuery name="ds_baseInfo">
  607. <Outputs>
  608. <Columns>
  609. <Column name="imagedata" alias.zh_CN="员工照片" alias.en="" alias.zh_TW="員工照片" alias="#1" dataType="string" order="0" />
  610. <Column name="id" alias.zh_CN="员工ID" alias.en="" alias.zh_TW="員工ID" alias="#1" dataType="string" order="0" />
  611. <Column name="number" alias.zh_CN="员工编码" alias.en="" alias.zh_TW="員工編碼" alias="#1" dataType="string" order="0" />
  612. <Column name="name" alias.zh_CN="姓名" alias.en="" alias.zh_TW="姓名" alias="#1" dataType="string" order="0" />
  613. <Column name="oldName" alias.zh_CN="曾用名" alias.en="" alias.zh_TW="曾用名" alias="#1" dataType="string" order="0" />
  614. <Column name="positionName" alias.zh_CN="职位" alias.en="" alias.zh_TW="職位" alias="#1" dataType="string" order="0" />
  615. <Column name="adminOrgUnitName" alias.zh_CN="所属组织单元" alias.en="" alias.zh_TW="所屬組織單元" alias="#1" dataType="string" order="0" />
  616. <Column name="idCardNO" alias.zh_CN="身份证号码" alias.en="" alias.zh_TW="身份證號碼" alias="#1" dataType="string" order="0" />
  617. <Column name="gender" alias.zh_CN="性别" alias.en="" alias.zh_TW="性別" alias="#1" dataType="string" order="0" />
  618. <Column name="passportNO" alias.zh_CN="护照号码" alias.en="" alias.zh_TW="護照號碼" alias="#1" dataType="string" order="0" />
  619. <Column name="birthday" alias.zh_CN="出生日期" alias.en="" alias.zh_TW="出生日期" alias="#1" dataType="string" order="0" />
  620. <Column name="folk" alias.zh_CN="民族" alias.en="" alias.zh_TW="民族" alias="#1" dataType="string" order="0" />
  621. <Column name="height" alias.zh_CN="身高" alias.en="" alias.zh_TW="身高" alias="#1" dataType="string" order="0" />
  622. <Column name="bloodType" alias.zh_CN="血型" alias.en="" alias.zh_TW="血型" alias="#1" dataType="string" order="0" />
  623. <Column name="health" alias.zh_CN="健康状况" alias.en="" alias.zh_TW="健康狀況" alias="#1" dataType="string" order="0" />
  624. <Column name="wed" alias.zh_CN="婚姻状况" alias.en="" alias.zh_TW="婚姻狀況" alias="#1" dataType="string" order="0" />
  625. <Column name="birth" alias.zh_CN="家庭出身" alias.en="" alias.zh_TW="家庭出身" alias="#1" dataType="string" order="0" />
  626. <Column name="standing" alias.zh_CN="个人成分" alias.en="" alias.zh_TW="個人成分" alias="#1" dataType="string" order="0" />
  627. <Column name="politicalFace" alias.zh_CN="政治面貌" alias.en="" alias.zh_TW="政治面貌" alias="#1" dataType="string" order="0" />
  628. <Column name="hightestDegree" alias.zh_CN="最高学历" alias.en="" alias.zh_TW="最高學歷" alias="#1" dataType="string" order="0" />
  629. <Column name="hightestTechnicalPost" alias.zh_CN="最高职称" alias.en="" alias.zh_TW="最高職稱" alias="#1" dataType="string" order="0" />
  630. <Column name="provinceCityAddress" alias.zh_CN="籍贯" alias.en="" alias.zh_TW="籍貫" alias="#1" dataType="string" order="0" />
  631. <Column name="JobGradeName" alias.zh_CN="职等" alias.en="" alias.zh_TW="職等" alias="#1" dataType="string" order="0" />
  632. <Column name="jobStartDate" alias.zh_CN="参加工作日期" alias.en="" alias.zh_TW="參加工作日期" alias="#1" dataType="string" order="0" />
  633. <Column name="employeeClassifyName" alias.zh_CN="人员类型" alias.en="" alias.zh_TW="人員類型" alias="#1" dataType="string" order="0" />
  634. <Column name="hrOrgUnitName" alias.zh_CN="HR组织名称" alias.en="" alias.zh_TW="HR組織名稱" alias="#1" dataType="string" order="0" />
  635. </Columns>
  636. </Outputs>
  637. <Query version="1.0" type="bos.query">
  638. <Columns>
  639. <Column name="imagedata" alias.zh_CN="员工照片" alias.en="" alias.zh_TW="員工照片" alias="#1" dataType="string" />
  640. <Column name="id" alias.zh_CN="员工ID" alias.en="" alias.zh_TW="員工ID" alias="#1" dataType="string" />
  641. <Column name="number" alias.zh_CN="员工编码" alias.en="" alias.zh_TW="員工編碼" alias="#1" dataType="string" />
  642. <Column name="name" alias.zh_CN="姓名" alias.en="" alias.zh_TW="姓名" alias="#1" dataType="string" />
  643. <Column name="oldName" alias.zh_CN="曾用名" alias.en="" alias.zh_TW="曾用名" alias="#1" dataType="string" />
  644. <Column name="positionName" alias.zh_CN="职位" alias.en="" alias.zh_TW="職位" alias="#1" dataType="string" />
  645. <Column name="adminOrgUnitName" alias.zh_CN="所属组织单元" alias.en="" alias.zh_TW="所屬組織單元" alias="#1" dataType="string" />
  646. <Column name="idCardNO" alias.zh_CN="身份证号码" alias.en="" alias.zh_TW="身份證號碼" alias="#1" dataType="string" />
  647. <Column name="gender" alias.zh_CN="性别" alias.en="" alias.zh_TW="性別" alias="#1" dataType="string" />
  648. <Column name="passportNO" alias.zh_CN="护照号码" alias.en="" alias.zh_TW="護照號碼" alias="#1" dataType="string" />
  649. <Column name="birthday" alias.zh_CN="出生日期" alias.en="" alias.zh_TW="出生日期" alias="#1" dataType="string" />
  650. <Column name="folk" alias.zh_CN="民族" alias.en="" alias.zh_TW="民族" alias="#1" dataType="string" />
  651. <Column name="height" alias.zh_CN="身高" alias.en="" alias.zh_TW="身高" alias="#1" dataType="string" />
  652. <Column name="bloodType" alias.zh_CN="血型" alias.en="" alias.zh_TW="血型" alias="#1" dataType="string" />
  653. <Column name="health" alias.zh_CN="健康状况" alias.en="" alias.zh_TW="健康狀況" alias="#1" dataType="string" />
  654. <Column name="wed" alias.zh_CN="婚姻状况" alias.en="" alias.zh_TW="婚姻狀況" alias="#1" dataType="string" />
  655. <Column name="birth" alias.zh_CN="家庭出身" alias.en="" alias.zh_TW="家庭出身" alias="#1" dataType="string" />
  656. <Column name="standing" alias.zh_CN="个人成分" alias.en="" alias.zh_TW="個人成分" alias="#1" dataType="string" />
  657. <Column name="politicalFace" alias.zh_CN="政治面貌" alias.en="" alias.zh_TW="政治面貌" alias="#1" dataType="string" />
  658. <Column name="hightestDegree" alias.zh_CN="最高学历" alias.en="" alias.zh_TW="最高學歷" alias="#1" dataType="string" />
  659. <Column name="hightestTechnicalPost" alias.zh_CN="最高职称" alias.en="" alias.zh_TW="最高職稱" alias="#1" dataType="string" />
  660. <Column name="provinceCityAddress" alias.zh_CN="籍贯" alias.en="" alias.zh_TW="籍貫" alias="#1" dataType="string" />
  661. <Column name="JobGradeName" alias.zh_CN="职等" alias.en="" alias.zh_TW="職等" alias="#1" dataType="string" />
  662. <Column name="jobStartDate" alias.zh_CN="参加工作日期" alias.en="" alias.zh_TW="參加工作日期" alias="#1" dataType="string" />
  663. <Column name="employeeClassifyName" alias.zh_CN="人员类型" alias.en="" alias.zh_TW="人員類型" alias="#1" dataType="string" />
  664. <Column name="hrOrgUnitName" alias.zh_CN="HR组织名称" alias.en="" alias.zh_TW="HR組織名稱" alias="#1" dataType="string" />
  665. </Columns>
  666. <Tables />
  667. <Joins />
  668. <Orders />
  669. <Filter />
  670. <Content><![CDATA[T0001.bos-query]]></Content>
  671. </Query>
  672. <EXT />
  673. </CommonQuery>
  674. </DataObject>
  675. <DataObject name="ds_linkMen">
  676. <CommonQuery name="ds_linkMen">
  677. <Parameters>
  678. <Parameter name="empID" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
  679. </Parameters>
  680. <Outputs>
  681. <Columns>
  682. <Column name="empID" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  683. <Column name="linkManName" alias.zh_CN="紧急联系人姓名" alias.zh_TW="緊急聯繫人姓名" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  684. <Column name="phoneNumber" alias.zh_CN="电话" alias.zh_TW="電話" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  685. <Column name="bloodType" alias.zh_CN="血型" alias.zh_TW="血型" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  686. <Column name="remark" alias.zh_CN="备注" alias.zh_TW="備註" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  687. </Columns>
  688. </Outputs>
  689. <Query version="1.0" type="bos.query">
  690. <Columns>
  691. <Column name="empID" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  692. <Column name="linkManName" alias.zh_CN="紧急联系人姓名" alias.zh_TW="緊急聯繫人姓名" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  693. <Column name="phoneNumber" alias.zh_CN="电话" alias.zh_TW="電話" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  694. <Column name="bloodType" alias.zh_CN="血型" alias.zh_TW="血型" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  695. <Column name="remark" alias.zh_CN="备注" alias.zh_TW="備註" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  696. </Columns>
  697. <Tables />
  698. <Joins />
  699. <Orders />
  700. <Filter />
  701. <Content><![CDATA[T0009.bos-query]]></Content>
  702. </Query>
  703. <EXT />
  704. </CommonQuery>
  705. </DataObject>
  706. <DataObject name="ds_workExp">
  707. <CommonQuery name="ds_workExp">
  708. <Parameters>
  709. <Parameter name="empID" alias="#1" desc="#1" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
  710. <Parameter name="DATESORT" alias="#1" desc="#1" dataType="string" allowNull="true" defaultValue="asc" />
  711. </Parameters>
  712. <Outputs>
  713. <Columns>
  714. <Column name="Person.id" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  715. <Column name="beginDate" alias.zh_CN="开始日期" alias.zh_TW="開始日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  716. <Column name="endDate" alias.zh_CN="结束日期" alias.zh_TW="結束日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  717. <Column name="unitName" alias.zh_CN="单位名称" alias.zh_TW="單位名稱" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  718. <Column name="unitType.name" alias.zh_CN="单位性质" alias.zh_TW="單位性質" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  719. <Column name="personQuantity" alias.zh_CN="单位人数" alias.zh_TW="單位人數" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  720. <Column name="unitAddress" alias.zh_CN="单位地址" alias.zh_TW="單位地址" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  721. <Column name="workDept" alias.zh_CN="任职部门" alias.zh_TW="任職部門" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  722. <Column name="job" alias.zh_CN="担任职务" alias.zh_TW="擔任職務" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  723. <Column name="specialtyType.name" alias.zh_CN="专业类型" alias.zh_TW="專業類型" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  724. <Column name="subordinateQuantity" alias.zh_CN="下属人数" alias.zh_TW="下屬人數" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  725. <Column name="salary" alias.zh_CN="工资" alias.zh_TW="工資" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  726. <Column name="dimission" alias.zh_CN="离职原因" alias.zh_TW="離職原因" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  727. <Column name="linkman" alias.zh_CN="证明人" alias.zh_TW="證明人" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  728. <Column name="linkmanPhone" alias.zh_CN="证明人电话" alias.zh_TW="證明人電話" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  729. <Column name="remark" alias.zh_CN="备注" alias.zh_TW="備註" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  730. </Columns>
  731. </Outputs>
  732. <Query version="1.0" type="bos.query">
  733. <Columns>
  734. <Column name="Person.id" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  735. <Column name="beginDate" alias.zh_CN="开始日期" alias.zh_TW="開始日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  736. <Column name="endDate" alias.zh_CN="结束日期" alias.zh_TW="結束日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  737. <Column name="unitName" alias.zh_CN="单位名称" alias.zh_TW="單位名稱" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  738. <Column name="unitType.name" alias.zh_CN="单位性质" alias.zh_TW="單位性質" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  739. <Column name="personQuantity" alias.zh_CN="单位人数" alias.zh_TW="單位人數" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  740. <Column name="unitAddress" alias.zh_CN="单位地址" alias.zh_TW="單位地址" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  741. <Column name="workDept" alias.zh_CN="任职部门" alias.zh_TW="任職部門" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  742. <Column name="job" alias.zh_CN="担任职务" alias.zh_TW="擔任職務" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  743. <Column name="specialtyType.name" alias.zh_CN="专业类型" alias.zh_TW="專業類型" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  744. <Column name="subordinateQuantity" alias.zh_CN="下属人数" alias.zh_TW="下屬人數" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  745. <Column name="salary" alias.zh_CN="工资" alias.zh_TW="工資" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  746. <Column name="dimission" alias.zh_CN="离职原因" alias.zh_TW="離職原因" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  747. <Column name="linkman" alias.zh_CN="证明人" alias.zh_TW="證明人" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  748. <Column name="linkmanPhone" alias.zh_CN="证明人电话" alias.zh_TW="證明人電話" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  749. <Column name="remark" alias.zh_CN="备注" alias.zh_TW="備註" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  750. </Columns>
  751. <Tables />
  752. <Joins />
  753. <Orders />
  754. <Filter />
  755. <Content><![CDATA[T0007.bos-query]]></Content>
  756. </Query>
  757. <EXT />
  758. </CommonQuery>
  759. </DataObject>
  760. <DataObject name="ds_family">
  761. <CommonQuery name="ds_family">
  762. <Parameters>
  763. <Parameter name="empID" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
  764. </Parameters>
  765. <Outputs>
  766. <Columns>
  767. <Column name="Person.id" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  768. <Column name="name" alias.zh_CN="姓名" alias.zh_TW="姓名" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  769. <Column name="relation" alias.zh_CN="与本人关系" alias.zh_TW="與本人關係" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  770. <Column name="workUnit" alias.zh_CN="工作单位及职位" alias.zh_TW="工作單位及職位" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  771. <Column name="officePhone" alias.zh_CN="单位联系电话" alias.zh_TW="單位聯繫電話" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  772. <Column name="homeAddress" alias.zh_CN="家庭住址" alias.zh_TW="家庭住址" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  773. <Column name="homePhone" alias.zh_CN="家庭联系电话" alias.zh_TW="家庭聯繫電話" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  774. <Column name="diploma" alias.zh_CN="学历" alias.zh_TW="學歷" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  775. <Column name="politicalFace" alias.zh_CN="政治面貌" alias.zh_TW="政治面貌" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  776. <Column name="birthday" alias.zh_CN="出生日期" alias.zh_TW="出生日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  777. <Column name="specDuty" alias.zh_CN="专业技术职务" alias.en="" alias.zh_TW="專業技術職務" alias="#1" dataType="string" order="0" />
  778. </Columns>
  779. </Outputs>
  780. <Query version="1.0" type="bos.query">
  781. <Columns>
  782. <Column name="Person.id" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  783. <Column name="name" alias.zh_CN="姓名" alias.zh_TW="姓名" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  784. <Column name="relation" alias.zh_CN="与本人关系" alias.zh_TW="與本人關係" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  785. <Column name="workUnit" alias.zh_CN="工作单位及职位" alias.zh_TW="工作單位及職位" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  786. <Column name="officePhone" alias.zh_CN="单位联系电话" alias.zh_TW="單位聯繫電話" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  787. <Column name="homeAddress" alias.zh_CN="家庭住址" alias.zh_TW="家庭住址" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  788. <Column name="homePhone" alias.zh_CN="家庭联系电话" alias.zh_TW="家庭聯繫電話" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  789. <Column name="diploma" alias.zh_CN="学历" alias.zh_TW="學歷" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  790. <Column name="politicalFace" alias.zh_CN="政治面貌" alias.zh_TW="政治面貌" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  791. <Column name="birthday" alias.zh_CN="出生日期" alias.zh_TW="出生日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  792. <Column name="specDuty" alias.zh_CN="专业技术职务" alias.en="" alias.zh_TW="專業技術職務" alias="#1" dataType="string" />
  793. </Columns>
  794. <Tables />
  795. <Joins />
  796. <Orders />
  797. <Filter />
  798. <Content><![CDATA[T0010.bos-query]]></Content>
  799. </Query>
  800. <EXT />
  801. </CommonQuery>
  802. </DataObject>
  803. <DataObject name="ds_language">
  804. <CommonQuery name="ds_language">
  805. <Parameters>
  806. <Parameter name="empID" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
  807. </Parameters>
  808. <Outputs>
  809. <Columns>
  810. <Column name="empID" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  811. <Column name="language" alias.zh_CN="语言" alias.zh_TW="語言" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  812. <Column name="grade" alias.zh_CN="熟练程度" alias.zh_TW="熟練程度" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  813. </Columns>
  814. </Outputs>
  815. <Query version="1.0" type="bos.query">
  816. <Columns>
  817. <Column name="empID" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  818. <Column name="language" alias.zh_CN="语言" alias.zh_TW="語言" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  819. <Column name="grade" alias.zh_CN="熟练程度" alias.zh_TW="熟練程度" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  820. </Columns>
  821. <Tables />
  822. <Joins />
  823. <Orders />
  824. <Filter />
  825. <Content><![CDATA[T0004.bos-query]]></Content>
  826. </Query>
  827. <EXT />
  828. </CommonQuery>
  829. </DataObject>
  830. <DataObject name="ds_archive">
  831. <CommonQuery name="ds_archive">
  832. <Parameters>
  833. <Parameter name="empID" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
  834. </Parameters>
  835. <Outputs>
  836. <Columns>
  837. <Column name="empID" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  838. <Column name="number" alias.zh_CN="档案编号" alias.zh_TW="檔案編號" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  839. <Column name="type" alias.zh_CN="档案类型" alias.zh_TW="檔案類型" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  840. <Column name="archivesPlace" alias.zh_CN="档案存放地点" alias.zh_TW="檔案存放地點" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  841. <Column name="source" alias.zh_CN="档案来源" alias.zh_TW="檔案來源" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  842. <Column name="destination" alias.zh_CN="档案去处" alias.zh_TW="檔案去處" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  843. <Column name="inDate" alias.zh_CN="档案转入时间" alias.zh_TW="檔案轉入時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  844. <Column name="outDate" alias.zh_CN="档案转出时间" alias.zh_TW="檔案轉出時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  845. <Column name="remark" alias.zh_CN="备注" alias.zh_TW="備註" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  846. </Columns>
  847. </Outputs>
  848. <Query version="1.0" type="bos.query">
  849. <Columns>
  850. <Column name="empID" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  851. <Column name="number" alias.zh_CN="档案编号" alias.zh_TW="檔案編號" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  852. <Column name="type" alias.zh_CN="档案类型" alias.zh_TW="檔案類型" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  853. <Column name="archivesPlace" alias.zh_CN="档案存放地点" alias.zh_TW="檔案存放地點" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  854. <Column name="source" alias.zh_CN="档案来源" alias.zh_TW="檔案來源" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  855. <Column name="destination" alias.zh_CN="档案去处" alias.zh_TW="檔案去處" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  856. <Column name="inDate" alias.zh_CN="档案转入时间" alias.zh_TW="檔案轉入時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  857. <Column name="outDate" alias.zh_CN="档案转出时间" alias.zh_TW="檔案轉出時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  858. <Column name="remark" alias.zh_CN="备注" alias.zh_TW="備註" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  859. </Columns>
  860. <Tables />
  861. <Joins />
  862. <Orders />
  863. <Filter />
  864. <Content><![CDATA[T0008.bos-query]]></Content>
  865. </Query>
  866. <EXT />
  867. </CommonQuery>
  868. </DataObject>
  869. <DataObject name="ds_compet">
  870. <CommonQuery name="ds_compet">
  871. <Parameters>
  872. <Parameter name="empID" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
  873. </Parameters>
  874. <Outputs>
  875. <Columns>
  876. <Column name="person.id" alias.zh_CN="员工ID" alias.en="" alias.zh_TW="員工ID" alias="#1" dataType="string" order="0" />
  877. <Column name="empCompetIndex" alias.zh_CN="素质指标" alias.en="" alias.zh_TW="素質指標" alias="#1" dataType="string" order="0" />
  878. <Column name="competIndexType" alias.zh_CN="能力素质类型" alias.en="" alias.zh_TW="能力素質類型" alias="#1" dataType="string" order="0" />
  879. <Column name="indexGrade" alias.zh_CN="个人素质级别" alias.en="" alias.zh_TW="個人素質級別" alias="#1" dataType="string" order="0" />
  880. <Column name="description" alias.zh_CN="描述" alias.en="" alias.zh_TW="描述" alias="#1" dataType="string" order="0" />
  881. <Column name="CompetIndexGrade.description" alias.zh_CN="行为描述" alias.en="" alias.zh_TW="行為描述" alias="#1" dataType="string" order="0" />
  882. </Columns>
  883. </Outputs>
  884. <Query version="1.0" type="bos.query">
  885. <Columns>
  886. <Column name="person.id" alias.zh_CN="员工ID" alias.en="" alias.zh_TW="員工ID" alias="#1" dataType="string" />
  887. <Column name="empCompetIndex" alias.zh_CN="素质指标" alias.en="" alias.zh_TW="素質指標" alias="#1" dataType="string" />
  888. <Column name="competIndexType" alias.zh_CN="能力素质类型" alias.en="" alias.zh_TW="能力素質類型" alias="#1" dataType="string" />
  889. <Column name="indexGrade" alias.zh_CN="个人素质级别" alias.en="" alias.zh_TW="個人素質級別" alias="#1" dataType="string" />
  890. <Column name="description" alias.zh_CN="描述" alias.en="" alias.zh_TW="描述" alias="#1" dataType="string" />
  891. <Column name="CompetIndexGrade.description" alias.zh_CN="行为描述" alias.en="" alias.zh_TW="行為描述" alias="#1" dataType="string" />
  892. </Columns>
  893. <Tables />
  894. <Joins />
  895. <Orders />
  896. <Filter />
  897. <Content><![CDATA[T0014.bos-query]]></Content>
  898. </Query>
  899. <EXT />
  900. </CommonQuery>
  901. </DataObject>
  902. <DataObject name="ds_train">
  903. <CommonQuery name="ds_train">
  904. <Parameters>
  905. <Parameter name="empID" alias="#1" desc="#1" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
  906. </Parameters>
  907. <Outputs>
  908. <Columns>
  909. <Column name="trainCourse" alias.zh_CN="培训课程" alias.en="" alias.zh_TW="培訓課程" alias="#1" dataType="string" order="0" />
  910. <Column name="beginDateTime" alias.zh_CN="课程开始时间" alias.en="" alias.zh_TW="課程開始時間" alias="#1" dataType="datetime" order="0" />
  911. <Column name="endDateTime" alias.zh_CN="课程结束时间" alias.en="" alias.zh_TW="課程結束時間" alias="#1" dataType="datetime" order="0" />
  912. <Column name="trainMethod" alias.zh_CN="培训方式" alias.en="" alias.zh_TW="培訓方式" alias="#1" dataType="string" order="0" />
  913. <Column name="courseCertificateName" alias.zh_CN="证书名称" alias.en="" alias.zh_TW="證書名稱" alias="#1" dataType="string" order="0" />
  914. </Columns>
  915. </Outputs>
  916. <Query version="1.0" type="bos.query">
  917. <Columns>
  918. <Column name="trainCourse" alias.zh_CN="培训课程" alias.en="" alias.zh_TW="培訓課程" alias="#1" dataType="string" />
  919. <Column name="beginDateTime" alias.zh_CN="课程开始时间" alias.en="" alias.zh_TW="課程開始時間" alias="#1" dataType="datetime" />
  920. <Column name="endDateTime" alias.zh_CN="课程结束时间" alias.en="" alias.zh_TW="課程結束時間" alias="#1" dataType="datetime" />
  921. <Column name="trainMethod" alias.zh_CN="培训方式" alias.en="" alias.zh_TW="培訓方式" alias="#1" dataType="string" />
  922. <Column name="courseCertificateName" alias.zh_CN="证书名称" alias.en="" alias.zh_TW="證書名稱" alias="#1" dataType="string" />
  923. </Columns>
  924. <Tables />
  925. <Joins />
  926. <Orders />
  927. <Filter />
  928. <Content><![CDATA[T0018.bos-query]]></Content>
  929. </Query>
  930. <EXT />
  931. </CommonQuery>
  932. </DataObject>
  933. <DataObject name="ds_post">
  934. <CommonQuery name="ds_post">
  935. <Parameters>
  936. <Parameter name="empID" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
  937. </Parameters>
  938. <Outputs>
  939. <Columns>
  940. <Column name="person.id" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  941. <Column name="technicalPost" alias.zh_CN="职称名称" alias.zh_TW="職稱名稱" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  942. <Column name="category" alias.zh_CN="职称类别" alias.zh_TW="職稱類別" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  943. <Column name="level" alias.zh_CN="职称级别" alias.zh_TW="職稱級別" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  944. <Column name="isHighestPost" alias.zh_CN="是否最高职称" alias.zh_TW="是否最高職稱" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  945. <Column name="technicalCont" alias.zh_CN="职称内容" alias.zh_TW="職稱內容" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  946. <Column name="gradeUnit" alias.zh_CN="评定单位" alias.zh_TW="評定單位" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  947. <Column name="conferDate" alias.zh_CN="授予时间" alias.zh_TW="授予時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  948. <Column name="certificateNo" alias.zh_CN="证书编号" alias.zh_TW="證書編號" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  949. <Column name="description" alias.zh_CN="备注" alias.zh_TW="備註" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  950. </Columns>
  951. </Outputs>
  952. <Query version="1.0" type="bos.query">
  953. <Columns>
  954. <Column name="person.id" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  955. <Column name="technicalPost" alias.zh_CN="职称名称" alias.zh_TW="職稱名稱" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  956. <Column name="category" alias.zh_CN="职称类别" alias.zh_TW="職稱類別" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  957. <Column name="level" alias.zh_CN="职称级别" alias.zh_TW="職稱級別" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  958. <Column name="isHighestPost" alias.zh_CN="是否最高职称" alias.zh_TW="是否最高職稱" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  959. <Column name="technicalCont" alias.zh_CN="职称内容" alias.zh_TW="職稱內容" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  960. <Column name="gradeUnit" alias.zh_CN="评定单位" alias.zh_TW="評定單位" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  961. <Column name="conferDate" alias.zh_CN="授予时间" alias.zh_TW="授予時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  962. <Column name="certificateNo" alias.zh_CN="证书编号" alias.zh_TW="證書編號" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  963. <Column name="description" alias.zh_CN="备注" alias.zh_TW="備註" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  964. </Columns>
  965. <Tables />
  966. <Joins />
  967. <Orders />
  968. <Filter />
  969. <Content><![CDATA[T0016.bos-query]]></Content>
  970. </Query>
  971. <EXT />
  972. </CommonQuery>
  973. </DataObject>
  974. <DataObject name="ds_certificate">
  975. <CommonQuery name="ds_certificate">
  976. <Parameters>
  977. <Parameter name="empID" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
  978. </Parameters>
  979. <Outputs>
  980. <Columns>
  981. <Column name="empID" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  982. <Column name="certificateNumber" alias.zh_CN="证书编号" alias.zh_TW="證書編號" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  983. <Column name="certificateName" alias.zh_CN="认证名称" alias.zh_TW="認證名稱" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  984. <Column name="certificateDate" alias.zh_CN="认证日期" alias.zh_TW="認證日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  985. <Column name="certificateValidityYear" alias.zh_CN="认证有效期(年)" alias.zh_TW="認證有效期(年)" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  986. <Column name="certificateOrgan" alias.zh_CN="认证机构" alias.zh_TW="認證機構" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  987. <Column name="certificateLevel" alias.zh_CN="认证级别" alias.zh_TW="認證級別" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  988. </Columns>
  989. </Outputs>
  990. <Query version="1.0" type="bos.query">
  991. <Columns>
  992. <Column name="empID" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  993. <Column name="certificateNumber" alias.zh_CN="证书编号" alias.zh_TW="證書編號" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  994. <Column name="certificateName" alias.zh_CN="认证名称" alias.zh_TW="認證名稱" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  995. <Column name="certificateDate" alias.zh_CN="认证日期" alias.zh_TW="認證日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  996. <Column name="certificateValidityYear" alias.zh_CN="认证有效期(年)" alias.zh_TW="認證有效期(年)" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  997. <Column name="certificateOrgan" alias.zh_CN="认证机构" alias.zh_TW="認證機構" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  998. <Column name="certificateLevel" alias.zh_CN="认证级别" alias.zh_TW="認證級別" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  999. </Columns>
  1000. <Tables />
  1001. <Joins />
  1002. <Orders />
  1003. <Filter />
  1004. <Content><![CDATA[T0011.bos-query]]></Content>
  1005. </Query>
  1006. <EXT />
  1007. </CommonQuery>
  1008. </DataObject>
  1009. <DataObject name="ds_workExpCur">
  1010. <CommonQuery name="ds_workExpCur">
  1011. <Parameters>
  1012. <Parameter name="empID" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
  1013. </Parameters>
  1014. <Outputs>
  1015. <Columns>
  1016. <Column name="person.id" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  1017. <Column name="position.name" alias.zh_CN="职位" alias.zh_TW="職位" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  1018. <Column name="job.name" alias.zh_CN="职务" alias.zh_TW="職務" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  1019. <Column name="jobLevel.name" alias.zh_CN="职级" alias.zh_TW="職級" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  1020. <Column name="AdminOrgUnit.name" alias.zh_CN="所属组织单元" alias.zh_TW="所屬組織單元" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  1021. <Column name="beginDate" alias.zh_CN="任职开始日期" alias.zh_TW="任職開始日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  1022. <Column name="endDate" alias.zh_CN="任职结束日期" alias.zh_TW="任職結束日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  1023. </Columns>
  1024. </Outputs>
  1025. <Query version="1.0" type="bos.query">
  1026. <Columns>
  1027. <Column name="person.id" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  1028. <Column name="position.name" alias.zh_CN="职位" alias.zh_TW="職位" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  1029. <Column name="job.name" alias.zh_CN="职务" alias.zh_TW="職務" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  1030. <Column name="jobLevel.name" alias.zh_CN="职级" alias.zh_TW="職級" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  1031. <Column name="AdminOrgUnit.name" alias.zh_CN="所属组织单元" alias.zh_TW="所屬組織單元" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  1032. <Column name="beginDate" alias.zh_CN="任职开始日期" alias.zh_TW="任職開始日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  1033. <Column name="endDate" alias.zh_CN="任职结束日期" alias.zh_TW="任職結束日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  1034. </Columns>
  1035. <Tables />
  1036. <Joins />
  1037. <Orders />
  1038. <Filter />
  1039. <Content><![CDATA[T0017.bos-query]]></Content>
  1040. </Query>
  1041. <EXT />
  1042. </CommonQuery>
  1043. </DataObject>
  1044. <DataObject name="ds_contactMethod">
  1045. <CommonQuery name="ds_contactMethod">
  1046. <Parameters>
  1047. <Parameter name="empID" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
  1048. </Parameters>
  1049. <Outputs>
  1050. <Columns>
  1051. <Column name="empID" alias.zh_CN="员工ID" alias.en="" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.en="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  1052. <Column name="homeplace" alias.zh_CN="出生地" alias.en="" alias.zh_TW="出生地" alias="#1" desc.zh_TW="" desc.en="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  1053. <Column name="homeAddress" alias.zh_CN="住址" alias.en="" alias.zh_TW="住址" alias="#1" desc.zh_TW="" desc.en="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  1054. <Column name="address" alias.zh_CN="通讯地址" alias.en="" alias.zh_TW="通訊地址" alias="#1" desc.zh_TW="" desc.en="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  1055. <Column name="postalcode" alias.zh_CN="邮政编码" alias.en="" alias.zh_TW="郵遞區號" alias="#1" desc.zh_TW="" desc.en="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  1056. <Column name="email" alias.zh_CN="Email地址" alias.en="" alias.zh_TW="Email地址" alias="#1" desc.zh_TW="" desc.en="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  1057. <Column name="homePhone" alias.zh_CN="家庭电话" alias.en="" alias.zh_TW="家庭電話" alias="#1" desc.zh_TW="" desc.en="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  1058. <Column name="mobile" alias.zh_CN="手机号码" alias.en="" alias.zh_TW="手機號碼" alias="#1" desc.zh_TW="" desc.en="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  1059. <Column name="officePhone" alias.zh_CN="办公室电话" alias.en="" alias.zh_TW="辦公室電話" alias="#1" desc.zh_TW="" desc.en="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  1060. <Column name="idCardAddress" alias.zh_CN="身份证地址" alias.en="" alias.zh_TW="身份證地址" alias="#1" desc.zh_TW="" desc.en="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  1061. </Columns>
  1062. </Outputs>
  1063. <Query version="1.0" type="bos.query">
  1064. <Columns>
  1065. <Column name="empID" alias.zh_CN="员工ID" alias.en="" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.en="" desc.zh_CN="" desc="#1" dataType="string" />
  1066. <Column name="homeplace" alias.zh_CN="出生地" alias.en="" alias.zh_TW="出生地" alias="#1" desc.zh_TW="" desc.en="" desc.zh_CN="" desc="#1" dataType="string" />
  1067. <Column name="homeAddress" alias.zh_CN="住址" alias.en="" alias.zh_TW="住址" alias="#1" desc.zh_TW="" desc.en="" desc.zh_CN="" desc="#1" dataType="string" />
  1068. <Column name="address" alias.zh_CN="通讯地址" alias.en="" alias.zh_TW="通訊地址" alias="#1" desc.zh_TW="" desc.en="" desc.zh_CN="" desc="#1" dataType="string" />
  1069. <Column name="postalcode" alias.zh_CN="邮政编码" alias.en="" alias.zh_TW="郵遞區號" alias="#1" desc.zh_TW="" desc.en="" desc.zh_CN="" desc="#1" dataType="string" />
  1070. <Column name="email" alias.zh_CN="Email地址" alias.en="" alias.zh_TW="Email地址" alias="#1" desc.zh_TW="" desc.en="" desc.zh_CN="" desc="#1" dataType="string" />
  1071. <Column name="homePhone" alias.zh_CN="家庭电话" alias.en="" alias.zh_TW="家庭電話" alias="#1" desc.zh_TW="" desc.en="" desc.zh_CN="" desc="#1" dataType="string" />
  1072. <Column name="mobile" alias.zh_CN="手机号码" alias.en="" alias.zh_TW="手機號碼" alias="#1" desc.zh_TW="" desc.en="" desc.zh_CN="" desc="#1" dataType="string" />
  1073. <Column name="officePhone" alias.zh_CN="办公室电话" alias.en="" alias.zh_TW="辦公室電話" alias="#1" desc.zh_TW="" desc.en="" desc.zh_CN="" desc="#1" dataType="string" />
  1074. <Column name="idCardAddress" alias.zh_CN="身份证地址" alias.en="" alias.zh_TW="身份證地址" alias="#1" desc.zh_TW="" desc.en="" desc.zh_CN="" desc="#1" dataType="string" />
  1075. </Columns>
  1076. <Tables />
  1077. <Joins />
  1078. <Orders />
  1079. <Filter />
  1080. <Content><![CDATA[T0013.bos-query]]></Content>
  1081. </Query>
  1082. <EXT />
  1083. </CommonQuery>
  1084. </DataObject>
  1085. <DataObject name="ds_rewordPunish">
  1086. <CommonQuery name="ds_rewordPunish">
  1087. <Parameters>
  1088. <Parameter name="empID" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
  1089. </Parameters>
  1090. <Outputs>
  1091. <Columns>
  1092. <Column name="empID" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  1093. <Column name="occurTitle" alias.zh_CN="奖惩信息标题" alias.zh_TW="獎懲信息標題" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  1094. <Column name="occurType" alias.zh_CN="奖惩类型" alias.zh_TW="獎懲類型" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  1095. <Column name="occurContent" alias.zh_CN="奖惩内容" alias.zh_TW="獎懲內容" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  1096. <Column name="occurDate" alias.zh_CN="奖惩时间" alias.zh_TW="獎懲時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
  1097. </Columns>
  1098. </Outputs>
  1099. <Query version="1.0" type="bos.query">
  1100. <Columns>
  1101. <Column name="empID" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  1102. <Column name="occurTitle" alias.zh_CN="奖惩信息标题" alias.zh_TW="獎懲信息標題" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  1103. <Column name="occurType" alias.zh_CN="奖惩类型" alias.zh_TW="獎懲類型" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  1104. <Column name="occurContent" alias.zh_CN="奖惩内容" alias.zh_TW="獎懲內容" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  1105. <Column name="occurDate" alias.zh_CN="奖惩时间" alias.zh_TW="獎懲時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
  1106. </Columns>
  1107. <Tables />
  1108. <Joins />
  1109. <Orders />
  1110. <Filter />
  1111. <Content><![CDATA[T0006.bos-query]]></Content>
  1112. </Query>
  1113. <EXT />
  1114. </CommonQuery>
  1115. </DataObject>
  1116. </DataObjects>
  1117. <Form id="form1" alias="职员花名册模板" version="3.1">
  1118. <f:Page id="page1" alias="页1" styleID="0" repeat="-1">
  1119. <f:DesignedPage paperSize="Custom" objWidth="1720" objHeight="4600" widthLimitless="false" heightLimitless="true" />
  1120. <f:Area id="loop1" alias="循环区1" styleID="1" left="[page1.left]" right="[page1.right]" top="[page1.top]" maxLoopCount="1" nextAreaID="loop1">
  1121. <f:DesignedArea leftLocationType="relative" leftRelativeObjID="page1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="page1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="page1" topRelativeBorder="top" topRelativeOffset="0" bottomLocationType="selfAdapt" bottomRelativeObjID="page1" bottomRelativeBorder="bottom" bottomRelativeOffset="0" locked="false" />
  1122. <f:Panel id="group1" alias="分组容器1" styleID="2" left="[loop1.left]" right="[loop1.right]" top="[loop1.top]" dataSourceID="ds_baseInfo">
  1123. <f:DesignedPanel leftLocationType="relative" leftRelativeObjID="loop1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="loop1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop1" topRelativeBorder="top" topRelativeOffset="0" bottomLocationType="selfAdapt" bottomRelativeObjID="loop1" bottomRelativeBorder="bottom" bottomRelativeOffset="0" locked="false" />
  1124. <f:Cell id="text1" alias="文本1" styleID="3" left="[group1.left]+532.0" right="[text1.left]+532.0" top="[group1.top]+19.0" bottom="[text1.top]+88.0" type="constant">
  1125. <f:DesignedCell leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="532" rightLocationType="relative" rightRelativeObjID="text1" rightRelativeBorder="left" rightRelativeOffset="532" topLocationType="relative" topRelativeObjID="group1" topRelativeBorder="top" topRelativeOffset="19" bottomLocationType="relative" bottomRelativeObjID="text1" bottomRelativeBorder="top" bottomRelativeOffset="88" locked="false" />
  1126. <f:Data type="string">员工详细信息</f:Data>
  1127. </f:Cell>
  1128. <f:Table id="table1" alias="tbl_基本" left="[group1.left]" right="[group1.right]" top="[group1.top]+124.0" bottom="[table1.top]+413.0" dataSourceID="ds_baseInfo">
  1129. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="group1" topRelativeBorder="top" topRelativeOffset="124" bottomLocationType="relative" bottomRelativeObjID="table1" bottomRelativeBorder="top" bottomRelativeOffset="413" locked="false" />
  1130. <f:Rows>
  1131. <f:Row />
  1132. <f:Row />
  1133. <f:Row />
  1134. <f:Row />
  1135. <f:Row />
  1136. <f:Row />
  1137. <f:Row />
  1138. </f:Rows>
  1139. <f:Columns>
  1140. <f:Column />
  1141. <f:Column />
  1142. <f:Column />
  1143. <f:Column />
  1144. <f:Column />
  1145. <f:Column />
  1146. <f:Column />
  1147. <f:Column />
  1148. <f:Column />
  1149. <f:Column />
  1150. <f:Column />
  1151. <f:Column />
  1152. <f:Column />
  1153. <f:Column />
  1154. <f:Column />
  1155. <f:Column />
  1156. <f:Column />
  1157. <f:Column />
  1158. <f:Column />
  1159. <f:Column />
  1160. <f:Column />
  1161. <f:Column />
  1162. <f:Column />
  1163. <f:Column />
  1164. <f:Column />
  1165. <f:Column />
  1166. <f:Column />
  1167. <f:Column />
  1168. <f:Column />
  1169. <f:Column />
  1170. </f:Columns>
  1171. <f:Body>
  1172. <f:Cell id="text2" alias="文本2" styleID="4" left="1" right="30" top="1" bottom="2" type="constant">
  1173. <f:DesignedCell locked="false" />
  1174. <f:Data type="string">基本信息</f:Data>
  1175. </f:Cell>
  1176. <f:Cell id="text36" alias="文本36" styleID="2" left="1" right="3" top="3" bottom="3" type="constant">
  1177. <f:DesignedCell locked="false" />
  1178. <f:Data type="string">员工编码:</f:Data>
  1179. </f:Cell>
  1180. <f:Cell id="field3" alias="字段3" styleID="2" left="4" right="7" top="3" bottom="3" type="field">
  1181. <f:DesignedCell text="员工编码" locked="false" />
  1182. <f:Data type="string">number</f:Data>
  1183. </f:Cell>
  1184. <f:Cell id="text37" alias="文本37" styleID="5" left="8" right="9" top="3" bottom="3" type="constant">
  1185. <f:DesignedCell locked="false" />
  1186. <f:Data type="string">姓名:</f:Data>
  1187. </f:Cell>
  1188. <f:Cell id="field2" alias="字段2" styleID="5" left="10" right="12" top="3" bottom="3" type="field">
  1189. <f:DesignedCell text="姓名" locked="false" />
  1190. <f:Data type="string">name</f:Data>
  1191. </f:Cell>
  1192. <f:Cell id="text40" alias="文本40" styleID="2" left="13" right="14" top="3" bottom="3" type="constant">
  1193. <f:DesignedCell locked="false" />
  1194. <f:Data type="string">性别:</f:Data>
  1195. </f:Cell>
  1196. <f:Cell id="field5" alias="字段5" styleID="5" left="15" right="17" top="3" bottom="3" type="field">
  1197. <f:DesignedCell text="性别" locked="false" />
  1198. <f:Data type="string">gender</f:Data>
  1199. </f:Cell>
  1200. <f:Cell id="field1" alias="字段1" styleID="2" left="25" right="30" top="3" bottom="7" type="field">
  1201. <f:DesignedCell text="员工照片" locked="false" />
  1202. <f:Properties>
  1203. <f:Property name="contentType">image</f:Property>
  1204. <f:Property name="scale" />
  1205. </f:Properties>
  1206. <f:Data type="string">imagedata</f:Data>
  1207. </f:Cell>
  1208. <f:Cell id="text39" alias="文本39" styleID="5" left="1" right="4" top="4" bottom="4" type="constant">
  1209. <f:DesignedCell locked="false" />
  1210. <f:Data type="string">身份证号码:</f:Data>
  1211. </f:Cell>
  1212. <f:Cell id="field7" alias="字段7" styleID="5" left="5" right="13" top="4" bottom="4" type="field">
  1213. <f:DesignedCell text="身份证号码" locked="false" />
  1214. <f:Data type="string">idCardNO</f:Data>
  1215. </f:Cell>
  1216. <f:Cell id="text8" alias="文本8" styleID="2" left="1" right="3" top="5" bottom="5" type="constant">
  1217. <f:DesignedCell locked="false" />
  1218. <f:Data type="string">婚姻状况:</f:Data>
  1219. </f:Cell>
  1220. <f:Cell id="field22" alias="字段22" styleID="5" left="4" right="7" top="5" bottom="5" type="field">
  1221. <f:DesignedCell text="婚姻状况" locked="false" />
  1222. <f:Data type="string">wed</f:Data>
  1223. </f:Cell>
  1224. <f:Cell id="text49" alias="文本49" styleID="5" left="1" right="3" top="6" bottom="6" type="constant">
  1225. <f:DesignedCell locked="false" />
  1226. <f:Data type="string">政治面貌:</f:Data>
  1227. </f:Cell>
  1228. <f:Cell id="field28" alias="字段28" styleID="5" left="4" right="6" top="6" bottom="6" type="field">
  1229. <f:DesignedCell text="政治面貌" locked="false" />
  1230. <f:Data type="string">politicalFace</f:Data>
  1231. </f:Cell>
  1232. <f:Cell id="text48" alias="文本48" styleID="2" left="8" right="10" top="6" bottom="6" type="constant">
  1233. <f:DesignedCell locked="false" />
  1234. <f:Data type="string">最高学历:</f:Data>
  1235. </f:Cell>
  1236. <f:Cell id="field29" alias="字段29" styleID="5" left="11" right="14" top="6" bottom="6" type="field">
  1237. <f:DesignedCell text="最高学历" locked="false" />
  1238. <f:Data type="string">hightestDegree</f:Data>
  1239. </f:Cell>
  1240. <f:Cell id="text10" alias="文本10" styleID="5" left="1" right="3" top="7" bottom="7" type="constant">
  1241. <f:DesignedCell locked="false" />
  1242. <f:Data type="string">籍贯:</f:Data>
  1243. </f:Cell>
  1244. <f:Cell id="field31" alias="字段31" styleID="6" left="4" right="12" top="7" bottom="7" type="field">
  1245. <f:DesignedCell text="籍贯" locked="false" />
  1246. <f:Data type="string">provinceCityAddress</f:Data>
  1247. </f:Cell>
  1248. </f:Body>
  1249. </f:Table>
  1250. <f:Table id="table3" alias="tbl_学历0" left="[group1.left]" right="[group1.right]" top="[table1.bottom]" bottom="[table3.top]+147.0">
  1251. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="table1" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table3" bottomRelativeBorder="top" bottomRelativeOffset="147" locked="false" />
  1252. <f:Rows>
  1253. <f:Row />
  1254. <f:Row />
  1255. </f:Rows>
  1256. <f:Columns>
  1257. <f:Column />
  1258. <f:Column />
  1259. <f:Column />
  1260. <f:Column />
  1261. <f:Column />
  1262. <f:Column />
  1263. <f:Column />
  1264. <f:Column />
  1265. <f:Column />
  1266. <f:Column />
  1267. <f:Column />
  1268. <f:Column />
  1269. <f:Column />
  1270. <f:Column />
  1271. <f:Column />
  1272. <f:Column />
  1273. <f:Column />
  1274. <f:Column />
  1275. <f:Column />
  1276. <f:Column />
  1277. <f:Column />
  1278. <f:Column />
  1279. <f:Column />
  1280. <f:Column />
  1281. <f:Column />
  1282. <f:Column />
  1283. <f:Column />
  1284. <f:Column />
  1285. <f:Column />
  1286. <f:Column />
  1287. </f:Columns>
  1288. <f:Body>
  1289. <f:Cell id="text22" alias="文本22" styleID="7" left="1" right="30" top="1" bottom="1" type="constant">
  1290. <f:DesignedCell locked="false" />
  1291. <f:Data type="string">学历学位</f:Data>
  1292. </f:Cell>
  1293. <f:Cell id="text23" alias="文本23" styleID="8" left="1" right="3" top="2" bottom="2" type="constant">
  1294. <f:DesignedCell locked="false" />
  1295. <f:Data type="string">学历</f:Data>
  1296. </f:Cell>
  1297. <f:Cell id="text24" alias="文本24" styleID="8" left="4" right="6" top="2" bottom="2" type="constant">
  1298. <f:DesignedCell locked="false" />
  1299. <f:Data type="string">学位</f:Data>
  1300. </f:Cell>
  1301. <f:Cell id="text25" alias="文本25" styleID="8" left="7" right="11" top="2" bottom="2" type="constant">
  1302. <f:DesignedCell locked="false" />
  1303. <f:Data type="string">是否最高学历</f:Data>
  1304. </f:Cell>
  1305. <f:Cell id="text7" alias="文本7" styleID="9" left="12" right="16" top="2" bottom="2" type="constant">
  1306. <f:DesignedCell locked="false" />
  1307. <f:Data type="string">专业</f:Data>
  1308. </f:Cell>
  1309. <f:Cell id="text26" alias="文本26" styleID="8" left="17" right="23" top="2" bottom="2" type="constant">
  1310. <f:DesignedCell locked="false" />
  1311. <f:Data type="string">毕业学校</f:Data>
  1312. </f:Cell>
  1313. <f:Cell id="text27" alias="文本27" styleID="8" left="24" right="30" top="2" bottom="2" type="constant">
  1314. <f:DesignedCell locked="false" />
  1315. <f:Data type="string">毕业时间</f:Data>
  1316. </f:Cell>
  1317. </f:Body>
  1318. </f:Table>
  1319. <f:Area id="loop2" alias="cyl_学历" styleID="1" left="[group1.left]" right="[group1.right]" top="[table3.bottom]" nextAreaID="loop2">
  1320. <f:DesignedArea leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="table3" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="selfAdapt" bottomRelativeObjID="loop2" bottomRelativeBorder="top" bottomRelativeOffset="88" locked="false" />
  1321. <f:Table id="table2" alias="tbl_学历" left="[loop2.left]" right="[loop2.right]" top="[loop2.top]" bottom="[table2.top]+84.0" dataSourceID="ds_degree">
  1322. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="loop2" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="loop2" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop2" topRelativeBorder="top" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table2" bottomRelativeBorder="top" bottomRelativeOffset="84" locked="false" />
  1323. <f:Rows>
  1324. <f:Row />
  1325. </f:Rows>
  1326. <f:Columns>
  1327. <f:Column />
  1328. <f:Column />
  1329. <f:Column />
  1330. <f:Column />
  1331. <f:Column />
  1332. <f:Column />
  1333. <f:Column />
  1334. <f:Column />
  1335. <f:Column />
  1336. <f:Column />
  1337. <f:Column />
  1338. <f:Column />
  1339. <f:Column />
  1340. <f:Column />
  1341. <f:Column />
  1342. <f:Column />
  1343. <f:Column />
  1344. <f:Column />
  1345. <f:Column />
  1346. <f:Column />
  1347. <f:Column />
  1348. <f:Column />
  1349. <f:Column />
  1350. <f:Column />
  1351. <f:Column />
  1352. <f:Column />
  1353. <f:Column />
  1354. <f:Column />
  1355. <f:Column />
  1356. <f:Column />
  1357. </f:Columns>
  1358. <f:Body>
  1359. <f:Cell id="field11" alias="字段11" styleID="9" left="1" right="3" top="1" bottom="1" type="field">
  1360. <f:DesignedCell text="学历" locked="false" />
  1361. <f:Data type="string">diploma</f:Data>
  1362. </f:Cell>
  1363. <f:Cell id="field12" alias="字段12" styleID="9" left="4" right="6" top="1" bottom="1" type="field">
  1364. <f:DesignedCell text="学位" locked="false" />
  1365. <f:Data type="string">degree</f:Data>
  1366. </f:Cell>
  1367. <f:Cell id="field13" alias="字段13" styleID="9" left="7" right="11" top="1" bottom="1" type="field">
  1368. <f:DesignedCell text="是否最高学历" locked="false" />
  1369. <f:Data type="string">isHighest</f:Data>
  1370. </f:Cell>
  1371. <f:Cell id="field30" alias="字段30" styleID="9" left="12" right="16" top="1" bottom="1" type="field">
  1372. <f:DesignedCell text="所学专业" locked="false" />
  1373. <f:Data type="string">specialty</f:Data>
  1374. </f:Cell>
  1375. <f:Cell id="field14" alias="字段14" styleID="9" left="17" right="23" top="1" bottom="1" type="field">
  1376. <f:DesignedCell text="毕业学校" locked="false" />
  1377. <f:Data type="string">graduateSchool</f:Data>
  1378. </f:Cell>
  1379. <f:Cell id="field15" alias="字段15" styleID="9" left="24" right="30" top="1" bottom="1" type="field">
  1380. <f:DesignedCell text="毕业时间" locked="false" />
  1381. <f:Data type="string">graduateDate</f:Data>
  1382. </f:Cell>
  1383. </f:Body>
  1384. </f:Table>
  1385. </f:Area>
  1386. <f:Table id="table4" alias="tbl_合同0" left="[group1.left]" right="[group1.right]" top="[loop2.bottom]" bottom="[table4.top]+147.0">
  1387. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop2" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table4" bottomRelativeBorder="top" bottomRelativeOffset="147" locked="false" />
  1388. <f:Rows>
  1389. <f:Row />
  1390. <f:Row />
  1391. </f:Rows>
  1392. <f:Columns>
  1393. <f:Column />
  1394. <f:Column />
  1395. <f:Column />
  1396. <f:Column />
  1397. <f:Column />
  1398. <f:Column />
  1399. <f:Column />
  1400. <f:Column />
  1401. <f:Column />
  1402. <f:Column />
  1403. <f:Column />
  1404. <f:Column />
  1405. <f:Column />
  1406. <f:Column />
  1407. <f:Column />
  1408. <f:Column />
  1409. <f:Column />
  1410. <f:Column />
  1411. <f:Column />
  1412. <f:Column />
  1413. <f:Column />
  1414. <f:Column />
  1415. <f:Column />
  1416. <f:Column />
  1417. <f:Column />
  1418. <f:Column />
  1419. <f:Column />
  1420. <f:Column />
  1421. <f:Column />
  1422. <f:Column />
  1423. </f:Columns>
  1424. <f:Body>
  1425. <f:Cell id="text15" alias="文本15" styleID="7" left="1" right="30" top="1" bottom="1" type="constant">
  1426. <f:DesignedCell locked="false" />
  1427. <f:Data type="string">合同表</f:Data>
  1428. </f:Cell>
  1429. <f:Cell id="text16" alias="文本16" styleID="9" left="1" right="5" top="2" bottom="2" type="constant">
  1430. <f:DesignedCell locked="false" />
  1431. <f:Data type="string">合同类别</f:Data>
  1432. </f:Cell>
  1433. <f:Cell id="text17" alias="文本17" styleID="9" left="6" right="13" top="2" bottom="2" type="constant">
  1434. <f:DesignedCell locked="false" />
  1435. <f:Data type="string">合同模板</f:Data>
  1436. </f:Cell>
  1437. <f:Cell id="text18" alias="文本18" styleID="9" left="14" right="20" top="2" bottom="2" type="constant">
  1438. <f:DesignedCell locked="false" />
  1439. <f:Data type="string">合同编码</f:Data>
  1440. </f:Cell>
  1441. <f:Cell id="text19" alias="文本19" styleID="9" left="21" right="26" top="2" bottom="2" type="constant">
  1442. <f:DesignedCell locked="false" />
  1443. <f:Data type="string">签订日期</f:Data>
  1444. </f:Cell>
  1445. <f:Cell id="text12" alias="文本12" styleID="9" left="27" right="30" top="2" bottom="2" type="constant">
  1446. <f:DesignedCell locked="false" />
  1447. <f:Data type="string">服务期限</f:Data>
  1448. </f:Cell>
  1449. </f:Body>
  1450. </f:Table>
  1451. <f:Area id="loop3" alias="cyl_合同" styleID="1" left="[group1.left]" right="[group1.right]" top="[table4.bottom]" nextAreaID="loop3">
  1452. <f:DesignedArea leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="table4" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="selfAdapt" bottomRelativeObjID="loop3" bottomRelativeBorder="top" bottomRelativeOffset="78" locked="false" />
  1453. <f:Table id="table6" alias="tbl_合同" left="[loop3.left]" right="[loop3.right]" top="[loop3.top]" bottom="[table6.top]+78.0" dataSourceID="ds_contract">
  1454. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="loop3" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="loop3" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop3" topRelativeBorder="top" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table6" bottomRelativeBorder="top" bottomRelativeOffset="78" locked="false" />
  1455. <f:Rows>
  1456. <f:Row />
  1457. </f:Rows>
  1458. <f:Columns>
  1459. <f:Column />
  1460. <f:Column />
  1461. <f:Column />
  1462. <f:Column />
  1463. <f:Column />
  1464. <f:Column />
  1465. <f:Column />
  1466. <f:Column />
  1467. <f:Column />
  1468. <f:Column />
  1469. <f:Column />
  1470. <f:Column />
  1471. <f:Column />
  1472. <f:Column />
  1473. <f:Column />
  1474. <f:Column />
  1475. <f:Column />
  1476. <f:Column />
  1477. <f:Column />
  1478. <f:Column />
  1479. <f:Column />
  1480. <f:Column />
  1481. <f:Column />
  1482. <f:Column />
  1483. <f:Column />
  1484. <f:Column />
  1485. <f:Column />
  1486. <f:Column />
  1487. <f:Column />
  1488. <f:Column />
  1489. </f:Columns>
  1490. <f:Body>
  1491. <f:Cell id="field16" alias="字段16" styleID="9" left="1" right="5" top="1" bottom="1" type="field">
  1492. <f:DesignedCell text="合同类别" locked="false" />
  1493. <f:Data type="string">contractType.name</f:Data>
  1494. </f:Cell>
  1495. <f:Cell id="field17" alias="字段17" styleID="9" left="6" right="13" top="1" bottom="1" type="field">
  1496. <f:DesignedCell text="合同模板" locked="false" />
  1497. <f:Data type="string">contractTemplet.name</f:Data>
  1498. </f:Cell>
  1499. <f:Cell id="field18" alias="字段18" styleID="9" left="14" right="20" top="1" bottom="1" type="field">
  1500. <f:DesignedCell text="合同编码" locked="false" />
  1501. <f:Data type="string">contractNo</f:Data>
  1502. </f:Cell>
  1503. <f:Cell id="field19" alias="字段19" styleID="9" left="21" right="26" top="1" bottom="1" type="field">
  1504. <f:DesignedCell text="签订日期" locked="false" />
  1505. <f:Data type="string">recordDate</f:Data>
  1506. </f:Cell>
  1507. <f:Cell id="field21" alias="字段21" styleID="9" left="27" right="30" top="1" bottom="1" type="field">
  1508. <f:DesignedCell text="服务期限" locked="false" />
  1509. <f:Data type="string">contractServerLimit</f:Data>
  1510. </f:Cell>
  1511. </f:Body>
  1512. </f:Table>
  1513. </f:Area>
  1514. <f:Table id="table5" alias="tbl_语言0" left="[group1.left]" right="[group1.right]" top="[loop3.bottom]" bottom="[table5.top]+147.0">
  1515. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop3" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table5" bottomRelativeBorder="top" bottomRelativeOffset="147" locked="false" />
  1516. <f:Rows>
  1517. <f:Row />
  1518. <f:Row />
  1519. </f:Rows>
  1520. <f:Columns>
  1521. <f:Column />
  1522. <f:Column />
  1523. <f:Column />
  1524. <f:Column />
  1525. <f:Column />
  1526. <f:Column />
  1527. <f:Column />
  1528. <f:Column />
  1529. <f:Column />
  1530. <f:Column />
  1531. <f:Column />
  1532. <f:Column />
  1533. <f:Column />
  1534. <f:Column />
  1535. <f:Column />
  1536. <f:Column />
  1537. <f:Column />
  1538. <f:Column />
  1539. <f:Column />
  1540. <f:Column />
  1541. <f:Column />
  1542. <f:Column />
  1543. <f:Column />
  1544. <f:Column />
  1545. <f:Column />
  1546. <f:Column />
  1547. <f:Column />
  1548. <f:Column />
  1549. <f:Column />
  1550. <f:Column />
  1551. </f:Columns>
  1552. <f:Body>
  1553. <f:Cell id="text30" alias="文本30" styleID="7" left="1" right="30" top="1" bottom="1" type="constant">
  1554. <f:DesignedCell locked="false" />
  1555. <f:Data type="string">语言能力</f:Data>
  1556. </f:Cell>
  1557. <f:Cell id="text29" alias="文本29" styleID="8" left="1" right="11" top="2" bottom="2" type="constant">
  1558. <f:DesignedCell locked="false" />
  1559. <f:Data type="string">语言</f:Data>
  1560. </f:Cell>
  1561. <f:Cell id="text20" alias="文本20" styleID="8" left="12" right="30" top="2" bottom="2" type="constant">
  1562. <f:DesignedCell locked="false" />
  1563. <f:Data type="string">熟练程度</f:Data>
  1564. </f:Cell>
  1565. </f:Body>
  1566. </f:Table>
  1567. <f:Area id="loop4" alias="cyl_语言" styleID="1" left="[group1.left]" right="[group1.right]" top="[table5.bottom]" nextAreaID="loop4">
  1568. <f:DesignedArea leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="table5" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="selfAdapt" bottomRelativeObjID="loop4" bottomRelativeBorder="top" bottomRelativeOffset="78" locked="false" />
  1569. <f:Table id="table7" alias="tbl_语言" left="[loop4.left]" right="[loop4.right]" top="[loop4.top]" bottom="[table7.top]+78.0" dataSourceID="ds_language">
  1570. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="loop4" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="loop4" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop4" topRelativeBorder="top" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table7" bottomRelativeBorder="top" bottomRelativeOffset="78" locked="false" />
  1571. <f:Rows>
  1572. <f:Row />
  1573. </f:Rows>
  1574. <f:Columns>
  1575. <f:Column />
  1576. <f:Column />
  1577. <f:Column />
  1578. <f:Column />
  1579. <f:Column />
  1580. <f:Column />
  1581. <f:Column />
  1582. <f:Column />
  1583. <f:Column />
  1584. <f:Column />
  1585. <f:Column />
  1586. <f:Column />
  1587. <f:Column />
  1588. <f:Column />
  1589. <f:Column />
  1590. <f:Column />
  1591. <f:Column />
  1592. <f:Column />
  1593. <f:Column />
  1594. <f:Column />
  1595. <f:Column />
  1596. <f:Column />
  1597. <f:Column />
  1598. <f:Column />
  1599. <f:Column />
  1600. <f:Column />
  1601. <f:Column />
  1602. <f:Column />
  1603. <f:Column />
  1604. <f:Column />
  1605. </f:Columns>
  1606. <f:Body>
  1607. <f:Cell id="field23" alias="字段23" styleID="9" left="1" right="11" top="1" bottom="1" type="field">
  1608. <f:DesignedCell text="语言" locked="false" />
  1609. <f:Data type="string">language</f:Data>
  1610. </f:Cell>
  1611. <f:Cell id="field20" alias="字段20" styleID="9" left="12" right="30" top="1" bottom="1" type="field">
  1612. <f:DesignedCell text="熟练程度" locked="false" />
  1613. <f:Data type="string">grade</f:Data>
  1614. </f:Cell>
  1615. </f:Body>
  1616. </f:Table>
  1617. </f:Area>
  1618. <f:Area id="loop17" alias="cyl_任职" styleID="1" left="[group1.left]" right="[group1.right]" top="[loop4.bottom]" bottom="[loop17.top]+429.0" minLoopCount="1" maxLoopCount="1" nextAreaID="loop17">
  1619. <f:DesignedArea leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop4" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="loop17" bottomRelativeBorder="top" bottomRelativeOffset="429" locked="false" />
  1620. <f:Table id="table33" alias="tbl_任职" left="[loop17.left]" right="[loop17.right]" top="[loop17.top]" bottom="[table33.top]+429.0" dataSourceID="ds_primaryPosition">
  1621. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="loop17" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="loop17" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop17" topRelativeBorder="top" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table33" bottomRelativeBorder="top" bottomRelativeOffset="429" locked="false" />
  1622. <f:Rows>
  1623. <f:Row />
  1624. <f:Row />
  1625. <f:Row />
  1626. <f:Row />
  1627. <f:Row />
  1628. <f:Row />
  1629. <f:Row />
  1630. </f:Rows>
  1631. <f:Columns>
  1632. <f:Column />
  1633. <f:Column />
  1634. <f:Column />
  1635. <f:Column />
  1636. <f:Column />
  1637. <f:Column />
  1638. <f:Column />
  1639. <f:Column />
  1640. <f:Column />
  1641. <f:Column />
  1642. <f:Column />
  1643. <f:Column />
  1644. <f:Column />
  1645. <f:Column />
  1646. <f:Column />
  1647. <f:Column />
  1648. <f:Column />
  1649. <f:Column />
  1650. <f:Column />
  1651. <f:Column />
  1652. <f:Column />
  1653. <f:Column />
  1654. <f:Column />
  1655. <f:Column />
  1656. <f:Column />
  1657. <f:Column />
  1658. <f:Column />
  1659. <f:Column />
  1660. <f:Column />
  1661. <f:Column />
  1662. </f:Columns>
  1663. <f:Body>
  1664. <f:Cell id="text60" alias="文本60" styleID="7" left="1" right="30" top="1" bottom="2" type="constant">
  1665. <f:DesignedCell locked="false" />
  1666. <f:Data type="string">任职信息</f:Data>
  1667. </f:Cell>
  1668. <f:Cell id="text118" alias="文本118" styleID="8" left="1" right="3" top="3" bottom="3" type="constant">
  1669. <f:DesignedCell locked="false" />
  1670. <f:Data type="string">所属组织:</f:Data>
  1671. </f:Cell>
  1672. <f:Cell id="field113" alias="字段113" styleID="8" left="4" right="11" top="3" bottom="3" type="field">
  1673. <f:DesignedCell text="所属组织单元" locked="false" />
  1674. <f:Data type="string">adminOrgUnit</f:Data>
  1675. </f:Cell>
  1676. <f:Cell id="text119" alias="文本119" styleID="8" left="12" right="13" top="3" bottom="3" type="constant">
  1677. <f:DesignedCell locked="false" />
  1678. <f:Data type="string">职位:</f:Data>
  1679. </f:Cell>
  1680. <f:Cell id="field100" alias="字段100" styleID="8" left="14" right="20" top="3" bottom="3" type="field">
  1681. <f:DesignedCell text="职位" locked="false" />
  1682. <f:Data type="string">position</f:Data>
  1683. </f:Cell>
  1684. <f:Cell id="text120" alias="文本120" styleID="8" left="21" right="22" top="3" bottom="3" type="constant">
  1685. <f:DesignedCell locked="false" />
  1686. <f:Data type="string">职务:</f:Data>
  1687. </f:Cell>
  1688. <f:Cell id="field101" alias="字段101" styleID="8" left="23" right="30" top="3" bottom="3" type="field">
  1689. <f:DesignedCell text="职务" locked="false" />
  1690. <f:Data type="string">job</f:Data>
  1691. </f:Cell>
  1692. <f:Cell id="text121" alias="文本121" styleID="8" left="1" right="3" top="4" bottom="4" type="constant">
  1693. <f:DesignedCell locked="false" />
  1694. <f:Data type="string">职级:</f:Data>
  1695. </f:Cell>
  1696. <f:Cell id="field102" alias="字段102" styleID="8" left="4" right="11" top="4" bottom="4" type="field">
  1697. <f:DesignedCell text="职级" locked="false" />
  1698. <f:Data type="string">jobLevel</f:Data>
  1699. </f:Cell>
  1700. <f:Cell id="text122" alias="文本122" styleID="8" left="12" right="14" top="4" bottom="4" type="constant">
  1701. <f:DesignedCell locked="false" />
  1702. <f:Data type="string">入职日期:</f:Data>
  1703. </f:Cell>
  1704. <f:Cell id="field103" alias="字段103" styleID="8" left="15" right="20" top="4" bottom="4" type="field">
  1705. <f:DesignedCell text="入职日期" locked="false" />
  1706. <f:Data type="string">enterDate</f:Data>
  1707. </f:Cell>
  1708. <f:Cell id="text123" alias="文本123" styleID="8" left="21" right="25" top="4" bottom="4" type="constant">
  1709. <f:DesignedCell locked="false" />
  1710. <f:Data type="string">试用期(月):</f:Data>
  1711. </f:Cell>
  1712. <f:Cell id="field104" alias="字段104" styleID="8" left="26" right="30" top="4" bottom="4" type="field">
  1713. <f:DesignedCell text="试用期(月)" locked="false" />
  1714. <f:Data type="string">tryoutMonth</f:Data>
  1715. </f:Cell>
  1716. <f:Cell id="text124" alias="文本124" styleID="8" left="1" right="3" top="5" bottom="5" type="constant">
  1717. <f:DesignedCell locked="false" />
  1718. <f:Data type="string">转正日期:</f:Data>
  1719. </f:Cell>
  1720. <f:Cell id="field105" alias="字段105" styleID="8" left="4" right="11" top="5" bottom="5" type="field">
  1721. <f:DesignedCell text="转正日期" locked="false" />
  1722. <f:Data type="string">formalDate</f:Data>
  1723. </f:Cell>
  1724. <f:Cell id="text125" alias="文本125" styleID="8" left="12" right="15" top="5" bottom="5" type="constant">
  1725. <f:DesignedCell locked="false" />
  1726. <f:Data type="string">入集团日期:</f:Data>
  1727. </f:Cell>
  1728. <f:Cell id="field106" alias="字段106" styleID="8" left="16" right="20" top="5" bottom="5" type="field">
  1729. <f:DesignedCell text="入集团日期" locked="false" />
  1730. <f:Data type="string">joinGroupDate</f:Data>
  1731. </f:Cell>
  1732. <f:Cell id="text126" alias="文本126" styleID="8" left="21" right="25" top="5" bottom="5" type="constant">
  1733. <f:DesignedCell locked="false" />
  1734. <f:Data type="string">集团服务年限:</f:Data>
  1735. </f:Cell>
  1736. <f:Cell id="field107" alias="字段107" styleID="8" left="26" right="30" top="5" bottom="5" type="field">
  1737. <f:DesignedCell text="集团服务年限" locked="false" />
  1738. <f:Data type="string">joinGroupYears</f:Data>
  1739. </f:Cell>
  1740. <f:Cell id="text127" alias="文本127" styleID="8" left="1" right="4" top="6" bottom="6" type="constant">
  1741. <f:DesignedCell locked="false" />
  1742. <f:Data type="string">入公司日期:</f:Data>
  1743. </f:Cell>
  1744. <f:Cell id="field108" alias="字段108" styleID="8" left="5" right="11" top="6" bottom="6" type="field">
  1745. <f:DesignedCell text="入司日期" locked="false" />
  1746. <f:Data type="string">joinDate</f:Data>
  1747. </f:Cell>
  1748. <f:Cell id="text128" alias="文本128" styleID="8" left="12" right="16" top="6" bottom="6" type="constant">
  1749. <f:DesignedCell locked="false" />
  1750. <f:Data type="string">公司服务年限:</f:Data>
  1751. </f:Cell>
  1752. <f:Cell id="field109" alias="字段109" styleID="8" left="17" right="20" top="6" bottom="6" type="field">
  1753. <f:DesignedCell text="公司服务年限" locked="false" />
  1754. <f:Data type="string">joinCompanyYears</f:Data>
  1755. </f:Cell>
  1756. <f:Cell id="text3" alias="文本3" styleID="9" left="21" right="24" top="6" bottom="6" type="constant">
  1757. <f:DesignedCell locked="false" />
  1758. <f:Data type="string">员工类别:</f:Data>
  1759. </f:Cell>
  1760. <f:Cell id="field33" alias="字段33" styleID="8" left="25" right="30" top="6" bottom="6" type="field">
  1761. <f:DesignedCell text="员工类别" locked="false" />
  1762. <f:Data type="string">employeeType</f:Data>
  1763. </f:Cell>
  1764. <f:Cell id="text129" alias="文本129" styleID="8" left="1" right="5" top="7" bottom="7" type="constant">
  1765. <f:DesignedCell locked="false" />
  1766. <f:Data type="string">任职开始日期:</f:Data>
  1767. </f:Cell>
  1768. <f:Cell id="field110" alias="字段110" styleID="8" left="6" right="11" top="7" bottom="7" type="field">
  1769. <f:DesignedCell text="任职开始日期" locked="false" />
  1770. <f:Data type="string">baseDate</f:Data>
  1771. </f:Cell>
  1772. <f:Cell id="text130" alias="文本130" styleID="8" left="12" right="16" top="7" bottom="7" type="constant">
  1773. <f:DesignedCell locked="false" />
  1774. <f:Data type="string">任职结束日期:</f:Data>
  1775. </f:Cell>
  1776. <f:Cell id="field111" alias="字段111" styleID="8" left="17" right="21" top="7" bottom="7" type="field">
  1777. <f:DesignedCell text="任职结束日期" locked="false" />
  1778. <f:Data type="string">quitDate</f:Data>
  1779. </f:Cell>
  1780. <f:Cell id="text131" alias="文本131" styleID="8" left="22" right="26" top="7" bottom="7" type="constant">
  1781. <f:DesignedCell locked="false" />
  1782. <f:Data type="string">担任本职位时间:</f:Data>
  1783. </f:Cell>
  1784. <f:Cell id="field112" alias="字段112" styleID="8" left="27" right="30" top="7" bottom="7" type="field">
  1785. <f:DesignedCell text="担任本职位时间" locked="false" />
  1786. <f:Data type="string">joinBaseYears</f:Data>
  1787. </f:Cell>
  1788. </f:Body>
  1789. </f:Table>
  1790. </f:Area>
  1791. <f:Table id="table9" alias="tbl_党员0" left="[group1.left]" right="[group1.right]" top="[loop17.bottom]" bottom="[table9.top]+147.0">
  1792. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop17" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table9" bottomRelativeBorder="top" bottomRelativeOffset="147" locked="false" />
  1793. <f:Rows>
  1794. <f:Row />
  1795. <f:Row />
  1796. </f:Rows>
  1797. <f:Columns>
  1798. <f:Column />
  1799. <f:Column />
  1800. <f:Column />
  1801. <f:Column />
  1802. <f:Column />
  1803. <f:Column />
  1804. <f:Column />
  1805. <f:Column />
  1806. <f:Column />
  1807. <f:Column />
  1808. <f:Column />
  1809. <f:Column />
  1810. <f:Column />
  1811. <f:Column />
  1812. <f:Column />
  1813. <f:Column />
  1814. <f:Column />
  1815. <f:Column />
  1816. <f:Column />
  1817. <f:Column />
  1818. <f:Column />
  1819. <f:Column />
  1820. <f:Column />
  1821. <f:Column />
  1822. <f:Column />
  1823. <f:Column />
  1824. <f:Column />
  1825. <f:Column />
  1826. <f:Column />
  1827. <f:Column />
  1828. </f:Columns>
  1829. <f:Body>
  1830. <f:Cell id="text54" alias="文本54" styleID="7" left="1" right="30" top="1" bottom="1" type="constant">
  1831. <f:DesignedCell locked="false" />
  1832. <f:Data type="string">党员信息</f:Data>
  1833. </f:Cell>
  1834. <f:Cell id="text55" alias="文本55" styleID="8" left="1" right="7" top="2" bottom="2" type="constant">
  1835. <f:DesignedCell locked="false" />
  1836. <f:Data type="string">入党时间</f:Data>
  1837. </f:Cell>
  1838. <f:Cell id="text56" alias="文本56" styleID="8" left="8" right="16" top="2" bottom="2" type="constant">
  1839. <f:DesignedCell locked="false" />
  1840. <f:Data type="string">发展党员单位</f:Data>
  1841. </f:Cell>
  1842. <f:Cell id="text57" alias="文本57" styleID="8" left="17" right="23" top="2" bottom="2" type="constant">
  1843. <f:DesignedCell locked="false" />
  1844. <f:Data type="string">发展党员年份</f:Data>
  1845. </f:Cell>
  1846. <f:Cell id="text58" alias="文本58" styleID="8" left="24" right="30" top="2" bottom="2" type="constant">
  1847. <f:DesignedCell locked="false" />
  1848. <f:Data type="string">党内职务</f:Data>
  1849. </f:Cell>
  1850. </f:Body>
  1851. </f:Table>
  1852. <f:Area id="loop5" alias="cyl_党员" styleID="1" left="[group1.left]" right="[group1.right]" top="[table9.bottom]" nextAreaID="loop5">
  1853. <f:DesignedArea leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="table9" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="selfAdapt" bottomRelativeObjID="loop5" bottomRelativeBorder="top" bottomRelativeOffset="78" locked="false" />
  1854. <f:Table id="table10" alias="tbl_党员" left="[loop5.left]" right="[loop5.right]" top="[loop5.top]" bottom="[table10.top]+78.0" dataSourceID="ds_communist">
  1855. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="loop5" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="loop5" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop5" topRelativeBorder="top" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table10" bottomRelativeBorder="top" bottomRelativeOffset="78" locked="false" />
  1856. <f:Rows>
  1857. <f:Row />
  1858. </f:Rows>
  1859. <f:Columns>
  1860. <f:Column />
  1861. <f:Column />
  1862. <f:Column />
  1863. <f:Column />
  1864. <f:Column />
  1865. <f:Column />
  1866. <f:Column />
  1867. <f:Column />
  1868. <f:Column />
  1869. <f:Column />
  1870. <f:Column />
  1871. <f:Column />
  1872. <f:Column />
  1873. <f:Column />
  1874. <f:Column />
  1875. <f:Column />
  1876. <f:Column />
  1877. <f:Column />
  1878. <f:Column />
  1879. <f:Column />
  1880. <f:Column />
  1881. <f:Column />
  1882. <f:Column />
  1883. <f:Column />
  1884. <f:Column />
  1885. <f:Column />
  1886. <f:Column />
  1887. <f:Column />
  1888. <f:Column />
  1889. <f:Column />
  1890. </f:Columns>
  1891. <f:Body>
  1892. <f:Cell id="field4" alias="字段4" styleID="9" left="1" right="7" top="1" bottom="1" type="field" format="&quot;%l{yyyy-MM-dd}t&quot;">
  1893. <f:DesignedCell text="入党时间" locked="false" />
  1894. <f:Data type="string">joinDate</f:Data>
  1895. </f:Cell>
  1896. <f:Cell id="field9" alias="字段9" styleID="9" left="8" right="16" top="1" bottom="1" type="field">
  1897. <f:DesignedCell text="发展党员单位" locked="false" />
  1898. <f:Data type="string">depUnit</f:Data>
  1899. </f:Cell>
  1900. <f:Cell id="field47" alias="字段47" styleID="9" left="17" right="23" top="1" bottom="1" type="field">
  1901. <f:DesignedCell text="发展党员年份" locked="false" />
  1902. <f:Data type="string">depYear</f:Data>
  1903. </f:Cell>
  1904. <f:Cell id="field48" alias="字段48" styleID="9" left="24" right="30" top="1" bottom="1" type="field">
  1905. <f:DesignedCell text="党内职务" locked="false" />
  1906. <f:Data type="string">communistDuty</f:Data>
  1907. </f:Cell>
  1908. </f:Body>
  1909. </f:Table>
  1910. </f:Area>
  1911. <f:Table id="table11" alias="tbl_资源0" left="[group1.left]" right="[group1.right]" top="[loop5.bottom]" bottom="[table11.top]+147.0">
  1912. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop5" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table11" bottomRelativeBorder="top" bottomRelativeOffset="147" locked="false" />
  1913. <f:Rows>
  1914. <f:Row />
  1915. <f:Row />
  1916. </f:Rows>
  1917. <f:Columns>
  1918. <f:Column />
  1919. <f:Column />
  1920. <f:Column />
  1921. <f:Column />
  1922. <f:Column />
  1923. <f:Column />
  1924. <f:Column />
  1925. <f:Column />
  1926. <f:Column />
  1927. <f:Column />
  1928. <f:Column />
  1929. <f:Column />
  1930. <f:Column />
  1931. <f:Column />
  1932. <f:Column />
  1933. <f:Column />
  1934. <f:Column />
  1935. <f:Column />
  1936. <f:Column />
  1937. <f:Column />
  1938. <f:Column />
  1939. <f:Column />
  1940. <f:Column />
  1941. <f:Column />
  1942. <f:Column />
  1943. <f:Column />
  1944. <f:Column />
  1945. <f:Column />
  1946. <f:Column />
  1947. <f:Column />
  1948. </f:Columns>
  1949. <f:Body>
  1950. <f:Cell id="text4" alias="文本4" styleID="7" left="1" right="30" top="1" bottom="1" type="constant">
  1951. <f:DesignedCell locked="false" />
  1952. <f:Data type="string">资源占用情况</f:Data>
  1953. </f:Cell>
  1954. <f:Cell id="text5" alias="文本5" styleID="8" left="1" right="7" top="2" bottom="2" type="constant">
  1955. <f:DesignedCell locked="false" />
  1956. <f:Data type="string">编码</f:Data>
  1957. </f:Cell>
  1958. <f:Cell id="text6" alias="文本6" styleID="8" left="8" right="16" top="2" bottom="2" type="constant">
  1959. <f:DesignedCell locked="false" />
  1960. <f:Data type="string">名称</f:Data>
  1961. </f:Cell>
  1962. <f:Cell id="text59" alias="文本59" styleID="8" left="17" right="30" top="2" bottom="2" type="constant">
  1963. <f:DesignedCell locked="false" />
  1964. <f:Data type="string">描述</f:Data>
  1965. </f:Cell>
  1966. </f:Body>
  1967. </f:Table>
  1968. <f:Area id="loop6" alias="cyl_资源" styleID="1" left="[group1.left]" right="[group1.right]" top="[table11.bottom]" nextAreaID="loop6">
  1969. <f:DesignedArea leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="table11" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="selfAdapt" bottomRelativeObjID="loop6" bottomRelativeBorder="top" bottomRelativeOffset="78" locked="false" />
  1970. <f:Table id="table12" alias="tbl_资源" left="[loop6.left]" right="[loop6.right]" top="[loop6.top]" bottom="[table12.top]+78.0" dataSourceID="ds_resource">
  1971. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="loop6" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="loop6" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop6" topRelativeBorder="top" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table12" bottomRelativeBorder="top" bottomRelativeOffset="78" locked="false" />
  1972. <f:Rows>
  1973. <f:Row />
  1974. </f:Rows>
  1975. <f:Columns>
  1976. <f:Column />
  1977. <f:Column />
  1978. <f:Column />
  1979. <f:Column />
  1980. <f:Column />
  1981. <f:Column />
  1982. <f:Column />
  1983. <f:Column />
  1984. <f:Column />
  1985. <f:Column />
  1986. <f:Column />
  1987. <f:Column />
  1988. <f:Column />
  1989. <f:Column />
  1990. <f:Column />
  1991. <f:Column />
  1992. <f:Column />
  1993. <f:Column />
  1994. <f:Column />
  1995. <f:Column />
  1996. <f:Column />
  1997. <f:Column />
  1998. <f:Column />
  1999. <f:Column />
  2000. <f:Column />
  2001. <f:Column />
  2002. <f:Column />
  2003. <f:Column />
  2004. <f:Column />
  2005. <f:Column />
  2006. </f:Columns>
  2007. <f:Body>
  2008. <f:Cell id="field49" alias="字段49" styleID="9" left="1" right="7" top="1" bottom="1" type="field">
  2009. <f:DesignedCell text="编码" locked="false" />
  2010. <f:Data type="string">resourceNumber</f:Data>
  2011. </f:Cell>
  2012. <f:Cell id="field50" alias="字段50" styleID="9" left="8" right="16" top="1" bottom="1" type="field">
  2013. <f:DesignedCell text="名称" locked="false" />
  2014. <f:Data type="string">resourceName</f:Data>
  2015. </f:Cell>
  2016. <f:Cell id="field51" alias="字段51" styleID="10" left="17" right="30" top="1" bottom="1" type="field">
  2017. <f:DesignedCell text="描述" locked="false" />
  2018. <f:Data type="string">remark</f:Data>
  2019. </f:Cell>
  2020. </f:Body>
  2021. </f:Table>
  2022. </f:Area>
  2023. <f:Table id="table13" alias="tbl_经历0" left="[group1.left]" right="[group1.right]" top="[loop6.bottom]" bottom="[table13.top]+147.0">
  2024. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop6" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table13" bottomRelativeBorder="top" bottomRelativeOffset="147" locked="false" />
  2025. <f:Rows>
  2026. <f:Row />
  2027. <f:Row />
  2028. </f:Rows>
  2029. <f:Columns>
  2030. <f:Column />
  2031. <f:Column />
  2032. <f:Column />
  2033. <f:Column />
  2034. <f:Column />
  2035. <f:Column />
  2036. <f:Column />
  2037. <f:Column />
  2038. <f:Column />
  2039. <f:Column />
  2040. <f:Column />
  2041. <f:Column />
  2042. <f:Column />
  2043. <f:Column />
  2044. <f:Column />
  2045. <f:Column />
  2046. <f:Column />
  2047. <f:Column />
  2048. <f:Column />
  2049. <f:Column />
  2050. <f:Column />
  2051. <f:Column />
  2052. <f:Column />
  2053. <f:Column />
  2054. <f:Column />
  2055. <f:Column />
  2056. <f:Column />
  2057. <f:Column />
  2058. <f:Column />
  2059. <f:Column />
  2060. </f:Columns>
  2061. <f:Body>
  2062. <f:Cell id="text61" alias="文本61" styleID="7" left="1" right="30" top="1" bottom="1" type="constant">
  2063. <f:DesignedCell locked="false" />
  2064. <f:Data type="string">工作经历</f:Data>
  2065. </f:Cell>
  2066. <f:Cell id="text62" alias="文本62" styleID="9" left="1" right="5" top="2" bottom="2" type="constant">
  2067. <f:DesignedCell locked="false" />
  2068. <f:Data type="string">开始日期</f:Data>
  2069. </f:Cell>
  2070. <f:Cell id="text63" alias="文本63" styleID="9" left="6" right="13" top="2" bottom="2" type="constant">
  2071. <f:DesignedCell locked="false" />
  2072. <f:Data type="string">单位名称</f:Data>
  2073. </f:Cell>
  2074. <f:Cell id="text64" alias="文本64" styleID="9" left="14" right="19" top="2" bottom="2" type="constant">
  2075. <f:DesignedCell locked="false" />
  2076. <f:Data type="string">单位性质</f:Data>
  2077. </f:Cell>
  2078. <f:Cell id="text65" alias="文本65" styleID="9" left="20" right="25" top="2" bottom="2" type="constant">
  2079. <f:DesignedCell locked="false" />
  2080. <f:Data type="string">专业类型</f:Data>
  2081. </f:Cell>
  2082. <f:Cell id="text66" alias="文本66" styleID="9" left="26" right="30" top="2" bottom="2" type="constant">
  2083. <f:DesignedCell locked="false" />
  2084. <f:Data type="string">离职原因</f:Data>
  2085. </f:Cell>
  2086. </f:Body>
  2087. </f:Table>
  2088. <f:Area id="loop7" alias="cyl_经历" styleID="1" left="[group1.left]" right="[group1.right]" top="[table13.bottom]" nextAreaID="loop7">
  2089. <f:DesignedArea leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="table13" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="selfAdapt" bottomRelativeObjID="loop7" bottomRelativeBorder="top" bottomRelativeOffset="78" locked="false" />
  2090. <f:Table id="table14" alias="tbl_经历" left="[loop7.left]" right="[loop7.right]" top="[loop7.top]" bottom="[table14.top]+78.0" dataSourceID="ds_workExp">
  2091. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="loop7" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="loop7" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop7" topRelativeBorder="top" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table14" bottomRelativeBorder="top" bottomRelativeOffset="78" locked="false" />
  2092. <f:Rows>
  2093. <f:Row />
  2094. </f:Rows>
  2095. <f:Columns>
  2096. <f:Column />
  2097. <f:Column />
  2098. <f:Column />
  2099. <f:Column />
  2100. <f:Column />
  2101. <f:Column />
  2102. <f:Column />
  2103. <f:Column />
  2104. <f:Column />
  2105. <f:Column />
  2106. <f:Column />
  2107. <f:Column />
  2108. <f:Column />
  2109. <f:Column />
  2110. <f:Column />
  2111. <f:Column />
  2112. <f:Column />
  2113. <f:Column />
  2114. <f:Column />
  2115. <f:Column />
  2116. <f:Column />
  2117. <f:Column />
  2118. <f:Column />
  2119. <f:Column />
  2120. <f:Column />
  2121. <f:Column />
  2122. <f:Column />
  2123. <f:Column />
  2124. <f:Column />
  2125. <f:Column />
  2126. </f:Columns>
  2127. <f:Body>
  2128. <f:Cell id="field53" alias="字段53" styleID="9" left="1" right="5" top="1" bottom="1" type="field" format="&quot;%l{yyyy-MM-dd}t&quot;">
  2129. <f:DesignedCell text="开始日期" locked="false" />
  2130. <f:Data type="string">beginDate</f:Data>
  2131. </f:Cell>
  2132. <f:Cell id="field54" alias="字段54" styleID="9" left="6" right="13" top="1" bottom="1" type="field">
  2133. <f:DesignedCell text="单位名称" locked="false" />
  2134. <f:Data type="string">unitName</f:Data>
  2135. </f:Cell>
  2136. <f:Cell id="field55" alias="字段55" styleID="9" left="14" right="19" top="1" bottom="1" type="field">
  2137. <f:DesignedCell text="单位性质" locked="false" />
  2138. <f:Data type="string">unitType.name</f:Data>
  2139. </f:Cell>
  2140. <f:Cell id="field56" alias="字段56" styleID="9" left="20" right="25" top="1" bottom="1" type="field">
  2141. <f:DesignedCell text="专业类型" locked="false" />
  2142. <f:Data type="string">specialtyType.name</f:Data>
  2143. </f:Cell>
  2144. <f:Cell id="field57" alias="字段57" styleID="9" left="26" right="30" top="1" bottom="1" type="field">
  2145. <f:DesignedCell text="离职原因" locked="false" />
  2146. <f:Data type="string">dimission</f:Data>
  2147. </f:Cell>
  2148. </f:Body>
  2149. </f:Table>
  2150. </f:Area>
  2151. <f:Table id="table15" alias="tbl_紧急0" left="[group1.left]" right="[group1.right]" top="[loop7.bottom]" bottom="[table15.top]+147.0">
  2152. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop7" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table15" bottomRelativeBorder="top" bottomRelativeOffset="147" locked="false" />
  2153. <f:Rows>
  2154. <f:Row />
  2155. <f:Row />
  2156. </f:Rows>
  2157. <f:Columns>
  2158. <f:Column />
  2159. <f:Column />
  2160. <f:Column />
  2161. <f:Column />
  2162. <f:Column />
  2163. <f:Column />
  2164. <f:Column />
  2165. <f:Column />
  2166. <f:Column />
  2167. <f:Column />
  2168. <f:Column />
  2169. <f:Column />
  2170. <f:Column />
  2171. <f:Column />
  2172. <f:Column />
  2173. <f:Column />
  2174. <f:Column />
  2175. <f:Column />
  2176. <f:Column />
  2177. <f:Column />
  2178. <f:Column />
  2179. <f:Column />
  2180. <f:Column />
  2181. <f:Column />
  2182. <f:Column />
  2183. <f:Column />
  2184. <f:Column />
  2185. <f:Column />
  2186. <f:Column />
  2187. <f:Column />
  2188. </f:Columns>
  2189. <f:Body>
  2190. <f:Cell id="text67" alias="文本67" styleID="7" left="1" right="30" top="1" bottom="1" type="constant">
  2191. <f:DesignedCell locked="false" />
  2192. <f:Data type="string">紧急联系人</f:Data>
  2193. </f:Cell>
  2194. <f:Cell id="text68" alias="文本68" styleID="8" left="1" right="7" top="2" bottom="2" type="constant">
  2195. <f:DesignedCell locked="false" />
  2196. <f:Data type="string">紧急联系人姓名</f:Data>
  2197. </f:Cell>
  2198. <f:Cell id="text69" alias="文本69" styleID="8" left="8" right="16" top="2" bottom="2" type="constant">
  2199. <f:DesignedCell locked="false" />
  2200. <f:Data type="string">电话</f:Data>
  2201. </f:Cell>
  2202. <f:Cell id="text70" alias="文本70" styleID="8" left="17" right="19" top="2" bottom="2" type="constant">
  2203. <f:DesignedCell locked="false" />
  2204. <f:Data type="string">血型</f:Data>
  2205. </f:Cell>
  2206. <f:Cell id="text71" alias="文本71" styleID="9" left="20" right="30" top="2" bottom="2" type="constant">
  2207. <f:DesignedCell locked="false" />
  2208. <f:Data type="string">备注</f:Data>
  2209. </f:Cell>
  2210. </f:Body>
  2211. </f:Table>
  2212. <f:Area id="loop8" alias="cyl_紧急" styleID="1" left="[group1.left]" right="[group1.right]" top="[table15.bottom]" nextAreaID="loop8">
  2213. <f:DesignedArea leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="table15" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="selfAdapt" bottomRelativeObjID="loop8" bottomRelativeBorder="top" bottomRelativeOffset="78" locked="false" />
  2214. <f:Table id="table16" alias="tbl_紧急" left="[loop8.left]" right="[loop8.right]" top="[loop8.top]" bottom="[table16.top]+78.0" dataSourceID="ds_linkMen">
  2215. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="loop8" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="loop8" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop8" topRelativeBorder="top" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table16" bottomRelativeBorder="top" bottomRelativeOffset="78" locked="false" />
  2216. <f:Rows>
  2217. <f:Row />
  2218. </f:Rows>
  2219. <f:Columns>
  2220. <f:Column />
  2221. <f:Column />
  2222. <f:Column />
  2223. <f:Column />
  2224. <f:Column />
  2225. <f:Column />
  2226. <f:Column />
  2227. <f:Column />
  2228. <f:Column />
  2229. <f:Column />
  2230. <f:Column />
  2231. <f:Column />
  2232. <f:Column />
  2233. <f:Column />
  2234. <f:Column />
  2235. <f:Column />
  2236. <f:Column />
  2237. <f:Column />
  2238. <f:Column />
  2239. <f:Column />
  2240. <f:Column />
  2241. <f:Column />
  2242. <f:Column />
  2243. <f:Column />
  2244. <f:Column />
  2245. <f:Column />
  2246. <f:Column />
  2247. <f:Column />
  2248. <f:Column />
  2249. <f:Column />
  2250. </f:Columns>
  2251. <f:Body>
  2252. <f:Cell id="field58" alias="字段58" styleID="9" left="1" right="7" top="1" bottom="1" type="field">
  2253. <f:DesignedCell text="紧急联系人姓名" locked="false" />
  2254. <f:Data type="string">linkManName</f:Data>
  2255. </f:Cell>
  2256. <f:Cell id="field59" alias="字段59" styleID="9" left="8" right="16" top="1" bottom="1" type="field">
  2257. <f:DesignedCell text="电话" locked="false" />
  2258. <f:Data type="string">phoneNumber</f:Data>
  2259. </f:Cell>
  2260. <f:Cell id="field60" alias="字段60" styleID="9" left="17" right="19" top="1" bottom="1" type="field">
  2261. <f:DesignedCell text="血型" locked="false" />
  2262. <f:Data type="string">bloodType</f:Data>
  2263. </f:Cell>
  2264. <f:Cell id="field61" alias="字段61" styleID="10" left="20" right="30" top="1" bottom="1" type="field">
  2265. <f:DesignedCell text="备注" locked="false" />
  2266. <f:Data type="string">remark</f:Data>
  2267. </f:Cell>
  2268. </f:Body>
  2269. </f:Table>
  2270. </f:Area>
  2271. <f:Table id="table17" alias="tbl_社会0" left="[group1.left]" right="[group1.right]" top="[loop8.bottom]" bottom="[table17.top]+147.0">
  2272. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop8" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table17" bottomRelativeBorder="top" bottomRelativeOffset="147" locked="false" />
  2273. <f:Rows>
  2274. <f:Row />
  2275. <f:Row />
  2276. </f:Rows>
  2277. <f:Columns>
  2278. <f:Column />
  2279. <f:Column />
  2280. <f:Column />
  2281. <f:Column />
  2282. <f:Column />
  2283. <f:Column />
  2284. <f:Column />
  2285. <f:Column />
  2286. <f:Column />
  2287. <f:Column />
  2288. <f:Column />
  2289. <f:Column />
  2290. <f:Column />
  2291. <f:Column />
  2292. <f:Column />
  2293. <f:Column />
  2294. <f:Column />
  2295. <f:Column />
  2296. <f:Column />
  2297. <f:Column />
  2298. <f:Column />
  2299. <f:Column />
  2300. <f:Column />
  2301. <f:Column />
  2302. <f:Column />
  2303. <f:Column />
  2304. <f:Column />
  2305. <f:Column />
  2306. <f:Column />
  2307. <f:Column />
  2308. </f:Columns>
  2309. <f:Body>
  2310. <f:Cell id="text72" alias="文本72" styleID="7" left="1" right="30" top="1" bottom="1" type="constant">
  2311. <f:DesignedCell locked="false" />
  2312. <f:Data type="string">社会关系</f:Data>
  2313. </f:Cell>
  2314. <f:Cell id="text73" alias="文本73" styleID="8" left="1" right="4" top="2" bottom="2" type="constant">
  2315. <f:DesignedCell locked="false" />
  2316. <f:Data type="string">姓名</f:Data>
  2317. </f:Cell>
  2318. <f:Cell id="text74" alias="文本74" styleID="8" left="5" right="8" top="2" bottom="2" type="constant">
  2319. <f:DesignedCell locked="false" />
  2320. <f:Data type="string">与本人关系</f:Data>
  2321. </f:Cell>
  2322. <f:Cell id="text77" alias="文本77" styleID="9" left="9" right="16" top="2" bottom="2" type="constant">
  2323. <f:DesignedCell locked="false" />
  2324. <f:Data type="string">工作单位及职位</f:Data>
  2325. </f:Cell>
  2326. <f:Cell id="text75" alias="文本75" styleID="8" left="17" right="20" top="2" bottom="2" type="constant">
  2327. <f:DesignedCell locked="false" />
  2328. <f:Data type="string">学历</f:Data>
  2329. </f:Cell>
  2330. <f:Cell id="text76" alias="文本76" styleID="9" left="21" right="25" top="2" bottom="2" type="constant">
  2331. <f:DesignedCell locked="false" />
  2332. <f:Data type="string">政治面貌</f:Data>
  2333. </f:Cell>
  2334. <f:Cell id="text13" alias="文本13" styleID="9" left="26" right="30" top="2" bottom="2" type="constant">
  2335. <f:DesignedCell locked="false" />
  2336. <f:Data type="string">专业技术职务</f:Data>
  2337. </f:Cell>
  2338. </f:Body>
  2339. </f:Table>
  2340. <f:Area id="loop9" alias="cyl_社会" styleID="1" left="[group1.left]" right="[group1.right]" top="[table17.bottom]" nextAreaID="loop9">
  2341. <f:DesignedArea leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="table17" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="selfAdapt" bottomRelativeObjID="loop9" bottomRelativeBorder="top" bottomRelativeOffset="78" locked="false" />
  2342. <f:Table id="table18" alias="tbl_社会" left="[loop9.left]" right="[loop9.right]" top="[loop9.top]" bottom="[table18.top]+78.0" dataSourceID="ds_family">
  2343. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="loop9" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="loop9" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop9" topRelativeBorder="top" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table18" bottomRelativeBorder="top" bottomRelativeOffset="78" locked="false" />
  2344. <f:Rows>
  2345. <f:Row />
  2346. </f:Rows>
  2347. <f:Columns>
  2348. <f:Column />
  2349. <f:Column />
  2350. <f:Column />
  2351. <f:Column />
  2352. <f:Column />
  2353. <f:Column />
  2354. <f:Column />
  2355. <f:Column />
  2356. <f:Column />
  2357. <f:Column />
  2358. <f:Column />
  2359. <f:Column />
  2360. <f:Column />
  2361. <f:Column />
  2362. <f:Column />
  2363. <f:Column />
  2364. <f:Column />
  2365. <f:Column />
  2366. <f:Column />
  2367. <f:Column />
  2368. <f:Column />
  2369. <f:Column />
  2370. <f:Column />
  2371. <f:Column />
  2372. <f:Column />
  2373. <f:Column />
  2374. <f:Column />
  2375. <f:Column />
  2376. <f:Column />
  2377. <f:Column />
  2378. </f:Columns>
  2379. <f:Body>
  2380. <f:Cell id="field62" alias="字段62" styleID="9" left="1" right="4" top="1" bottom="1" type="field">
  2381. <f:DesignedCell text="姓名" locked="false" />
  2382. <f:Data type="string">name</f:Data>
  2383. </f:Cell>
  2384. <f:Cell id="field63" alias="字段63" styleID="9" left="5" right="8" top="1" bottom="1" type="field">
  2385. <f:DesignedCell text="与本人关系" locked="false" />
  2386. <f:Data type="string">relation</f:Data>
  2387. </f:Cell>
  2388. <f:Cell id="field66" alias="字段66" styleID="9" left="9" right="16" top="1" bottom="1" type="field">
  2389. <f:DesignedCell text="工作单位及职位" locked="false" />
  2390. <f:Data type="string">workUnit</f:Data>
  2391. </f:Cell>
  2392. <f:Cell id="field64" alias="字段64" styleID="9" left="17" right="20" top="1" bottom="1" type="field">
  2393. <f:DesignedCell text="学历" locked="false" />
  2394. <f:Data type="string">diploma</f:Data>
  2395. </f:Cell>
  2396. <f:Cell id="field65" alias="字段65" styleID="9" left="21" right="25" top="1" bottom="1" type="field">
  2397. <f:DesignedCell text="政治面貌" locked="false" />
  2398. <f:Data type="string">politicalFace</f:Data>
  2399. </f:Cell>
  2400. <f:Cell id="field24" alias="字段24" styleID="9" left="26" right="30" top="1" bottom="1" type="field">
  2401. <f:DesignedCell text="专业技术职务" locked="false" />
  2402. <f:Data type="string">specDuty</f:Data>
  2403. </f:Cell>
  2404. </f:Body>
  2405. </f:Table>
  2406. </f:Area>
  2407. <f:Table id="table19" alias="tbl_素质0" left="[group1.left]" right="[group1.right]" top="[loop9.bottom]" bottom="[table19.top]+147.0">
  2408. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop9" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table19" bottomRelativeBorder="top" bottomRelativeOffset="147" locked="false" />
  2409. <f:Rows>
  2410. <f:Row />
  2411. <f:Row />
  2412. </f:Rows>
  2413. <f:Columns>
  2414. <f:Column />
  2415. <f:Column />
  2416. <f:Column />
  2417. <f:Column />
  2418. <f:Column />
  2419. <f:Column />
  2420. <f:Column />
  2421. <f:Column />
  2422. <f:Column />
  2423. <f:Column />
  2424. <f:Column />
  2425. <f:Column />
  2426. <f:Column />
  2427. <f:Column />
  2428. <f:Column />
  2429. <f:Column />
  2430. <f:Column />
  2431. <f:Column />
  2432. <f:Column />
  2433. <f:Column />
  2434. <f:Column />
  2435. <f:Column />
  2436. <f:Column />
  2437. <f:Column />
  2438. <f:Column />
  2439. <f:Column />
  2440. <f:Column />
  2441. <f:Column />
  2442. <f:Column />
  2443. <f:Column />
  2444. </f:Columns>
  2445. <f:Body>
  2446. <f:Cell id="text78" alias="文本78" styleID="7" left="1" right="30" top="1" bottom="1" type="constant">
  2447. <f:DesignedCell locked="false" />
  2448. <f:Data type="string">素质信息</f:Data>
  2449. </f:Cell>
  2450. <f:Cell id="text79" alias="文本79" styleID="8" left="1" right="7" top="2" bottom="2" type="constant">
  2451. <f:DesignedCell locked="false" />
  2452. <f:Data type="string">素质指标</f:Data>
  2453. </f:Cell>
  2454. <f:Cell id="text80" alias="文本80" styleID="8" left="8" right="13" top="2" bottom="2" type="constant">
  2455. <f:DesignedCell locked="false" />
  2456. <f:Data type="string">素质类型</f:Data>
  2457. </f:Cell>
  2458. <f:Cell id="text81" alias="文本81" styleID="9" left="14" right="16" top="2" bottom="2" type="constant">
  2459. <f:DesignedCell locked="false" />
  2460. <f:Data type="string">素质级别</f:Data>
  2461. </f:Cell>
  2462. <f:Cell id="text82" alias="文本82" styleID="8" left="17" right="22" top="2" bottom="2" type="constant">
  2463. <f:DesignedCell locked="false" />
  2464. <f:Data type="string">描述</f:Data>
  2465. </f:Cell>
  2466. <f:Cell id="text11" alias="文本11" styleID="9" left="23" right="30" top="2" bottom="2" type="constant">
  2467. <f:DesignedCell locked="false" />
  2468. <f:Data type="string">行为描述</f:Data>
  2469. </f:Cell>
  2470. </f:Body>
  2471. </f:Table>
  2472. <f:Area id="loop10" alias="cyl_素质" styleID="1" left="[group1.left]" right="[group1.right]" top="[table19.bottom]" nextAreaID="loop10">
  2473. <f:DesignedArea leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="table19" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="selfAdapt" bottomRelativeObjID="loop10" bottomRelativeBorder="top" bottomRelativeOffset="78" locked="false" />
  2474. <f:Table id="table20" alias="tbl_素质" left="[loop10.left]" right="[loop10.right]" top="[loop10.top]" bottom="[table20.top]+78.0" dataSourceID="ds_compet">
  2475. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="loop10" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="loop10" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop10" topRelativeBorder="top" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table20" bottomRelativeBorder="top" bottomRelativeOffset="78" locked="false" />
  2476. <f:Rows>
  2477. <f:Row />
  2478. </f:Rows>
  2479. <f:Columns>
  2480. <f:Column />
  2481. <f:Column />
  2482. <f:Column />
  2483. <f:Column />
  2484. <f:Column />
  2485. <f:Column />
  2486. <f:Column />
  2487. <f:Column />
  2488. <f:Column />
  2489. <f:Column />
  2490. <f:Column />
  2491. <f:Column />
  2492. <f:Column />
  2493. <f:Column />
  2494. <f:Column />
  2495. <f:Column />
  2496. <f:Column />
  2497. <f:Column />
  2498. <f:Column />
  2499. <f:Column />
  2500. <f:Column />
  2501. <f:Column />
  2502. <f:Column />
  2503. <f:Column />
  2504. <f:Column />
  2505. <f:Column />
  2506. <f:Column />
  2507. <f:Column />
  2508. <f:Column />
  2509. <f:Column />
  2510. </f:Columns>
  2511. <f:Body>
  2512. <f:Cell id="field67" alias="字段67" styleID="9" left="1" right="7" top="1" bottom="1" type="field">
  2513. <f:DesignedCell text="素质指标" locked="false" />
  2514. <f:Data type="string">empCompetIndex</f:Data>
  2515. </f:Cell>
  2516. <f:Cell id="field68" alias="字段68" styleID="9" left="8" right="13" top="1" bottom="1" type="field">
  2517. <f:DesignedCell text="能力素质类型" locked="false" />
  2518. <f:Data type="string">competIndexType</f:Data>
  2519. </f:Cell>
  2520. <f:Cell id="field69" alias="字段69" styleID="9" left="14" right="16" top="1" bottom="1" type="field">
  2521. <f:DesignedCell text="个人素质级别" locked="false" />
  2522. <f:Data type="string">indexGrade</f:Data>
  2523. </f:Cell>
  2524. <f:Cell id="field70" alias="字段70" styleID="10" left="17" right="22" top="1" bottom="1" type="field">
  2525. <f:DesignedCell text="描述" locked="false" />
  2526. <f:Data type="string">description</f:Data>
  2527. </f:Cell>
  2528. <f:Cell id="field10" alias="字段10" styleID="11" left="23" right="30" top="1" bottom="1" type="field">
  2529. <f:DesignedCell text="行为描述" locked="false" />
  2530. <f:Data type="string">CompetIndexGrade.description</f:Data>
  2531. </f:Cell>
  2532. </f:Body>
  2533. </f:Table>
  2534. </f:Area>
  2535. <f:Table id="table21" alias="tbl_档案0" left="[group1.left]" right="[group1.right]" top="[loop10.bottom]" bottom="[table21.top]+147.0">
  2536. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop10" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table21" bottomRelativeBorder="top" bottomRelativeOffset="147" locked="false" />
  2537. <f:Rows>
  2538. <f:Row />
  2539. <f:Row />
  2540. </f:Rows>
  2541. <f:Columns>
  2542. <f:Column />
  2543. <f:Column />
  2544. <f:Column />
  2545. <f:Column />
  2546. <f:Column />
  2547. <f:Column />
  2548. <f:Column />
  2549. <f:Column />
  2550. <f:Column />
  2551. <f:Column />
  2552. <f:Column />
  2553. <f:Column />
  2554. <f:Column />
  2555. <f:Column />
  2556. <f:Column />
  2557. <f:Column />
  2558. <f:Column />
  2559. <f:Column />
  2560. <f:Column />
  2561. <f:Column />
  2562. <f:Column />
  2563. <f:Column />
  2564. <f:Column />
  2565. <f:Column />
  2566. <f:Column />
  2567. <f:Column />
  2568. <f:Column />
  2569. <f:Column />
  2570. <f:Column />
  2571. <f:Column />
  2572. </f:Columns>
  2573. <f:Body>
  2574. <f:Cell id="text84" alias="文本84" styleID="7" left="1" right="30" top="1" bottom="1" type="constant">
  2575. <f:DesignedCell locked="false" />
  2576. <f:Data type="string">档案信息</f:Data>
  2577. </f:Cell>
  2578. <f:Cell id="text85" alias="文本85" styleID="8" left="1" right="6" top="2" bottom="2" type="constant">
  2579. <f:DesignedCell locked="false" />
  2580. <f:Data type="string">档案编号</f:Data>
  2581. </f:Cell>
  2582. <f:Cell id="text86" alias="文本86" styleID="8" left="7" right="13" top="2" bottom="2" type="constant">
  2583. <f:DesignedCell locked="false" />
  2584. <f:Data type="string">档案类型</f:Data>
  2585. </f:Cell>
  2586. <f:Cell id="text87" alias="文本87" styleID="9" left="14" right="21" top="2" bottom="2" type="constant">
  2587. <f:DesignedCell locked="false" />
  2588. <f:Data type="string">档案来源</f:Data>
  2589. </f:Cell>
  2590. <f:Cell id="text88" alias="文本88" styleID="8" left="22" right="30" top="2" bottom="2" type="constant">
  2591. <f:DesignedCell locked="false" />
  2592. <f:Data type="string">档案去处</f:Data>
  2593. </f:Cell>
  2594. </f:Body>
  2595. </f:Table>
  2596. <f:Area id="loop11" alias="cyl_档案" styleID="1" left="[group1.left]" right="[group1.right]" top="[table21.bottom]" nextAreaID="loop11">
  2597. <f:DesignedArea leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="table21" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="selfAdapt" bottomRelativeObjID="loop11" bottomRelativeBorder="top" bottomRelativeOffset="78" locked="false" />
  2598. <f:Table id="table22" alias="tbl_档案" left="[loop11.left]" right="[loop11.right]" top="[loop11.top]" bottom="[table22.top]+78.0" dataSourceID="ds_archive">
  2599. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="loop11" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="loop11" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop11" topRelativeBorder="top" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table22" bottomRelativeBorder="top" bottomRelativeOffset="78" locked="false" />
  2600. <f:Rows>
  2601. <f:Row />
  2602. </f:Rows>
  2603. <f:Columns>
  2604. <f:Column />
  2605. <f:Column />
  2606. <f:Column />
  2607. <f:Column />
  2608. <f:Column />
  2609. <f:Column />
  2610. <f:Column />
  2611. <f:Column />
  2612. <f:Column />
  2613. <f:Column />
  2614. <f:Column />
  2615. <f:Column />
  2616. <f:Column />
  2617. <f:Column />
  2618. <f:Column />
  2619. <f:Column />
  2620. <f:Column />
  2621. <f:Column />
  2622. <f:Column />
  2623. <f:Column />
  2624. <f:Column />
  2625. <f:Column />
  2626. <f:Column />
  2627. <f:Column />
  2628. <f:Column />
  2629. <f:Column />
  2630. <f:Column />
  2631. <f:Column />
  2632. <f:Column />
  2633. <f:Column />
  2634. </f:Columns>
  2635. <f:Body>
  2636. <f:Cell id="field72" alias="字段72" styleID="9" left="1" right="6" top="1" bottom="1" type="field">
  2637. <f:DesignedCell text="档案编号" locked="false" />
  2638. <f:Data type="string">number</f:Data>
  2639. </f:Cell>
  2640. <f:Cell id="field73" alias="字段73" styleID="9" left="7" right="13" top="1" bottom="1" type="field">
  2641. <f:DesignedCell text="档案类型" locked="false" />
  2642. <f:Data type="string">type</f:Data>
  2643. </f:Cell>
  2644. <f:Cell id="field74" alias="字段74" styleID="9" left="14" right="21" top="1" bottom="1" type="field">
  2645. <f:DesignedCell text="档案来源" locked="false" />
  2646. <f:Data type="string">source</f:Data>
  2647. </f:Cell>
  2648. <f:Cell id="field75" alias="字段75" styleID="9" left="22" right="30" top="1" bottom="1" type="field">
  2649. <f:DesignedCell text="档案去处" locked="false" />
  2650. <f:Data type="string">destination</f:Data>
  2651. </f:Cell>
  2652. </f:Body>
  2653. </f:Table>
  2654. </f:Area>
  2655. <f:Table id="table23" alias="tbl_职称0" left="[group1.left]" right="[group1.right]" top="[loop11.bottom]" bottom="[table23.top]+147.0">
  2656. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop11" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table23" bottomRelativeBorder="top" bottomRelativeOffset="147" locked="false" />
  2657. <f:Rows>
  2658. <f:Row />
  2659. <f:Row />
  2660. </f:Rows>
  2661. <f:Columns>
  2662. <f:Column />
  2663. <f:Column />
  2664. <f:Column />
  2665. <f:Column />
  2666. <f:Column />
  2667. <f:Column />
  2668. <f:Column />
  2669. <f:Column />
  2670. <f:Column />
  2671. <f:Column />
  2672. <f:Column />
  2673. <f:Column />
  2674. <f:Column />
  2675. <f:Column />
  2676. <f:Column />
  2677. <f:Column />
  2678. <f:Column />
  2679. <f:Column />
  2680. <f:Column />
  2681. <f:Column />
  2682. <f:Column />
  2683. <f:Column />
  2684. <f:Column />
  2685. <f:Column />
  2686. <f:Column />
  2687. <f:Column />
  2688. <f:Column />
  2689. <f:Column />
  2690. <f:Column />
  2691. <f:Column />
  2692. </f:Columns>
  2693. <f:Body>
  2694. <f:Cell id="text83" alias="文本83" styleID="7" left="1" right="30" top="1" bottom="1" type="constant">
  2695. <f:DesignedCell locked="false" />
  2696. <f:Data type="string">职称信息</f:Data>
  2697. </f:Cell>
  2698. <f:Cell id="text89" alias="文本89" styleID="8" left="1" right="6" top="2" bottom="2" type="constant">
  2699. <f:DesignedCell locked="false" />
  2700. <f:Data type="string">职称名称</f:Data>
  2701. </f:Cell>
  2702. <f:Cell id="text90" alias="文本90" styleID="8" left="7" right="12" top="2" bottom="2" type="constant">
  2703. <f:DesignedCell locked="false" />
  2704. <f:Data type="string">职称类别</f:Data>
  2705. </f:Cell>
  2706. <f:Cell id="text91" alias="文本91" styleID="9" left="13" right="16" top="2" bottom="2" type="constant">
  2707. <f:DesignedCell locked="false" />
  2708. <f:Data type="string">职称级别</f:Data>
  2709. </f:Cell>
  2710. <f:Cell id="text93" alias="文本93" styleID="9" left="17" right="22" top="2" bottom="2" type="constant">
  2711. <f:DesignedCell locked="false" />
  2712. <f:Data type="string">证书编号</f:Data>
  2713. </f:Cell>
  2714. <f:Cell id="text94" alias="文本94" styleID="9" left="23" right="26" top="2" bottom="2" type="constant">
  2715. <f:DesignedCell locked="false" />
  2716. <f:Data type="string">评定单位</f:Data>
  2717. </f:Cell>
  2718. <f:Cell id="text92" alias="文本92" styleID="8" left="27" right="30" top="2" bottom="2" type="constant">
  2719. <f:DesignedCell locked="false" />
  2720. <f:Data type="string">是否最高职称</f:Data>
  2721. </f:Cell>
  2722. </f:Body>
  2723. </f:Table>
  2724. <f:Area id="loop12" alias="cyl_职称" styleID="1" left="[group1.left]" right="[group1.right]" top="[table23.bottom]" nextAreaID="loop12">
  2725. <f:DesignedArea leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="table23" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="selfAdapt" bottomRelativeObjID="loop12" bottomRelativeBorder="top" bottomRelativeOffset="78" locked="false" />
  2726. <f:Table id="table24" alias="tbl_职称" left="[loop12.left]" right="[loop12.right]" top="[loop12.top]" bottom="[table24.top]+78.0" dataSourceID="ds_post">
  2727. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="loop12" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="loop12" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop12" topRelativeBorder="top" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table24" bottomRelativeBorder="top" bottomRelativeOffset="78" locked="false" />
  2728. <f:Rows>
  2729. <f:Row />
  2730. </f:Rows>
  2731. <f:Columns>
  2732. <f:Column />
  2733. <f:Column />
  2734. <f:Column />
  2735. <f:Column />
  2736. <f:Column />
  2737. <f:Column />
  2738. <f:Column />
  2739. <f:Column />
  2740. <f:Column />
  2741. <f:Column />
  2742. <f:Column />
  2743. <f:Column />
  2744. <f:Column />
  2745. <f:Column />
  2746. <f:Column />
  2747. <f:Column />
  2748. <f:Column />
  2749. <f:Column />
  2750. <f:Column />
  2751. <f:Column />
  2752. <f:Column />
  2753. <f:Column />
  2754. <f:Column />
  2755. <f:Column />
  2756. <f:Column />
  2757. <f:Column />
  2758. <f:Column />
  2759. <f:Column />
  2760. <f:Column />
  2761. <f:Column />
  2762. </f:Columns>
  2763. <f:Body>
  2764. <f:Cell id="field71" alias="字段71" styleID="9" left="1" right="6" top="1" bottom="1" type="field">
  2765. <f:DesignedCell text="职称名称" locked="false" />
  2766. <f:Data type="string">technicalPost</f:Data>
  2767. </f:Cell>
  2768. <f:Cell id="field76" alias="字段76" styleID="9" left="7" right="12" top="1" bottom="1" type="field">
  2769. <f:DesignedCell text="职称类别" locked="false" />
  2770. <f:Data type="string">category</f:Data>
  2771. </f:Cell>
  2772. <f:Cell id="field77" alias="字段77" styleID="9" left="13" right="16" top="1" bottom="1" type="field">
  2773. <f:DesignedCell text="职称级别" locked="false" />
  2774. <f:Data type="string">level</f:Data>
  2775. </f:Cell>
  2776. <f:Cell id="field79" alias="字段79" styleID="9" left="17" right="22" top="1" bottom="1" type="field">
  2777. <f:DesignedCell text="证书编号" locked="false" />
  2778. <f:Data type="string">certificateNo</f:Data>
  2779. </f:Cell>
  2780. <f:Cell id="field80" alias="字段80" styleID="9" left="23" right="26" top="1" bottom="1" type="field">
  2781. <f:DesignedCell text="评定单位" locked="false" />
  2782. <f:Data type="string">gradeUnit</f:Data>
  2783. </f:Cell>
  2784. <f:Cell id="field78" alias="字段78" styleID="9" left="27" right="30" top="1" bottom="1" type="field">
  2785. <f:DesignedCell text="是否最高职称" locked="false" />
  2786. <f:Data type="string">isHighestPost</f:Data>
  2787. </f:Cell>
  2788. </f:Body>
  2789. </f:Table>
  2790. </f:Area>
  2791. <f:Table id="table25" alias="tbl_认证0" left="[group1.left]" right="[group1.right]" top="[loop12.bottom]" bottom="[table25.top]+147.0">
  2792. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop12" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table25" bottomRelativeBorder="top" bottomRelativeOffset="147" locked="false" />
  2793. <f:Rows>
  2794. <f:Row />
  2795. <f:Row />
  2796. </f:Rows>
  2797. <f:Columns>
  2798. <f:Column />
  2799. <f:Column />
  2800. <f:Column />
  2801. <f:Column />
  2802. <f:Column />
  2803. <f:Column />
  2804. <f:Column />
  2805. <f:Column />
  2806. <f:Column />
  2807. <f:Column />
  2808. <f:Column />
  2809. <f:Column />
  2810. <f:Column />
  2811. <f:Column />
  2812. <f:Column />
  2813. <f:Column />
  2814. <f:Column />
  2815. <f:Column />
  2816. <f:Column />
  2817. <f:Column />
  2818. <f:Column />
  2819. <f:Column />
  2820. <f:Column />
  2821. <f:Column />
  2822. <f:Column />
  2823. <f:Column />
  2824. <f:Column />
  2825. <f:Column />
  2826. <f:Column />
  2827. <f:Column />
  2828. </f:Columns>
  2829. <f:Body>
  2830. <f:Cell id="text95" alias="文本95" styleID="7" left="1" right="30" top="1" bottom="1" type="constant">
  2831. <f:DesignedCell locked="false" />
  2832. <f:Data type="string">认证信息</f:Data>
  2833. </f:Cell>
  2834. <f:Cell id="text96" alias="文本96" styleID="8" left="1" right="6" top="2" bottom="2" type="constant">
  2835. <f:DesignedCell locked="false" />
  2836. <f:Data type="string">证书编号</f:Data>
  2837. </f:Cell>
  2838. <f:Cell id="text97" alias="文本97" styleID="8" left="7" right="13" top="2" bottom="2" type="constant">
  2839. <f:DesignedCell locked="false" />
  2840. <f:Data type="string">证书名称</f:Data>
  2841. </f:Cell>
  2842. <f:Cell id="text98" alias="文本98" styleID="9" left="14" right="18" top="2" bottom="2" type="constant">
  2843. <f:DesignedCell locked="false" />
  2844. <f:Data type="string">认证有效期(年)</f:Data>
  2845. </f:Cell>
  2846. <f:Cell id="text99" alias="文本99" styleID="8" left="19" right="26" top="2" bottom="2" type="constant">
  2847. <f:DesignedCell locked="false" />
  2848. <f:Data type="string">认证机构</f:Data>
  2849. </f:Cell>
  2850. <f:Cell id="text100" alias="文本100" styleID="9" left="27" right="30" top="2" bottom="2" type="constant">
  2851. <f:DesignedCell locked="false" />
  2852. <f:Data type="string">认证级别</f:Data>
  2853. </f:Cell>
  2854. </f:Body>
  2855. </f:Table>
  2856. <f:Area id="loop13" alias="cyl_认证" styleID="1" left="[group1.left]" right="[group1.right]" top="[table25.bottom]" nextAreaID="loop13">
  2857. <f:DesignedArea leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="table25" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="selfAdapt" bottomRelativeObjID="loop13" bottomRelativeBorder="top" bottomRelativeOffset="78" locked="false" />
  2858. <f:Table id="table26" alias="tbl_认证" left="[loop13.left]" right="[loop13.right]" top="[loop13.top]" bottom="[table26.top]+78.0" dataSourceID="ds_certificate">
  2859. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="loop13" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="loop13" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop13" topRelativeBorder="top" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table26" bottomRelativeBorder="top" bottomRelativeOffset="78" locked="false" />
  2860. <f:Rows>
  2861. <f:Row />
  2862. </f:Rows>
  2863. <f:Columns>
  2864. <f:Column />
  2865. <f:Column />
  2866. <f:Column />
  2867. <f:Column />
  2868. <f:Column />
  2869. <f:Column />
  2870. <f:Column />
  2871. <f:Column />
  2872. <f:Column />
  2873. <f:Column />
  2874. <f:Column />
  2875. <f:Column />
  2876. <f:Column />
  2877. <f:Column />
  2878. <f:Column />
  2879. <f:Column />
  2880. <f:Column />
  2881. <f:Column />
  2882. <f:Column />
  2883. <f:Column />
  2884. <f:Column />
  2885. <f:Column />
  2886. <f:Column />
  2887. <f:Column />
  2888. <f:Column />
  2889. <f:Column />
  2890. <f:Column />
  2891. <f:Column />
  2892. <f:Column />
  2893. <f:Column />
  2894. </f:Columns>
  2895. <f:Body>
  2896. <f:Cell id="field81" alias="字段81" styleID="9" left="1" right="6" top="1" bottom="1" type="field">
  2897. <f:DesignedCell text="证书编号" locked="false" />
  2898. <f:Data type="string">certificateNumber</f:Data>
  2899. </f:Cell>
  2900. <f:Cell id="field82" alias="字段82" styleID="9" left="7" right="13" top="1" bottom="1" type="field">
  2901. <f:DesignedCell text="认证名称" locked="false" />
  2902. <f:Data type="string">certificateName</f:Data>
  2903. </f:Cell>
  2904. <f:Cell id="field83" alias="字段83" styleID="9" left="14" right="18" top="1" bottom="1" type="field">
  2905. <f:DesignedCell text="认证有效期(年)" locked="false" />
  2906. <f:Data type="string">certificateValidityYear</f:Data>
  2907. </f:Cell>
  2908. <f:Cell id="field84" alias="字段84" styleID="9" left="19" right="26" top="1" bottom="1" type="field">
  2909. <f:DesignedCell text="认证机构" locked="false" />
  2910. <f:Data type="string">certificateOrgan</f:Data>
  2911. </f:Cell>
  2912. <f:Cell id="field85" alias="字段85" styleID="9" left="27" right="30" top="1" bottom="1" type="field">
  2913. <f:DesignedCell text="认证级别" locked="false" />
  2914. <f:Data type="string">certificateLevel</f:Data>
  2915. </f:Cell>
  2916. </f:Body>
  2917. </f:Table>
  2918. </f:Area>
  2919. <f:Table id="table27" alias="tbl_历史0" left="[group1.left]" right="[group1.right]" top="[loop13.bottom]" bottom="[table27.top]+147.0">
  2920. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop13" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table27" bottomRelativeBorder="top" bottomRelativeOffset="147" locked="false" />
  2921. <f:Rows>
  2922. <f:Row />
  2923. <f:Row />
  2924. </f:Rows>
  2925. <f:Columns>
  2926. <f:Column />
  2927. <f:Column />
  2928. <f:Column />
  2929. <f:Column />
  2930. <f:Column />
  2931. <f:Column />
  2932. <f:Column />
  2933. <f:Column />
  2934. <f:Column />
  2935. <f:Column />
  2936. <f:Column />
  2937. <f:Column />
  2938. <f:Column />
  2939. <f:Column />
  2940. <f:Column />
  2941. <f:Column />
  2942. <f:Column />
  2943. <f:Column />
  2944. <f:Column />
  2945. <f:Column />
  2946. <f:Column />
  2947. <f:Column />
  2948. <f:Column />
  2949. <f:Column />
  2950. <f:Column />
  2951. <f:Column />
  2952. <f:Column />
  2953. <f:Column />
  2954. <f:Column />
  2955. <f:Column />
  2956. </f:Columns>
  2957. <f:Body>
  2958. <f:Cell id="text101" alias="文本101" styleID="7" left="1" right="30" top="1" bottom="1" type="constant">
  2959. <f:DesignedCell locked="false" />
  2960. <f:Data type="string">任职历史</f:Data>
  2961. </f:Cell>
  2962. <f:Cell id="text102" alias="文本102" styleID="8" left="1" right="6" top="2" bottom="2" type="constant">
  2963. <f:DesignedCell locked="false" />
  2964. <f:Data type="string">职位</f:Data>
  2965. </f:Cell>
  2966. <f:Cell id="text103" alias="文本103" styleID="8" left="7" right="13" top="2" bottom="2" type="constant">
  2967. <f:DesignedCell locked="false" />
  2968. <f:Data type="string">职务</f:Data>
  2969. </f:Cell>
  2970. <f:Cell id="text104" alias="文本104" styleID="9" left="14" right="17" top="2" bottom="2" type="constant">
  2971. <f:DesignedCell locked="false" />
  2972. <f:Data type="string">职级</f:Data>
  2973. </f:Cell>
  2974. <f:Cell id="text105" alias="文本105" styleID="8" left="18" right="26" top="2" bottom="2" type="constant">
  2975. <f:DesignedCell locked="false" />
  2976. <f:Data type="string">所属组织</f:Data>
  2977. </f:Cell>
  2978. <f:Cell id="text106" alias="文本106" styleID="9" left="27" right="30" top="2" bottom="2" type="constant">
  2979. <f:DesignedCell locked="false" />
  2980. <f:Data type="string">开始日期</f:Data>
  2981. </f:Cell>
  2982. </f:Body>
  2983. </f:Table>
  2984. <f:Area id="loop14" alias="cyl_历史" styleID="1" left="[group1.left]" right="[group1.right]" top="[table27.bottom]" nextAreaID="loop14">
  2985. <f:DesignedArea leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="table27" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="selfAdapt" bottomRelativeObjID="loop14" bottomRelativeBorder="top" bottomRelativeOffset="78" locked="false" />
  2986. <f:Table id="table28" alias="tbl_历史" left="[loop14.left]" right="[loop14.right]" top="[loop14.top]" bottom="[table28.top]+78.0" dataSourceID="ds_workExpCur">
  2987. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="loop14" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="loop14" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop14" topRelativeBorder="top" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table28" bottomRelativeBorder="top" bottomRelativeOffset="78" locked="false" />
  2988. <f:Rows>
  2989. <f:Row />
  2990. </f:Rows>
  2991. <f:Columns>
  2992. <f:Column />
  2993. <f:Column />
  2994. <f:Column />
  2995. <f:Column />
  2996. <f:Column />
  2997. <f:Column />
  2998. <f:Column />
  2999. <f:Column />
  3000. <f:Column />
  3001. <f:Column />
  3002. <f:Column />
  3003. <f:Column />
  3004. <f:Column />
  3005. <f:Column />
  3006. <f:Column />
  3007. <f:Column />
  3008. <f:Column />
  3009. <f:Column />
  3010. <f:Column />
  3011. <f:Column />
  3012. <f:Column />
  3013. <f:Column />
  3014. <f:Column />
  3015. <f:Column />
  3016. <f:Column />
  3017. <f:Column />
  3018. <f:Column />
  3019. <f:Column />
  3020. <f:Column />
  3021. <f:Column />
  3022. </f:Columns>
  3023. <f:Body>
  3024. <f:Cell id="field86" alias="字段86" styleID="9" left="1" right="6" top="1" bottom="1" type="field">
  3025. <f:DesignedCell text="职位" locked="false" />
  3026. <f:Data type="string">position.name</f:Data>
  3027. </f:Cell>
  3028. <f:Cell id="field87" alias="字段87" styleID="9" left="7" right="13" top="1" bottom="1" type="field">
  3029. <f:DesignedCell text="职务" locked="false" />
  3030. <f:Data type="string">job.name</f:Data>
  3031. </f:Cell>
  3032. <f:Cell id="field88" alias="字段88" styleID="9" left="14" right="17" top="1" bottom="1" type="field">
  3033. <f:DesignedCell text="职级" locked="false" />
  3034. <f:Data type="string">jobLevel.name</f:Data>
  3035. </f:Cell>
  3036. <f:Cell id="field89" alias="字段89" styleID="9" left="18" right="26" top="1" bottom="1" type="field">
  3037. <f:DesignedCell text="所属组织单元" locked="false" />
  3038. <f:Data type="string">AdminOrgUnit.name</f:Data>
  3039. </f:Cell>
  3040. <f:Cell id="field90" alias="字段90" styleID="9" left="27" right="30" top="1" bottom="1" type="field">
  3041. <f:DesignedCell text="任职开始日期" locked="false" />
  3042. <f:Data type="string">beginDate</f:Data>
  3043. </f:Cell>
  3044. </f:Body>
  3045. </f:Table>
  3046. </f:Area>
  3047. <f:Table id="table29" alias="tbl_联系0" left="[group1.left]" right="[group1.right]" top="[loop14.bottom]" bottom="[table29.top]+147.0">
  3048. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop14" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table29" bottomRelativeBorder="top" bottomRelativeOffset="147" locked="false" />
  3049. <f:Rows>
  3050. <f:Row />
  3051. <f:Row />
  3052. </f:Rows>
  3053. <f:Columns>
  3054. <f:Column />
  3055. <f:Column />
  3056. <f:Column />
  3057. <f:Column />
  3058. <f:Column />
  3059. <f:Column />
  3060. <f:Column />
  3061. <f:Column />
  3062. <f:Column />
  3063. <f:Column />
  3064. <f:Column />
  3065. <f:Column />
  3066. <f:Column />
  3067. <f:Column />
  3068. <f:Column />
  3069. <f:Column />
  3070. <f:Column />
  3071. <f:Column />
  3072. <f:Column />
  3073. <f:Column />
  3074. <f:Column />
  3075. <f:Column />
  3076. <f:Column />
  3077. <f:Column />
  3078. <f:Column />
  3079. <f:Column />
  3080. <f:Column />
  3081. <f:Column />
  3082. <f:Column />
  3083. <f:Column />
  3084. </f:Columns>
  3085. <f:Body>
  3086. <f:Cell id="text107" alias="文本107" styleID="7" left="1" right="30" top="1" bottom="1" type="constant">
  3087. <f:DesignedCell locked="false" />
  3088. <f:Data type="string">联系方式</f:Data>
  3089. </f:Cell>
  3090. <f:Cell id="text108" alias="文本108" styleID="8" left="1" right="6" top="2" bottom="2" type="constant">
  3091. <f:DesignedCell locked="false" />
  3092. <f:Data type="string">出生地</f:Data>
  3093. </f:Cell>
  3094. <f:Cell id="text109" alias="文本109" styleID="8" left="7" right="15" top="2" bottom="2" type="constant">
  3095. <f:DesignedCell locked="false" />
  3096. <f:Data type="string">住址</f:Data>
  3097. </f:Cell>
  3098. <f:Cell id="text110" alias="文本110" styleID="9" left="16" right="19" top="2" bottom="2" type="constant">
  3099. <f:DesignedCell locked="false" />
  3100. <f:Data type="string">邮编</f:Data>
  3101. </f:Cell>
  3102. <f:Cell id="text111" alias="文本111" styleID="8" left="20" right="25" top="2" bottom="2" type="constant">
  3103. <f:DesignedCell locked="false" />
  3104. <f:Data type="string">家庭电话</f:Data>
  3105. </f:Cell>
  3106. <f:Cell id="text112" alias="文本112" styleID="9" left="26" right="30" top="2" bottom="2" type="constant">
  3107. <f:DesignedCell locked="false" />
  3108. <f:Data type="string">手机号码</f:Data>
  3109. </f:Cell>
  3110. </f:Body>
  3111. </f:Table>
  3112. <f:Area id="loop15" alias="cyl_联系" styleID="1" left="[group1.left]" right="[group1.right]" top="[table29.bottom]" nextAreaID="loop15">
  3113. <f:DesignedArea leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="table29" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="selfAdapt" bottomRelativeObjID="loop15" bottomRelativeBorder="top" bottomRelativeOffset="78" locked="false" />
  3114. <f:Table id="table30" alias="tbl_联系" left="[loop15.left]" right="[loop15.right]" top="[loop15.top]" bottom="[table30.top]+78.0" dataSourceID="ds_contactMethod">
  3115. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="loop15" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="loop15" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop15" topRelativeBorder="top" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table30" bottomRelativeBorder="top" bottomRelativeOffset="78" locked="false" />
  3116. <f:Rows>
  3117. <f:Row />
  3118. </f:Rows>
  3119. <f:Columns>
  3120. <f:Column />
  3121. <f:Column />
  3122. <f:Column />
  3123. <f:Column />
  3124. <f:Column />
  3125. <f:Column />
  3126. <f:Column />
  3127. <f:Column />
  3128. <f:Column />
  3129. <f:Column />
  3130. <f:Column />
  3131. <f:Column />
  3132. <f:Column />
  3133. <f:Column />
  3134. <f:Column />
  3135. <f:Column />
  3136. <f:Column />
  3137. <f:Column />
  3138. <f:Column />
  3139. <f:Column />
  3140. <f:Column />
  3141. <f:Column />
  3142. <f:Column />
  3143. <f:Column />
  3144. <f:Column />
  3145. <f:Column />
  3146. <f:Column />
  3147. <f:Column />
  3148. <f:Column />
  3149. <f:Column />
  3150. </f:Columns>
  3151. <f:Body>
  3152. <f:Cell id="field91" alias="字段91" styleID="9" left="1" right="6" top="1" bottom="1" type="field">
  3153. <f:DesignedCell text="出生地" locked="false" />
  3154. <f:Data type="string">homeplace</f:Data>
  3155. </f:Cell>
  3156. <f:Cell id="field92" alias="字段92" styleID="9" left="7" right="15" top="1" bottom="1" type="field">
  3157. <f:DesignedCell text="住址" locked="false" />
  3158. <f:Data type="string">homeAddress</f:Data>
  3159. </f:Cell>
  3160. <f:Cell id="field93" alias="字段93" styleID="9" left="16" right="19" top="1" bottom="1" type="field">
  3161. <f:DesignedCell text="邮政编码" locked="false" />
  3162. <f:Data type="string">postalcode</f:Data>
  3163. </f:Cell>
  3164. <f:Cell id="field94" alias="字段94" styleID="9" left="20" right="25" top="1" bottom="1" type="field">
  3165. <f:DesignedCell text="家庭电话" locked="false" />
  3166. <f:Data type="string">homePhone</f:Data>
  3167. </f:Cell>
  3168. <f:Cell id="field95" alias="字段95" styleID="9" left="26" right="30" top="1" bottom="1" type="field">
  3169. <f:DesignedCell text="手机号码" locked="false" />
  3170. <f:Data type="string">mobile</f:Data>
  3171. </f:Cell>
  3172. </f:Body>
  3173. </f:Table>
  3174. </f:Area>
  3175. <f:Table id="table31" alias="tbl_奖惩0" left="[group1.left]" right="[group1.right]" top="[loop15.bottom]" bottom="[table31.top]+147.0">
  3176. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop15" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table31" bottomRelativeBorder="top" bottomRelativeOffset="147" locked="false" />
  3177. <f:Rows>
  3178. <f:Row />
  3179. <f:Row />
  3180. </f:Rows>
  3181. <f:Columns>
  3182. <f:Column />
  3183. <f:Column />
  3184. <f:Column />
  3185. <f:Column />
  3186. <f:Column />
  3187. <f:Column />
  3188. <f:Column />
  3189. <f:Column />
  3190. <f:Column />
  3191. <f:Column />
  3192. <f:Column />
  3193. <f:Column />
  3194. <f:Column />
  3195. <f:Column />
  3196. <f:Column />
  3197. <f:Column />
  3198. <f:Column />
  3199. <f:Column />
  3200. <f:Column />
  3201. <f:Column />
  3202. <f:Column />
  3203. <f:Column />
  3204. <f:Column />
  3205. <f:Column />
  3206. <f:Column />
  3207. <f:Column />
  3208. <f:Column />
  3209. <f:Column />
  3210. <f:Column />
  3211. <f:Column />
  3212. </f:Columns>
  3213. <f:Body>
  3214. <f:Cell id="text113" alias="文本113" styleID="7" left="1" right="30" top="1" bottom="1" type="constant">
  3215. <f:DesignedCell locked="false" />
  3216. <f:Data type="string">奖惩记录</f:Data>
  3217. </f:Cell>
  3218. <f:Cell id="text114" alias="文本114" styleID="8" left="1" right="8" top="2" bottom="2" type="constant">
  3219. <f:DesignedCell locked="false" />
  3220. <f:Data type="string">标题</f:Data>
  3221. </f:Cell>
  3222. <f:Cell id="text115" alias="文本115" styleID="8" left="9" right="15" top="2" bottom="2" type="constant">
  3223. <f:DesignedCell locked="false" />
  3224. <f:Data type="string">奖惩类型</f:Data>
  3225. </f:Cell>
  3226. <f:Cell id="text116" alias="文本116" styleID="9" left="16" right="25" top="2" bottom="2" type="constant">
  3227. <f:DesignedCell locked="false" />
  3228. <f:Data type="string">奖惩内容</f:Data>
  3229. </f:Cell>
  3230. <f:Cell id="text117" alias="文本117" styleID="8" left="26" right="30" top="2" bottom="2" type="constant">
  3231. <f:DesignedCell locked="false" />
  3232. <f:Data type="string">奖惩时间</f:Data>
  3233. </f:Cell>
  3234. </f:Body>
  3235. </f:Table>
  3236. <f:Area id="loop16" alias="cyl_奖惩" styleID="1" left="[group1.left]" right="[group1.right]" top="[table31.bottom]" nextAreaID="loop16">
  3237. <f:DesignedArea leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="table31" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="selfAdapt" bottomRelativeObjID="loop16" bottomRelativeBorder="top" bottomRelativeOffset="78" locked="false" />
  3238. <f:Table id="table32" alias="tbl_奖惩" left="[loop16.left]" right="[loop16.right]" top="[loop16.top]" bottom="[table32.top]+78.0" dataSourceID="ds_rewordPunish">
  3239. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="loop16" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="loop16" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop16" topRelativeBorder="top" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table32" bottomRelativeBorder="top" bottomRelativeOffset="78" locked="false" />
  3240. <f:Rows>
  3241. <f:Row />
  3242. </f:Rows>
  3243. <f:Columns>
  3244. <f:Column />
  3245. <f:Column />
  3246. <f:Column />
  3247. <f:Column />
  3248. <f:Column />
  3249. <f:Column />
  3250. <f:Column />
  3251. <f:Column />
  3252. <f:Column />
  3253. <f:Column />
  3254. <f:Column />
  3255. <f:Column />
  3256. <f:Column />
  3257. <f:Column />
  3258. <f:Column />
  3259. <f:Column />
  3260. <f:Column />
  3261. <f:Column />
  3262. <f:Column />
  3263. <f:Column />
  3264. <f:Column />
  3265. <f:Column />
  3266. <f:Column />
  3267. <f:Column />
  3268. <f:Column />
  3269. <f:Column />
  3270. <f:Column />
  3271. <f:Column />
  3272. <f:Column />
  3273. <f:Column />
  3274. </f:Columns>
  3275. <f:Body>
  3276. <f:Cell id="field96" alias="字段96" styleID="9" left="1" right="8" top="1" bottom="1" type="field">
  3277. <f:DesignedCell text="奖惩信息标题" locked="false" />
  3278. <f:Data type="string">occurTitle</f:Data>
  3279. </f:Cell>
  3280. <f:Cell id="field97" alias="字段97" styleID="9" left="9" right="15" top="1" bottom="1" type="field">
  3281. <f:DesignedCell text="奖惩类型" locked="false" />
  3282. <f:Data type="string">occurType</f:Data>
  3283. </f:Cell>
  3284. <f:Cell id="field98" alias="字段98" styleID="9" left="16" right="25" top="1" bottom="1" type="field">
  3285. <f:DesignedCell text="奖惩内容" locked="false" />
  3286. <f:Data type="string">occurContent</f:Data>
  3287. </f:Cell>
  3288. <f:Cell id="field99" alias="字段99" styleID="9" left="26" right="30" top="1" bottom="1" type="field">
  3289. <f:DesignedCell text="奖惩时间" locked="false" />
  3290. <f:Data type="string">occurDate</f:Data>
  3291. </f:Cell>
  3292. </f:Body>
  3293. </f:Table>
  3294. </f:Area>
  3295. <f:Table id="table34" alias="tbl_培训0" styleID="12" left="[group1.left]" right="[group1.right]" top="[loop16.bottom]" bottom="[table34.top]+147.0">
  3296. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop16" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table34" bottomRelativeBorder="top" bottomRelativeOffset="147" locked="false" />
  3297. <f:Rows>
  3298. <f:Row />
  3299. <f:Row />
  3300. </f:Rows>
  3301. <f:Columns>
  3302. <f:Column />
  3303. <f:Column />
  3304. <f:Column />
  3305. <f:Column />
  3306. <f:Column />
  3307. <f:Column />
  3308. <f:Column />
  3309. <f:Column />
  3310. <f:Column />
  3311. <f:Column />
  3312. <f:Column />
  3313. <f:Column />
  3314. <f:Column />
  3315. <f:Column />
  3316. <f:Column />
  3317. <f:Column />
  3318. <f:Column />
  3319. <f:Column />
  3320. <f:Column />
  3321. <f:Column />
  3322. <f:Column />
  3323. <f:Column />
  3324. <f:Column />
  3325. <f:Column />
  3326. <f:Column />
  3327. <f:Column />
  3328. <f:Column />
  3329. <f:Column />
  3330. <f:Column />
  3331. <f:Column />
  3332. </f:Columns>
  3333. <f:Body>
  3334. <f:Cell id="text9" alias="文本9" styleID="13" left="1" right="30" top="1" bottom="1" type="constant">
  3335. <f:DesignedCell locked="false" />
  3336. <f:Data type="string">培训信息</f:Data>
  3337. </f:Cell>
  3338. <f:Cell id="text14" alias="文本14" styleID="9" left="1" right="6" top="2" bottom="2" type="constant">
  3339. <f:DesignedCell locked="false" />
  3340. <f:Data type="string">培训课程</f:Data>
  3341. </f:Cell>
  3342. <f:Cell id="text21" alias="文本21" styleID="9" left="7" right="12" top="2" bottom="2" type="constant">
  3343. <f:DesignedCell locked="false" />
  3344. <f:Data type="string">课程开始时间</f:Data>
  3345. </f:Cell>
  3346. <f:Cell id="text28" alias="文本28" styleID="9" left="13" right="18" top="2" bottom="2" type="constant">
  3347. <f:DesignedCell locked="false" />
  3348. <f:Data type="string">课程结束时间</f:Data>
  3349. </f:Cell>
  3350. <f:Cell id="text31" alias="文本31" styleID="9" left="19" right="24" top="2" bottom="2" type="constant">
  3351. <f:DesignedCell locked="false" />
  3352. <f:Data type="string">证书名称</f:Data>
  3353. </f:Cell>
  3354. <f:Cell id="text32" alias="文本32" styleID="9" left="25" right="30" top="2" bottom="2" type="constant">
  3355. <f:DesignedCell locked="false" />
  3356. <f:Data type="string">培训方式</f:Data>
  3357. </f:Cell>
  3358. </f:Body>
  3359. </f:Table>
  3360. <f:Area id="loop18" alias="cyl_培训" styleID="1" left="[group1.left]" right="[group1.right]" top="[table34.bottom]" nextAreaID="loop18">
  3361. <f:DesignedArea leftLocationType="relative" leftRelativeObjID="group1" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="group1" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="table34" topRelativeBorder="bottom" topRelativeOffset="0" bottomLocationType="selfAdapt" bottomRelativeObjID="loop18" bottomRelativeBorder="top" bottomRelativeOffset="78" locked="false" />
  3362. <f:Table id="table35" alias="tbl_培训" styleID="12" left="[loop18.left]" right="[loop18.right]" top="[loop18.top]" bottom="[table35.top]+78.0" dataSourceID="ds_train">
  3363. <f:DesignedTable layout="auto" leftLocationType="relative" leftRelativeObjID="loop18" leftRelativeBorder="left" leftRelativeOffset="0" rightLocationType="relative" rightRelativeObjID="loop18" rightRelativeBorder="right" rightRelativeOffset="0" topLocationType="relative" topRelativeObjID="loop18" topRelativeBorder="top" topRelativeOffset="0" bottomLocationType="relative" bottomRelativeObjID="table35" bottomRelativeBorder="top" bottomRelativeOffset="78" locked="false" />
  3364. <f:Rows>
  3365. <f:Row />
  3366. </f:Rows>
  3367. <f:Columns>
  3368. <f:Column />
  3369. <f:Column />
  3370. <f:Column />
  3371. <f:Column />
  3372. <f:Column />
  3373. <f:Column />
  3374. <f:Column />
  3375. <f:Column />
  3376. <f:Column />
  3377. <f:Column />
  3378. <f:Column />
  3379. <f:Column />
  3380. <f:Column />
  3381. <f:Column />
  3382. <f:Column />
  3383. <f:Column />
  3384. <f:Column />
  3385. <f:Column />
  3386. <f:Column />
  3387. <f:Column />
  3388. <f:Column />
  3389. <f:Column />
  3390. <f:Column />
  3391. <f:Column />
  3392. <f:Column />
  3393. <f:Column />
  3394. <f:Column />
  3395. <f:Column />
  3396. <f:Column />
  3397. <f:Column />
  3398. </f:Columns>
  3399. <f:Body>
  3400. <f:Cell id="field6" alias="字段6" styleID="14" left="1" right="6" top="1" bottom="1" type="field">
  3401. <f:DesignedCell text="培训课程" locked="false" />
  3402. <f:Data type="string">trainCourse</f:Data>
  3403. </f:Cell>
  3404. <f:Cell id="field8" alias="字段8" styleID="9" left="7" right="12" top="1" bottom="1" type="field" format="yyyy-m-d">
  3405. <f:DesignedCell text="课程开始时间" locked="false" />
  3406. <f:Data type="string">beginDateTime</f:Data>
  3407. </f:Cell>
  3408. <f:Cell id="field25" alias="字段25" styleID="9" left="13" right="18" top="1" bottom="1" type="field" format="yyyy-m-d">
  3409. <f:DesignedCell text="课程结束时间" locked="false" />
  3410. <f:Data type="string">endDateTime</f:Data>
  3411. </f:Cell>
  3412. <f:Cell id="field26" alias="字段26" styleID="9" left="19" right="24" top="1" bottom="1" type="field">
  3413. <f:DesignedCell text="证书名称" locked="false" />
  3414. <f:Data type="string">courseCertificateName</f:Data>
  3415. </f:Cell>
  3416. <f:Cell id="field27" alias="字段27" styleID="9" left="25" right="30" top="1" bottom="1" type="field">
  3417. <f:DesignedCell text="培训方式" locked="false" />
  3418. <f:Data type="string">trainMethod</f:Data>
  3419. </f:Cell>
  3420. </f:Body>
  3421. </f:Table>
  3422. </f:Area>
  3423. </f:Panel>
  3424. </f:Area>
  3425. </f:Page>
  3426. </Form>
  3427. <PrintInfo>
  3428. <c:PageSetup>
  3429. <c:PageMargin left="190" right="190" top="250" bottom="250" header="80" footer="80" />
  3430. <c:Orientation>PORTRAIT</c:Orientation>
  3431. <c:CustomizePaperSize width="2100" height="2970" bottom="-1" />
  3432. <c:Header height="80" margin="80" />
  3433. <c:Footer height="80" margin="80" />
  3434. </c:PageSetup>
  3435. <c:PrinterSetup />
  3436. </PrintInfo>
  3437. </DocRoot>