123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438 |
- <?xml version="1.0" encoding="UTF-8"?>
- <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">
- <DocInfo>
- <c:Created>Tue Nov 01 13:41:13 CST 2005</c:Created>
- <c:Company>kingdee.com</c:Company>
- <c:LastModified>Wed May 13 15:51:45 CST 2009</c:LastModified>
- <c:Author>null</c:Author>
- </DocInfo>
- <DataSources version="2.0">
- <c:DataSource id="ds_contract">
- <c:Reference />
- <c:Params>
- <c:Param dataType="String" source="associate">
- <c:ColName>empID</c:ColName>
- <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
- </c:Param>
- </c:Params>
- </c:DataSource>
- <c:DataSource id="ds_degree">
- <c:Reference />
- <c:Params>
- <c:Param dataType="String" source="associate">
- <c:ColName>empID</c:ColName>
- <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
- </c:Param>
- </c:Params>
- </c:DataSource>
- <c:DataSource id="ds_communist">
- <c:Reference />
- <c:Params>
- <c:Param dataType="String" source="associate">
- <c:ColName>empID</c:ColName>
- <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
- </c:Param>
- </c:Params>
- </c:DataSource>
- <c:DataSource id="ds_primaryPosition">
- <c:Reference />
- <c:Params>
- <c:Param dataType="String" source="associate">
- <c:ColName>empID</c:ColName>
- <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
- </c:Param>
- </c:Params>
- </c:DataSource>
- <c:DataSource id="ds_benefit">
- <c:Reference />
- <c:Params>
- <c:Param dataType="String" source="associate">
- <c:ColName>personID</c:ColName>
- <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
- </c:Param>
- </c:Params>
- </c:DataSource>
- <c:DataSource id="ds_resource">
- <c:Reference />
- <c:Params>
- <c:Param dataType="String" source="associate">
- <c:ColName>empID</c:ColName>
- <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
- </c:Param>
- </c:Params>
- </c:DataSource>
- <c:DataSource id="ds_baseInfo">
- <c:Reference />
- <c:Params />
- </c:DataSource>
- <c:DataSource id="ds_linkMen">
- <c:Reference />
- <c:Params>
- <c:Param dataType="String" source="associate">
- <c:ColName>empID</c:ColName>
- <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
- </c:Param>
- </c:Params>
- </c:DataSource>
- <c:DataSource id="ds_workExp">
- <c:Reference />
- <c:Params>
- <c:Param dataType="String" source="associate">
- <c:ColName>empID</c:ColName>
- <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
- </c:Param>
- </c:Params>
- </c:DataSource>
- <c:DataSource id="ds_family">
- <c:Reference />
- <c:Params>
- <c:Param dataType="String" source="associate">
- <c:ColName>empID</c:ColName>
- <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
- </c:Param>
- </c:Params>
- </c:DataSource>
- <c:DataSource id="ds_language">
- <c:Reference />
- <c:Params>
- <c:Param dataType="String" source="associate">
- <c:ColName>empID</c:ColName>
- <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
- </c:Param>
- </c:Params>
- </c:DataSource>
- <c:DataSource id="ds_archive">
- <c:Reference />
- <c:Params>
- <c:Param dataType="String" source="associate">
- <c:ColName>empID</c:ColName>
- <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
- </c:Param>
- </c:Params>
- </c:DataSource>
- <c:DataSource id="ds_compet">
- <c:Reference />
- <c:Params>
- <c:Param dataType="String" source="associate">
- <c:ColName>empID</c:ColName>
- <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
- </c:Param>
- </c:Params>
- </c:DataSource>
- <c:DataSource id="ds_train">
- <c:Reference />
- <c:Params>
- <c:Param dataType="String" source="associate">
- <c:ColName>empID</c:ColName>
- <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
- </c:Param>
- </c:Params>
- </c:DataSource>
- <c:DataSource id="ds_post">
- <c:Reference />
- <c:Params>
- <c:Param dataType="String" source="associate">
- <c:ColName>empID</c:ColName>
- <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
- </c:Param>
- </c:Params>
- </c:DataSource>
- <c:DataSource id="ds_certificate">
- <c:Reference />
- <c:Params>
- <c:Param dataType="String" source="associate">
- <c:ColName>empID</c:ColName>
- <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
- </c:Param>
- </c:Params>
- </c:DataSource>
- <c:DataSource id="ds_workExpCur">
- <c:Reference />
- <c:Params>
- <c:Param dataType="String" source="associate">
- <c:ColName>empID</c:ColName>
- <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
- </c:Param>
- </c:Params>
- </c:DataSource>
- <c:DataSource id="ds_contactMethod">
- <c:Reference />
- <c:Params>
- <c:Param dataType="String" source="associate">
- <c:ColName>empID</c:ColName>
- <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
- </c:Param>
- </c:Params>
- </c:DataSource>
- <c:DataSource id="ds_rewordPunish">
- <c:Reference />
- <c:Params>
- <c:Param dataType="String" source="associate">
- <c:ColName>empID</c:ColName>
- <c:Associate dataSourceID="ds_baseInfo">id</c:Associate>
- </c:Param>
- </c:Params>
- </c:DataSource>
- </DataSources>
- <Schemes />
- <Styles version="1.0">
- <c:Style id="3">
- <c:Font fontName="宋体" size="16" color="#000000" bold="true" underline="false" italic="false" strikethrough="false" weight="400.0" />
- <c:Borders>
- <c:Border position="left" lineStyle="NullLine" />
- <c:Border position="top" lineStyle="NullLine" />
- <c:Border position="right" lineStyle="NullLine" />
- <c:Border position="bottom" lineStyle="NullLine" />
- <c:Border position="diagonalleft" lineStyle="NullLine" />
- <c:Border position="diagonalright" lineStyle="NullLine" />
- </c:Borders>
- <c:Interior color="#ffffff" pattern="Solid" patternColor="#000000" />
- <c:Alignment horizontal="center" vertical="middle" wrapText="false" rotate="0" shrink="false" lineSpace="0.0" clip="true" />
- <c:Protection hidden="false" locked="false" />
- </c:Style>
- <c:Style id="7">
- <c:Font fontName="宋体" size="14" color="#000000" bold="true" underline="false" italic="false" strikethrough="false" weight="400.0" />
- <c:Borders>
- <c:Border position="left" lineStyle="Single" penStyle="Solid" color="#000000" />
- <c:Border position="top" lineStyle="Single" penStyle="Solid" color="#000000" />
- <c:Border position="right" lineStyle="Single" penStyle="Solid" color="#000000" />
- <c:Border position="bottom" lineStyle="Single" penStyle="Solid" color="#000000" />
- <c:Border position="diagonalleft" lineStyle="NullLine" />
- <c:Border position="diagonalright" lineStyle="NullLine" />
- </c:Borders>
- <c:Interior color="#ffffff" pattern="Solid" patternColor="#000000" />
- <c:Alignment horizontal="left" vertical="middle" wrapText="false" rotate="0" shrink="false" lineSpace="0.0" clip="true" />
- <c:Protection hidden="false" locked="false" />
- </c:Style>
- <c:Style id="2">
- <c:Font fontName="宋体" size="9" color="#000000" bold="false" underline="false" italic="false" strikethrough="false" weight="400.0" />
- <c:Borders>
- <c:Border position="left" lineStyle="NullLine" />
- <c:Border position="top" lineStyle="NullLine" />
- <c:Border position="right" lineStyle="NullLine" />
- <c:Border position="bottom" lineStyle="NullLine" />
- <c:Border position="diagonalleft" lineStyle="NullLine" />
- <c:Border position="diagonalright" lineStyle="NullLine" />
- </c:Borders>
- <c:Interior color="#ffffff" pattern="Solid" patternColor="#000000" />
- <c:Alignment horizontal="center" vertical="middle" wrapText="false" rotate="0" shrink="false" lineSpace="0.0" clip="true" />
- <c:Protection hidden="false" locked="false" />
- </c:Style>
- <c:Style id="0">
- <c:Interior color="#ffffff" pattern="Solid" patternColor="#000000" />
- </c:Style>
- <c:Style id="14">
- <c:Font fontName="宋体" size="9" color="#000000" bold="false" underline="false" italic="false" strikethrough="false" weight="400.0" />
- <c:Borders>
- <c:Border position="left" lineStyle="Single" penStyle="Solid" color="#000000" />
- <c:Border position="top" lineStyle="Single" penStyle="Solid" color="#000000" />
- <c:Border position="right" lineStyle="Single" penStyle="Solid" color="#000000" />
- <c:Border position="bottom" lineStyle="Single" penStyle="Solid" color="#000000" />
- <c:Border position="diagonalleft" lineStyle="NullLine" />
- <c:Border position="diagonalright" lineStyle="NullLine" />
- </c:Borders>
- <c:Interior color="#ffffff" pattern="Solid" patternColor="#000000" />
- <c:Alignment horizontal="center" vertical="middle" wrapText="true" rotate="0" shrink="false" lineSpace="0.0" padding="1,1,1,1" clip="true" />
- <c:Protection hidden="false" locked="false" />
- </c:Style>
- <c:Style id="1">
- <c:Borders>
- <c:Border position="left" lineStyle="Single" penStyle="Dot" />
- <c:Border position="top" lineStyle="Single" penStyle="Dot" />
- <c:Border position="right" lineStyle="Single" penStyle="Dot" />
- <c:Border position="bottom" lineStyle="Single" penStyle="Dot" />
- </c:Borders>
- </c:Style>
- <c:Style id="6">
- <c:Font fontName="宋体" size="9" color="#000000" bold="false" underline="false" italic="false" strikethrough="false" weight="400.0" />
- <c:Borders>
- <c:Border position="left" lineStyle="NullLine" />
- <c:Border position="top" lineStyle="NullLine" />
- <c:Border position="right" lineStyle="NullLine" />
- <c:Border position="bottom" lineStyle="NullLine" />
- <c:Border position="diagonalleft" lineStyle="NullLine" />
- <c:Border position="diagonalright" lineStyle="NullLine" />
- </c:Borders>
- <c:Interior color="#ffffff" pattern="Solid" patternColor="#000000" />
- <c:Alignment horizontal="left" vertical="middle" wrapText="true" rotate="0" shrink="false" lineSpace="0.0" clip="true" />
- <c:Protection hidden="false" locked="false" />
- </c:Style>
- <c:Style id="10">
- <c:Font fontName="宋体" size="9" color="#000000" bold="false" underline="false" italic="false" strikethrough="false" weight="400.0" />
- <c:Borders>
- <c:Border position="left" lineStyle="Single" penStyle="Solid" color="#000000" />
- <c:Border position="top" lineStyle="Single" penStyle="Solid" color="#000000" />
- <c:Border position="right" lineStyle="Single" penStyle="Solid" color="#000000" />
- <c:Border position="bottom" lineStyle="Single" penStyle="Solid" color="#000000" />
- <c:Border position="diagonalleft" lineStyle="NullLine" />
- <c:Border position="diagonalright" lineStyle="NullLine" />
- </c:Borders>
- <c:Interior color="#ffffff" pattern="Solid" patternColor="#000000" />
- <c:Alignment horizontal="center" vertical="top" wrapText="true" rotate="0" shrink="false" lineSpace="0.0" clip="true" />
- <c:Protection hidden="false" locked="false" />
- </c:Style>
- <c:Style id="5">
- <c:Font fontName="宋体" size="9" color="#000000" bold="false" underline="false" italic="false" strikethrough="false" weight="400.0" />
- <c:Borders>
- <c:Border position="left" lineStyle="NullLine" />
- <c:Border position="top" lineStyle="NullLine" />
- <c:Border position="right" lineStyle="NullLine" />
- <c:Border position="bottom" lineStyle="NullLine" />
- <c:Border position="diagonalleft" lineStyle="NullLine" />
- <c:Border position="diagonalright" lineStyle="NullLine" />
- </c:Borders>
- <c:Interior color="#ffffff" pattern="Solid" patternColor="#000000" />
- <c:Alignment horizontal="left" vertical="middle" wrapText="false" rotate="0" shrink="false" lineSpace="0.0" clip="true" />
- <c:Protection hidden="false" locked="false" />
- </c:Style>
- <c:Style id="13">
- <c:Font fontName="宋体" size="14" color="#000000" bold="true" underline="false" italic="false" strikethrough="false" weight="400.0" />
- <c:Borders>
- <c:Border position="left" lineStyle="Single" penStyle="Solid" color="#000000" />
- <c:Border position="top" lineStyle="Single" penStyle="Solid" color="#000000" />
- <c:Border position="right" lineStyle="Single" penStyle="Solid" color="#000000" />
- <c:Border position="bottom" lineStyle="Single" penStyle="Solid" color="#000000" />
- <c:Border position="diagonalleft" lineStyle="NullLine" />
- <c:Border position="diagonalright" lineStyle="NullLine" />
- </c:Borders>
- <c:Interior color="#ffffff" pattern="Solid" patternColor="#000000" />
- <c:Alignment horizontal="left" vertical="middle" wrapText="false" rotate="0" shrink="false" lineSpace="0.0" padding="1,1,1,1" clip="true" />
- <c:Protection hidden="false" locked="false" />
- </c:Style>
- <c:Style id="9">
- <c:Font color="#000000" />
- <c:Borders>
- <c:Border position="left" lineStyle="Single" penStyle="Solid" color="#000000" />
- <c:Border position="top" lineStyle="Single" penStyle="Solid" color="#000000" />
- <c:Border position="right" lineStyle="Single" penStyle="Solid" color="#000000" />
- <c:Border position="bottom" lineStyle="Single" penStyle="Solid" color="#000000" />
- </c:Borders>
- <c:Interior color="#ffffff" pattern="Solid" patternColor="#000000" />
- </c:Style>
- <c:Style id="11">
- <c:Font fontName="宋体" size="9" color="#000000" bold="false" underline="false" italic="false" strikethrough="false" weight="400.0" />
- <c:Borders>
- <c:Border position="left" lineStyle="Single" penStyle="Solid" color="#000000" />
- <c:Border position="top" lineStyle="Single" penStyle="Solid" color="#000000" />
- <c:Border position="right" lineStyle="Single" penStyle="Solid" color="#000000" />
- <c:Border position="bottom" lineStyle="Single" penStyle="Solid" color="#000000" />
- <c:Border position="diagonalleft" lineStyle="NullLine" />
- <c:Border position="diagonalright" lineStyle="NullLine" />
- </c:Borders>
- <c:Interior color="#ffffff" pattern="Solid" patternColor="#000000" />
- <c:Alignment horizontal="center" vertical="middle" wrapText="false" rotate="0" shrink="false" lineSpace="0.0" padding="1,1,1,1" clip="true" />
- <c:Protection hidden="false" locked="false" />
- </c:Style>
- <c:Style id="4">
- <c:Font fontName="宋体" size="14" color="#000000" bold="true" underline="false" italic="false" strikethrough="false" weight="400.0" />
- <c:Borders>
- <c:Border position="left" lineStyle="NullLine" />
- <c:Border position="top" lineStyle="NullLine" />
- <c:Border position="right" lineStyle="NullLine" />
- <c:Border position="bottom" lineStyle="NullLine" />
- <c:Border position="diagonalleft" lineStyle="NullLine" />
- <c:Border position="diagonalright" lineStyle="NullLine" />
- </c:Borders>
- <c:Interior color="#ffffff" pattern="Solid" patternColor="#000000" />
- <c:Alignment horizontal="left" vertical="middle" wrapText="false" rotate="0" shrink="false" lineSpace="0.0" clip="true" />
- <c:Protection hidden="false" locked="false" />
- </c:Style>
- <c:Style id="8">
- <c:Font fontName="宋体" size="9" color="#000000" bold="false" underline="false" italic="false" strikethrough="false" weight="400.0" />
- <c:Borders>
- <c:Border position="left" lineStyle="Single" penStyle="Solid" color="#000000" />
- <c:Border position="top" lineStyle="Single" penStyle="Solid" color="#000000" />
- <c:Border position="right" lineStyle="Single" penStyle="Solid" color="#000000" />
- <c:Border position="bottom" lineStyle="Single" penStyle="Solid" color="#000000" />
- <c:Border position="diagonalleft" lineStyle="NullLine" />
- <c:Border position="diagonalright" lineStyle="NullLine" />
- </c:Borders>
- <c:Interior color="#ffffff" pattern="Solid" patternColor="#000000" />
- <c:Alignment horizontal="center" vertical="middle" wrapText="false" rotate="0" shrink="false" lineSpace="0.0" clip="true" />
- <c:Protection hidden="false" locked="false" />
- </c:Style>
- <c:Style id="12">
- <c:Borders>
- <c:Border position="left" lineStyle="NullLine" />
- <c:Border position="top" lineStyle="NullLine" />
- <c:Border position="right" lineStyle="NullLine" />
- <c:Border position="bottom" lineStyle="NullLine" />
- </c:Borders>
- <c:Interior color="#ffffff" pattern="Solid" patternColor="#000000" />
- </c:Style>
- </Styles>
- <Headers />
- <Footers />
- <DataObjects version="1.0">
- <DataObject name="ds_contract">
- <CommonQuery name="ds_contract">
- <Parameters>
- <Parameter name="empID" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
- </Parameters>
- <Outputs>
- <Columns>
- <Column name="employee.id" alias.zh_CN="员工ID" alias.en="" alias.zh_TW="員工ID" alias="#1" dataType="string" order="0" />
- <Column name="contractType.name" alias.zh_CN="合同类别" alias.en="" alias.zh_TW="合同類別" alias="#1" dataType="string" order="0" />
- <Column name="contractTemplet.name" alias.zh_CN="合同模板" alias.en="" alias.zh_TW="合同範本" alias="#1" dataType="string" order="0" />
- <Column name="contractNo" alias.zh_CN="合同编码" alias.en="" alias.zh_TW="合同編碼" alias="#1" dataType="string" order="0" />
- <Column name="recordDate" alias.zh_CN="签订日期" alias.en="" alias.zh_TW="簽訂日期" alias="#1" dataType="string" order="0" />
- <Column name="effectDate" alias.zh_CN="生效日期" alias.en="" alias.zh_TW="生效日期" alias="#1" dataType="string" order="0" />
- <Column name="freeDate" alias.zh_CN="解除日期" alias.en="" alias.zh_TW="解除日期" alias="#1" dataType="string" order="0" />
- <Column name="endDate" alias.zh_CN="终止日期" alias.en="" alias.zh_TW="終止日期" alias="#1" dataType="string" order="0" />
- <Column name="contractServerLimit" alias.zh_CN="服务期限" alias.en="" alias.zh_TW="服務期限" alias="#1" dataType="string" order="0" />
- </Columns>
- </Outputs>
- <Query version="1.0" type="bos.query">
- <Columns>
- <Column name="employee.id" alias.zh_CN="员工ID" alias.en="" alias.zh_TW="員工ID" alias="#1" dataType="string" />
- <Column name="contractType.name" alias.zh_CN="合同类别" alias.en="" alias.zh_TW="合同類別" alias="#1" dataType="string" />
- <Column name="contractTemplet.name" alias.zh_CN="合同模板" alias.en="" alias.zh_TW="合同範本" alias="#1" dataType="string" />
- <Column name="contractNo" alias.zh_CN="合同编码" alias.en="" alias.zh_TW="合同編碼" alias="#1" dataType="string" />
- <Column name="recordDate" alias.zh_CN="签订日期" alias.en="" alias.zh_TW="簽訂日期" alias="#1" dataType="string" />
- <Column name="effectDate" alias.zh_CN="生效日期" alias.en="" alias.zh_TW="生效日期" alias="#1" dataType="string" />
- <Column name="freeDate" alias.zh_CN="解除日期" alias.en="" alias.zh_TW="解除日期" alias="#1" dataType="string" />
- <Column name="endDate" alias.zh_CN="终止日期" alias.en="" alias.zh_TW="終止日期" alias="#1" dataType="string" />
- <Column name="contractServerLimit" alias.zh_CN="服务期限" alias.en="" alias.zh_TW="服務期限" alias="#1" dataType="string" />
- </Columns>
- <Tables />
- <Joins />
- <Orders />
- <Filter />
- <Content><![CDATA[T0005.bos-query]]></Content>
- </Query>
- <EXT />
- </CommonQuery>
- </DataObject>
- <DataObject name="ds_degree">
- <CommonQuery name="ds_degree">
- <Parameters>
- <Parameter name="empID" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
- </Parameters>
- <Outputs>
- <Columns>
- <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" />
- <Column name="diploma" alias.zh_CN="学历" alias.zh_TW="學歷" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="degree" alias.zh_CN="学位" alias.zh_TW="學位" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="isHighest" alias.zh_CN="是否最高学历" alias.zh_TW="是否最高學歷" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="graduateSchool" alias.zh_CN="毕业学校" alias.zh_TW="畢業學校" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="enrollDate" alias.zh_CN="入学时间" alias.zh_TW="入學時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="graduateDate" alias.zh_CN="毕业时间" alias.zh_TW="畢業時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="specialty" alias.zh_CN="所学专业" alias.zh_TW="所學專業" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="specialtyType" alias.zh_CN="专业类型" alias.zh_TW="專業類型" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="studyPattern" alias.zh_CN="学习形式" alias.zh_TW="學習形式" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="studyLength" alias.zh_CN="学制(年)" alias.zh_TW="學制(年)" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="degreeCountry" alias.zh_CN="学位授予国家" alias.zh_TW="學位授予國家" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="degreeUnit" alias.zh_CN="学位授予单位" alias.zh_TW="學位授予單位" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="degreeDate" alias.zh_CN="学位授予日期" alias.zh_TW="學位授予日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- </Columns>
- </Outputs>
- <Query version="1.0" type="bos.query">
- <Columns>
- <Column name="personId" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="diploma" alias.zh_CN="学历" alias.zh_TW="學歷" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="degree" alias.zh_CN="学位" alias.zh_TW="學位" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="isHighest" alias.zh_CN="是否最高学历" alias.zh_TW="是否最高學歷" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="graduateSchool" alias.zh_CN="毕业学校" alias.zh_TW="畢業學校" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="enrollDate" alias.zh_CN="入学时间" alias.zh_TW="入學時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="graduateDate" alias.zh_CN="毕业时间" alias.zh_TW="畢業時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="specialty" alias.zh_CN="所学专业" alias.zh_TW="所學專業" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="specialtyType" alias.zh_CN="专业类型" alias.zh_TW="專業類型" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="studyPattern" alias.zh_CN="学习形式" alias.zh_TW="學習形式" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="studyLength" alias.zh_CN="学制(年)" alias.zh_TW="學制(年)" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="degreeCountry" alias.zh_CN="学位授予国家" alias.zh_TW="學位授予國家" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="degreeUnit" alias.zh_CN="学位授予单位" alias.zh_TW="學位授予單位" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="degreeDate" alias.zh_CN="学位授予日期" alias.zh_TW="學位授予日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- </Columns>
- <Tables />
- <Joins />
- <Orders />
- <Filter />
- <Content><![CDATA[T0003.bos-query]]></Content>
- </Query>
- <EXT />
- </CommonQuery>
- </DataObject>
- <DataObject name="ds_communist">
- <CommonQuery name="ds_communist">
- <Parameters>
- <Parameter name="empID" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
- </Parameters>
- <Outputs>
- <Columns>
- <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" />
- <Column name="joinDate" alias.zh_CN="入党时间" alias.zh_TW="入黨時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="transDate" alias.zh_CN="党员转正时间" alias.zh_TW="黨員轉正時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="depUnit" alias.zh_CN="发展党员单位" alias.zh_TW="發展黨員單位" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="depYear" alias.zh_CN="发展党员年份" alias.zh_TW="發展黨員年份" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="joinCircs" alias.zh_CN="入党转正情况" alias.zh_TW="入黨轉正情況" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="communistDuty" alias.zh_CN="党内职务" alias.zh_TW="黨內職務" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="firstCircs" alias.zh_CN="一线情况" alias.zh_TW="一線情況" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- </Columns>
- </Outputs>
- <Query version="1.0" type="bos.query">
- <Columns>
- <Column name="empID" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="joinDate" alias.zh_CN="入党时间" alias.zh_TW="入黨時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="transDate" alias.zh_CN="党员转正时间" alias.zh_TW="黨員轉正時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="depUnit" alias.zh_CN="发展党员单位" alias.zh_TW="發展黨員單位" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="depYear" alias.zh_CN="发展党员年份" alias.zh_TW="發展黨員年份" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="joinCircs" alias.zh_CN="入党转正情况" alias.zh_TW="入黨轉正情況" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="communistDuty" alias.zh_CN="党内职务" alias.zh_TW="黨內職務" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="firstCircs" alias.zh_CN="一线情况" alias.zh_TW="一線情況" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- </Columns>
- <Tables />
- <Joins />
- <Orders />
- <Filter />
- <Content><![CDATA[T0012.bos-query]]></Content>
- </Query>
- <EXT />
- </CommonQuery>
- </DataObject>
- <DataObject name="ds_primaryPosition">
- <CommonQuery name="ds_primaryPosition">
- <Parameters>
- <Parameter name="empID" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
- </Parameters>
- <Outputs>
- <Columns>
- <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" />
- <Column name="employeeType" alias.zh_CN="员工类别" alias.zh_TW="員工類別" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="adminOrgUnit" alias.zh_CN="所属组织单元" alias.zh_TW="所屬組織單元" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="position" alias.zh_CN="职位" alias.zh_TW="職位" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="job" alias.zh_CN="职务" alias.zh_TW="職務" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="jobLevel" alias.zh_CN="职级" alias.zh_TW="職級" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="enterDate" alias.zh_CN="入职日期" alias.zh_TW="入職日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="tryoutMonth" alias.zh_CN="试用期(月)" alias.zh_TW="試用期(月)" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="formalDate" alias.zh_CN="转正日期" alias.zh_TW="轉正日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="joinGroupDate" alias.zh_CN="入集团日期" alias.zh_TW="入集團日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="joinGroupYears" alias.zh_CN="集团服务年限" alias.zh_TW="集團服務年限" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="joinDate" alias.zh_CN="入司日期" alias.zh_TW="入司日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="joinCompanyYears" alias.zh_CN="公司服务年限" alias.zh_TW="公司服務年限" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="baseDate" alias.zh_CN="任职开始日期" alias.zh_TW="任職開始日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="quitDate" alias.zh_CN="任职结束日期" alias.zh_TW="任職結束日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="joinBaseYears" alias.zh_CN="担任本职位时间" alias.zh_TW="擔任本職位時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- </Columns>
- </Outputs>
- <Query version="1.0" type="bos.query">
- <Columns>
- <Column name="id" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="employeeType" alias.zh_CN="员工类别" alias.zh_TW="員工類別" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="adminOrgUnit" alias.zh_CN="所属组织单元" alias.zh_TW="所屬組織單元" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="position" alias.zh_CN="职位" alias.zh_TW="職位" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="job" alias.zh_CN="职务" alias.zh_TW="職務" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="jobLevel" alias.zh_CN="职级" alias.zh_TW="職級" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="enterDate" alias.zh_CN="入职日期" alias.zh_TW="入職日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="tryoutMonth" alias.zh_CN="试用期(月)" alias.zh_TW="試用期(月)" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="formalDate" alias.zh_CN="转正日期" alias.zh_TW="轉正日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="joinGroupDate" alias.zh_CN="入集团日期" alias.zh_TW="入集團日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="joinGroupYears" alias.zh_CN="集团服务年限" alias.zh_TW="集團服務年限" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="joinDate" alias.zh_CN="入司日期" alias.zh_TW="入司日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="joinCompanyYears" alias.zh_CN="公司服务年限" alias.zh_TW="公司服務年限" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="baseDate" alias.zh_CN="任职开始日期" alias.zh_TW="任職開始日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="quitDate" alias.zh_CN="任职结束日期" alias.zh_TW="任職結束日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="joinBaseYears" alias.zh_CN="担任本职位时间" alias.zh_TW="擔任本職位時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- </Columns>
- <Tables />
- <Joins />
- <Orders />
- <Filter />
- <Content><![CDATA[T0002.bos-query]]></Content>
- </Query>
- <EXT />
- </CommonQuery>
- </DataObject>
- <DataObject name="ds_benefit">
- <CommonQuery name="ds_benefit">
- <Parameters>
- <Parameter name="personID" alias="#1" desc="#1" dataType="string" allowNull="false" />
- </Parameters>
- <Outputs>
- <Columns>
- <Column name="personID" alias.zh_CN="职员ID" alias.en="" alias.zh_TW="職員ID" alias="#1" dataType="string" order="0" />
- <Column name="accounts" alias.zh_CN="帐号" alias.en="" alias.zh_TW="帳號" alias="#1" dataType="string" order="0" />
- <Column name="accountTypeName" alias.zh_CN="账户类型" alias.en="" alias.zh_TW="賬戶類型" alias="#1" dataType="string" order="0" />
- <Column name="benefitName" alias.zh_CN="险种项目名" alias.en="" alias.zh_TW="險種項目名" alias="#1" dataType="string" order="0" />
- <Column name="benefitValue" alias.zh_CN="险种项目基数值" alias.en="" alias.zh_TW="險種項目基數值" alias="#1" dataType="string" order="0" />
- </Columns>
- </Outputs>
- <Query version="1.0" type="bos.query">
- <Columns>
- <Column name="personID" alias.zh_CN="职员ID" alias.en="" alias.zh_TW="職員ID" alias="#1" dataType="string" />
- <Column name="accounts" alias.zh_CN="帐号" alias.en="" alias.zh_TW="帳號" alias="#1" dataType="string" />
- <Column name="accountTypeName" alias.zh_CN="账户类型" alias.en="" alias.zh_TW="賬戶類型" alias="#1" dataType="string" />
- <Column name="benefitName" alias.zh_CN="险种项目名" alias.en="" alias.zh_TW="險種項目名" alias="#1" dataType="string" />
- <Column name="benefitValue" alias.zh_CN="险种项目基数值" alias.en="" alias.zh_TW="險種項目基數值" alias="#1" dataType="string" />
- </Columns>
- <Tables />
- <Joins />
- <Orders />
- <Filter />
- <Content><![CDATA[T0019.bos-query]]></Content>
- </Query>
- <EXT />
- </CommonQuery>
- </DataObject>
- <DataObject name="ds_resource">
- <CommonQuery name="ds_resource">
- <Parameters>
- <Parameter name="empID" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
- </Parameters>
- <Outputs>
- <Columns>
- <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" />
- <Column name="resourceNumber" alias.zh_CN="编码" alias.zh_TW="編碼" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="resourceName" alias.zh_CN="名称" alias.zh_TW="名稱" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="remark" alias.zh_CN="描述" alias.zh_TW="描述" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- </Columns>
- </Outputs>
- <Query version="1.0" type="bos.query">
- <Columns>
- <Column name="empID" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="resourceNumber" alias.zh_CN="编码" alias.zh_TW="編碼" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="resourceName" alias.zh_CN="名称" alias.zh_TW="名稱" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="remark" alias.zh_CN="描述" alias.zh_TW="描述" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- </Columns>
- <Tables />
- <Joins />
- <Orders />
- <Filter />
- <Content><![CDATA[T0015.bos-query]]></Content>
- </Query>
- <EXT />
- </CommonQuery>
- </DataObject>
- <DataObject name="ds_baseInfo">
- <CommonQuery name="ds_baseInfo">
- <Outputs>
- <Columns>
- <Column name="imagedata" alias.zh_CN="员工照片" alias.en="" alias.zh_TW="員工照片" alias="#1" dataType="string" order="0" />
- <Column name="id" alias.zh_CN="员工ID" alias.en="" alias.zh_TW="員工ID" alias="#1" dataType="string" order="0" />
- <Column name="number" alias.zh_CN="员工编码" alias.en="" alias.zh_TW="員工編碼" alias="#1" dataType="string" order="0" />
- <Column name="name" alias.zh_CN="姓名" alias.en="" alias.zh_TW="姓名" alias="#1" dataType="string" order="0" />
- <Column name="oldName" alias.zh_CN="曾用名" alias.en="" alias.zh_TW="曾用名" alias="#1" dataType="string" order="0" />
- <Column name="positionName" alias.zh_CN="职位" alias.en="" alias.zh_TW="職位" alias="#1" dataType="string" order="0" />
- <Column name="adminOrgUnitName" alias.zh_CN="所属组织单元" alias.en="" alias.zh_TW="所屬組織單元" alias="#1" dataType="string" order="0" />
- <Column name="idCardNO" alias.zh_CN="身份证号码" alias.en="" alias.zh_TW="身份證號碼" alias="#1" dataType="string" order="0" />
- <Column name="gender" alias.zh_CN="性别" alias.en="" alias.zh_TW="性別" alias="#1" dataType="string" order="0" />
- <Column name="passportNO" alias.zh_CN="护照号码" alias.en="" alias.zh_TW="護照號碼" alias="#1" dataType="string" order="0" />
- <Column name="birthday" alias.zh_CN="出生日期" alias.en="" alias.zh_TW="出生日期" alias="#1" dataType="string" order="0" />
- <Column name="folk" alias.zh_CN="民族" alias.en="" alias.zh_TW="民族" alias="#1" dataType="string" order="0" />
- <Column name="height" alias.zh_CN="身高" alias.en="" alias.zh_TW="身高" alias="#1" dataType="string" order="0" />
- <Column name="bloodType" alias.zh_CN="血型" alias.en="" alias.zh_TW="血型" alias="#1" dataType="string" order="0" />
- <Column name="health" alias.zh_CN="健康状况" alias.en="" alias.zh_TW="健康狀況" alias="#1" dataType="string" order="0" />
- <Column name="wed" alias.zh_CN="婚姻状况" alias.en="" alias.zh_TW="婚姻狀況" alias="#1" dataType="string" order="0" />
- <Column name="birth" alias.zh_CN="家庭出身" alias.en="" alias.zh_TW="家庭出身" alias="#1" dataType="string" order="0" />
- <Column name="standing" alias.zh_CN="个人成分" alias.en="" alias.zh_TW="個人成分" alias="#1" dataType="string" order="0" />
- <Column name="politicalFace" alias.zh_CN="政治面貌" alias.en="" alias.zh_TW="政治面貌" alias="#1" dataType="string" order="0" />
- <Column name="hightestDegree" alias.zh_CN="最高学历" alias.en="" alias.zh_TW="最高學歷" alias="#1" dataType="string" order="0" />
- <Column name="hightestTechnicalPost" alias.zh_CN="最高职称" alias.en="" alias.zh_TW="最高職稱" alias="#1" dataType="string" order="0" />
- <Column name="provinceCityAddress" alias.zh_CN="籍贯" alias.en="" alias.zh_TW="籍貫" alias="#1" dataType="string" order="0" />
- <Column name="JobGradeName" alias.zh_CN="职等" alias.en="" alias.zh_TW="職等" alias="#1" dataType="string" order="0" />
- <Column name="jobStartDate" alias.zh_CN="参加工作日期" alias.en="" alias.zh_TW="參加工作日期" alias="#1" dataType="string" order="0" />
- <Column name="employeeClassifyName" alias.zh_CN="人员类型" alias.en="" alias.zh_TW="人員類型" alias="#1" dataType="string" order="0" />
- <Column name="hrOrgUnitName" alias.zh_CN="HR组织名称" alias.en="" alias.zh_TW="HR組織名稱" alias="#1" dataType="string" order="0" />
- </Columns>
- </Outputs>
- <Query version="1.0" type="bos.query">
- <Columns>
- <Column name="imagedata" alias.zh_CN="员工照片" alias.en="" alias.zh_TW="員工照片" alias="#1" dataType="string" />
- <Column name="id" alias.zh_CN="员工ID" alias.en="" alias.zh_TW="員工ID" alias="#1" dataType="string" />
- <Column name="number" alias.zh_CN="员工编码" alias.en="" alias.zh_TW="員工編碼" alias="#1" dataType="string" />
- <Column name="name" alias.zh_CN="姓名" alias.en="" alias.zh_TW="姓名" alias="#1" dataType="string" />
- <Column name="oldName" alias.zh_CN="曾用名" alias.en="" alias.zh_TW="曾用名" alias="#1" dataType="string" />
- <Column name="positionName" alias.zh_CN="职位" alias.en="" alias.zh_TW="職位" alias="#1" dataType="string" />
- <Column name="adminOrgUnitName" alias.zh_CN="所属组织单元" alias.en="" alias.zh_TW="所屬組織單元" alias="#1" dataType="string" />
- <Column name="idCardNO" alias.zh_CN="身份证号码" alias.en="" alias.zh_TW="身份證號碼" alias="#1" dataType="string" />
- <Column name="gender" alias.zh_CN="性别" alias.en="" alias.zh_TW="性別" alias="#1" dataType="string" />
- <Column name="passportNO" alias.zh_CN="护照号码" alias.en="" alias.zh_TW="護照號碼" alias="#1" dataType="string" />
- <Column name="birthday" alias.zh_CN="出生日期" alias.en="" alias.zh_TW="出生日期" alias="#1" dataType="string" />
- <Column name="folk" alias.zh_CN="民族" alias.en="" alias.zh_TW="民族" alias="#1" dataType="string" />
- <Column name="height" alias.zh_CN="身高" alias.en="" alias.zh_TW="身高" alias="#1" dataType="string" />
- <Column name="bloodType" alias.zh_CN="血型" alias.en="" alias.zh_TW="血型" alias="#1" dataType="string" />
- <Column name="health" alias.zh_CN="健康状况" alias.en="" alias.zh_TW="健康狀況" alias="#1" dataType="string" />
- <Column name="wed" alias.zh_CN="婚姻状况" alias.en="" alias.zh_TW="婚姻狀況" alias="#1" dataType="string" />
- <Column name="birth" alias.zh_CN="家庭出身" alias.en="" alias.zh_TW="家庭出身" alias="#1" dataType="string" />
- <Column name="standing" alias.zh_CN="个人成分" alias.en="" alias.zh_TW="個人成分" alias="#1" dataType="string" />
- <Column name="politicalFace" alias.zh_CN="政治面貌" alias.en="" alias.zh_TW="政治面貌" alias="#1" dataType="string" />
- <Column name="hightestDegree" alias.zh_CN="最高学历" alias.en="" alias.zh_TW="最高學歷" alias="#1" dataType="string" />
- <Column name="hightestTechnicalPost" alias.zh_CN="最高职称" alias.en="" alias.zh_TW="最高職稱" alias="#1" dataType="string" />
- <Column name="provinceCityAddress" alias.zh_CN="籍贯" alias.en="" alias.zh_TW="籍貫" alias="#1" dataType="string" />
- <Column name="JobGradeName" alias.zh_CN="职等" alias.en="" alias.zh_TW="職等" alias="#1" dataType="string" />
- <Column name="jobStartDate" alias.zh_CN="参加工作日期" alias.en="" alias.zh_TW="參加工作日期" alias="#1" dataType="string" />
- <Column name="employeeClassifyName" alias.zh_CN="人员类型" alias.en="" alias.zh_TW="人員類型" alias="#1" dataType="string" />
- <Column name="hrOrgUnitName" alias.zh_CN="HR组织名称" alias.en="" alias.zh_TW="HR組織名稱" alias="#1" dataType="string" />
- </Columns>
- <Tables />
- <Joins />
- <Orders />
- <Filter />
- <Content><![CDATA[T0001.bos-query]]></Content>
- </Query>
- <EXT />
- </CommonQuery>
- </DataObject>
- <DataObject name="ds_linkMen">
- <CommonQuery name="ds_linkMen">
- <Parameters>
- <Parameter name="empID" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
- </Parameters>
- <Outputs>
- <Columns>
- <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" />
- <Column name="linkManName" alias.zh_CN="紧急联系人姓名" alias.zh_TW="緊急聯繫人姓名" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="phoneNumber" alias.zh_CN="电话" alias.zh_TW="電話" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="bloodType" alias.zh_CN="血型" alias.zh_TW="血型" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="remark" alias.zh_CN="备注" alias.zh_TW="備註" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- </Columns>
- </Outputs>
- <Query version="1.0" type="bos.query">
- <Columns>
- <Column name="empID" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="linkManName" alias.zh_CN="紧急联系人姓名" alias.zh_TW="緊急聯繫人姓名" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="phoneNumber" alias.zh_CN="电话" alias.zh_TW="電話" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="bloodType" alias.zh_CN="血型" alias.zh_TW="血型" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="remark" alias.zh_CN="备注" alias.zh_TW="備註" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- </Columns>
- <Tables />
- <Joins />
- <Orders />
- <Filter />
- <Content><![CDATA[T0009.bos-query]]></Content>
- </Query>
- <EXT />
- </CommonQuery>
- </DataObject>
- <DataObject name="ds_workExp">
- <CommonQuery name="ds_workExp">
- <Parameters>
- <Parameter name="empID" alias="#1" desc="#1" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
- <Parameter name="DATESORT" alias="#1" desc="#1" dataType="string" allowNull="true" defaultValue="asc" />
- </Parameters>
- <Outputs>
- <Columns>
- <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" />
- <Column name="beginDate" alias.zh_CN="开始日期" alias.zh_TW="開始日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="endDate" alias.zh_CN="结束日期" alias.zh_TW="結束日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="unitName" alias.zh_CN="单位名称" alias.zh_TW="單位名稱" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="unitType.name" alias.zh_CN="单位性质" alias.zh_TW="單位性質" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="personQuantity" alias.zh_CN="单位人数" alias.zh_TW="單位人數" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="unitAddress" alias.zh_CN="单位地址" alias.zh_TW="單位地址" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="workDept" alias.zh_CN="任职部门" alias.zh_TW="任職部門" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="job" alias.zh_CN="担任职务" alias.zh_TW="擔任職務" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="specialtyType.name" alias.zh_CN="专业类型" alias.zh_TW="專業類型" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="subordinateQuantity" alias.zh_CN="下属人数" alias.zh_TW="下屬人數" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="salary" alias.zh_CN="工资" alias.zh_TW="工資" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="dimission" alias.zh_CN="离职原因" alias.zh_TW="離職原因" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="linkman" alias.zh_CN="证明人" alias.zh_TW="證明人" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="linkmanPhone" alias.zh_CN="证明人电话" alias.zh_TW="證明人電話" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="remark" alias.zh_CN="备注" alias.zh_TW="備註" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- </Columns>
- </Outputs>
- <Query version="1.0" type="bos.query">
- <Columns>
- <Column name="Person.id" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="beginDate" alias.zh_CN="开始日期" alias.zh_TW="開始日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="endDate" alias.zh_CN="结束日期" alias.zh_TW="結束日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="unitName" alias.zh_CN="单位名称" alias.zh_TW="單位名稱" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="unitType.name" alias.zh_CN="单位性质" alias.zh_TW="單位性質" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="personQuantity" alias.zh_CN="单位人数" alias.zh_TW="單位人數" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="unitAddress" alias.zh_CN="单位地址" alias.zh_TW="單位地址" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="workDept" alias.zh_CN="任职部门" alias.zh_TW="任職部門" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="job" alias.zh_CN="担任职务" alias.zh_TW="擔任職務" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="specialtyType.name" alias.zh_CN="专业类型" alias.zh_TW="專業類型" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="subordinateQuantity" alias.zh_CN="下属人数" alias.zh_TW="下屬人數" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="salary" alias.zh_CN="工资" alias.zh_TW="工資" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="dimission" alias.zh_CN="离职原因" alias.zh_TW="離職原因" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="linkman" alias.zh_CN="证明人" alias.zh_TW="證明人" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="linkmanPhone" alias.zh_CN="证明人电话" alias.zh_TW="證明人電話" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="remark" alias.zh_CN="备注" alias.zh_TW="備註" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- </Columns>
- <Tables />
- <Joins />
- <Orders />
- <Filter />
- <Content><![CDATA[T0007.bos-query]]></Content>
- </Query>
- <EXT />
- </CommonQuery>
- </DataObject>
- <DataObject name="ds_family">
- <CommonQuery name="ds_family">
- <Parameters>
- <Parameter name="empID" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
- </Parameters>
- <Outputs>
- <Columns>
- <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" />
- <Column name="name" alias.zh_CN="姓名" alias.zh_TW="姓名" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="relation" alias.zh_CN="与本人关系" alias.zh_TW="與本人關係" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="workUnit" alias.zh_CN="工作单位及职位" alias.zh_TW="工作單位及職位" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="officePhone" alias.zh_CN="单位联系电话" alias.zh_TW="單位聯繫電話" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="homeAddress" alias.zh_CN="家庭住址" alias.zh_TW="家庭住址" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="homePhone" alias.zh_CN="家庭联系电话" alias.zh_TW="家庭聯繫電話" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="diploma" alias.zh_CN="学历" alias.zh_TW="學歷" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="politicalFace" alias.zh_CN="政治面貌" alias.zh_TW="政治面貌" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="birthday" alias.zh_CN="出生日期" alias.zh_TW="出生日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="specDuty" alias.zh_CN="专业技术职务" alias.en="" alias.zh_TW="專業技術職務" alias="#1" dataType="string" order="0" />
- </Columns>
- </Outputs>
- <Query version="1.0" type="bos.query">
- <Columns>
- <Column name="Person.id" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="name" alias.zh_CN="姓名" alias.zh_TW="姓名" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="relation" alias.zh_CN="与本人关系" alias.zh_TW="與本人關係" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="workUnit" alias.zh_CN="工作单位及职位" alias.zh_TW="工作單位及職位" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="officePhone" alias.zh_CN="单位联系电话" alias.zh_TW="單位聯繫電話" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="homeAddress" alias.zh_CN="家庭住址" alias.zh_TW="家庭住址" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="homePhone" alias.zh_CN="家庭联系电话" alias.zh_TW="家庭聯繫電話" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="diploma" alias.zh_CN="学历" alias.zh_TW="學歷" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="politicalFace" alias.zh_CN="政治面貌" alias.zh_TW="政治面貌" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="birthday" alias.zh_CN="出生日期" alias.zh_TW="出生日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="specDuty" alias.zh_CN="专业技术职务" alias.en="" alias.zh_TW="專業技術職務" alias="#1" dataType="string" />
- </Columns>
- <Tables />
- <Joins />
- <Orders />
- <Filter />
- <Content><![CDATA[T0010.bos-query]]></Content>
- </Query>
- <EXT />
- </CommonQuery>
- </DataObject>
- <DataObject name="ds_language">
- <CommonQuery name="ds_language">
- <Parameters>
- <Parameter name="empID" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
- </Parameters>
- <Outputs>
- <Columns>
- <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" />
- <Column name="language" alias.zh_CN="语言" alias.zh_TW="語言" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="grade" alias.zh_CN="熟练程度" alias.zh_TW="熟練程度" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- </Columns>
- </Outputs>
- <Query version="1.0" type="bos.query">
- <Columns>
- <Column name="empID" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="language" alias.zh_CN="语言" alias.zh_TW="語言" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="grade" alias.zh_CN="熟练程度" alias.zh_TW="熟練程度" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- </Columns>
- <Tables />
- <Joins />
- <Orders />
- <Filter />
- <Content><![CDATA[T0004.bos-query]]></Content>
- </Query>
- <EXT />
- </CommonQuery>
- </DataObject>
- <DataObject name="ds_archive">
- <CommonQuery name="ds_archive">
- <Parameters>
- <Parameter name="empID" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
- </Parameters>
- <Outputs>
- <Columns>
- <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" />
- <Column name="number" alias.zh_CN="档案编号" alias.zh_TW="檔案編號" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="type" alias.zh_CN="档案类型" alias.zh_TW="檔案類型" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="archivesPlace" alias.zh_CN="档案存放地点" alias.zh_TW="檔案存放地點" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="source" alias.zh_CN="档案来源" alias.zh_TW="檔案來源" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="destination" alias.zh_CN="档案去处" alias.zh_TW="檔案去處" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="inDate" alias.zh_CN="档案转入时间" alias.zh_TW="檔案轉入時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="outDate" alias.zh_CN="档案转出时间" alias.zh_TW="檔案轉出時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="remark" alias.zh_CN="备注" alias.zh_TW="備註" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- </Columns>
- </Outputs>
- <Query version="1.0" type="bos.query">
- <Columns>
- <Column name="empID" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="number" alias.zh_CN="档案编号" alias.zh_TW="檔案編號" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="type" alias.zh_CN="档案类型" alias.zh_TW="檔案類型" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="archivesPlace" alias.zh_CN="档案存放地点" alias.zh_TW="檔案存放地點" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="source" alias.zh_CN="档案来源" alias.zh_TW="檔案來源" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="destination" alias.zh_CN="档案去处" alias.zh_TW="檔案去處" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="inDate" alias.zh_CN="档案转入时间" alias.zh_TW="檔案轉入時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="outDate" alias.zh_CN="档案转出时间" alias.zh_TW="檔案轉出時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="remark" alias.zh_CN="备注" alias.zh_TW="備註" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- </Columns>
- <Tables />
- <Joins />
- <Orders />
- <Filter />
- <Content><![CDATA[T0008.bos-query]]></Content>
- </Query>
- <EXT />
- </CommonQuery>
- </DataObject>
- <DataObject name="ds_compet">
- <CommonQuery name="ds_compet">
- <Parameters>
- <Parameter name="empID" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
- </Parameters>
- <Outputs>
- <Columns>
- <Column name="person.id" alias.zh_CN="员工ID" alias.en="" alias.zh_TW="員工ID" alias="#1" dataType="string" order="0" />
- <Column name="empCompetIndex" alias.zh_CN="素质指标" alias.en="" alias.zh_TW="素質指標" alias="#1" dataType="string" order="0" />
- <Column name="competIndexType" alias.zh_CN="能力素质类型" alias.en="" alias.zh_TW="能力素質類型" alias="#1" dataType="string" order="0" />
- <Column name="indexGrade" alias.zh_CN="个人素质级别" alias.en="" alias.zh_TW="個人素質級別" alias="#1" dataType="string" order="0" />
- <Column name="description" alias.zh_CN="描述" alias.en="" alias.zh_TW="描述" alias="#1" dataType="string" order="0" />
- <Column name="CompetIndexGrade.description" alias.zh_CN="行为描述" alias.en="" alias.zh_TW="行為描述" alias="#1" dataType="string" order="0" />
- </Columns>
- </Outputs>
- <Query version="1.0" type="bos.query">
- <Columns>
- <Column name="person.id" alias.zh_CN="员工ID" alias.en="" alias.zh_TW="員工ID" alias="#1" dataType="string" />
- <Column name="empCompetIndex" alias.zh_CN="素质指标" alias.en="" alias.zh_TW="素質指標" alias="#1" dataType="string" />
- <Column name="competIndexType" alias.zh_CN="能力素质类型" alias.en="" alias.zh_TW="能力素質類型" alias="#1" dataType="string" />
- <Column name="indexGrade" alias.zh_CN="个人素质级别" alias.en="" alias.zh_TW="個人素質級別" alias="#1" dataType="string" />
- <Column name="description" alias.zh_CN="描述" alias.en="" alias.zh_TW="描述" alias="#1" dataType="string" />
- <Column name="CompetIndexGrade.description" alias.zh_CN="行为描述" alias.en="" alias.zh_TW="行為描述" alias="#1" dataType="string" />
- </Columns>
- <Tables />
- <Joins />
- <Orders />
- <Filter />
- <Content><![CDATA[T0014.bos-query]]></Content>
- </Query>
- <EXT />
- </CommonQuery>
- </DataObject>
- <DataObject name="ds_train">
- <CommonQuery name="ds_train">
- <Parameters>
- <Parameter name="empID" alias="#1" desc="#1" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
- </Parameters>
- <Outputs>
- <Columns>
- <Column name="trainCourse" alias.zh_CN="培训课程" alias.en="" alias.zh_TW="培訓課程" alias="#1" dataType="string" order="0" />
- <Column name="beginDateTime" alias.zh_CN="课程开始时间" alias.en="" alias.zh_TW="課程開始時間" alias="#1" dataType="datetime" order="0" />
- <Column name="endDateTime" alias.zh_CN="课程结束时间" alias.en="" alias.zh_TW="課程結束時間" alias="#1" dataType="datetime" order="0" />
- <Column name="trainMethod" alias.zh_CN="培训方式" alias.en="" alias.zh_TW="培訓方式" alias="#1" dataType="string" order="0" />
- <Column name="courseCertificateName" alias.zh_CN="证书名称" alias.en="" alias.zh_TW="證書名稱" alias="#1" dataType="string" order="0" />
- </Columns>
- </Outputs>
- <Query version="1.0" type="bos.query">
- <Columns>
- <Column name="trainCourse" alias.zh_CN="培训课程" alias.en="" alias.zh_TW="培訓課程" alias="#1" dataType="string" />
- <Column name="beginDateTime" alias.zh_CN="课程开始时间" alias.en="" alias.zh_TW="課程開始時間" alias="#1" dataType="datetime" />
- <Column name="endDateTime" alias.zh_CN="课程结束时间" alias.en="" alias.zh_TW="課程結束時間" alias="#1" dataType="datetime" />
- <Column name="trainMethod" alias.zh_CN="培训方式" alias.en="" alias.zh_TW="培訓方式" alias="#1" dataType="string" />
- <Column name="courseCertificateName" alias.zh_CN="证书名称" alias.en="" alias.zh_TW="證書名稱" alias="#1" dataType="string" />
- </Columns>
- <Tables />
- <Joins />
- <Orders />
- <Filter />
- <Content><![CDATA[T0018.bos-query]]></Content>
- </Query>
- <EXT />
- </CommonQuery>
- </DataObject>
- <DataObject name="ds_post">
- <CommonQuery name="ds_post">
- <Parameters>
- <Parameter name="empID" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
- </Parameters>
- <Outputs>
- <Columns>
- <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" />
- <Column name="technicalPost" alias.zh_CN="职称名称" alias.zh_TW="職稱名稱" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="category" alias.zh_CN="职称类别" alias.zh_TW="職稱類別" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="level" alias.zh_CN="职称级别" alias.zh_TW="職稱級別" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="isHighestPost" alias.zh_CN="是否最高职称" alias.zh_TW="是否最高職稱" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="technicalCont" alias.zh_CN="职称内容" alias.zh_TW="職稱內容" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="gradeUnit" alias.zh_CN="评定单位" alias.zh_TW="評定單位" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="conferDate" alias.zh_CN="授予时间" alias.zh_TW="授予時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="certificateNo" alias.zh_CN="证书编号" alias.zh_TW="證書編號" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="description" alias.zh_CN="备注" alias.zh_TW="備註" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- </Columns>
- </Outputs>
- <Query version="1.0" type="bos.query">
- <Columns>
- <Column name="person.id" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="technicalPost" alias.zh_CN="职称名称" alias.zh_TW="職稱名稱" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="category" alias.zh_CN="职称类别" alias.zh_TW="職稱類別" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="level" alias.zh_CN="职称级别" alias.zh_TW="職稱級別" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="isHighestPost" alias.zh_CN="是否最高职称" alias.zh_TW="是否最高職稱" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="technicalCont" alias.zh_CN="职称内容" alias.zh_TW="職稱內容" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="gradeUnit" alias.zh_CN="评定单位" alias.zh_TW="評定單位" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="conferDate" alias.zh_CN="授予时间" alias.zh_TW="授予時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="certificateNo" alias.zh_CN="证书编号" alias.zh_TW="證書編號" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="description" alias.zh_CN="备注" alias.zh_TW="備註" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- </Columns>
- <Tables />
- <Joins />
- <Orders />
- <Filter />
- <Content><![CDATA[T0016.bos-query]]></Content>
- </Query>
- <EXT />
- </CommonQuery>
- </DataObject>
- <DataObject name="ds_certificate">
- <CommonQuery name="ds_certificate">
- <Parameters>
- <Parameter name="empID" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
- </Parameters>
- <Outputs>
- <Columns>
- <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" />
- <Column name="certificateNumber" alias.zh_CN="证书编号" alias.zh_TW="證書編號" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="certificateName" alias.zh_CN="认证名称" alias.zh_TW="認證名稱" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="certificateDate" alias.zh_CN="认证日期" alias.zh_TW="認證日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="certificateValidityYear" alias.zh_CN="认证有效期(年)" alias.zh_TW="認證有效期(年)" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="certificateOrgan" alias.zh_CN="认证机构" alias.zh_TW="認證機構" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="certificateLevel" alias.zh_CN="认证级别" alias.zh_TW="認證級別" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- </Columns>
- </Outputs>
- <Query version="1.0" type="bos.query">
- <Columns>
- <Column name="empID" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="certificateNumber" alias.zh_CN="证书编号" alias.zh_TW="證書編號" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="certificateName" alias.zh_CN="认证名称" alias.zh_TW="認證名稱" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="certificateDate" alias.zh_CN="认证日期" alias.zh_TW="認證日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="certificateValidityYear" alias.zh_CN="认证有效期(年)" alias.zh_TW="認證有效期(年)" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="certificateOrgan" alias.zh_CN="认证机构" alias.zh_TW="認證機構" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="certificateLevel" alias.zh_CN="认证级别" alias.zh_TW="認證級別" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- </Columns>
- <Tables />
- <Joins />
- <Orders />
- <Filter />
- <Content><![CDATA[T0011.bos-query]]></Content>
- </Query>
- <EXT />
- </CommonQuery>
- </DataObject>
- <DataObject name="ds_workExpCur">
- <CommonQuery name="ds_workExpCur">
- <Parameters>
- <Parameter name="empID" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
- </Parameters>
- <Outputs>
- <Columns>
- <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" />
- <Column name="position.name" alias.zh_CN="职位" alias.zh_TW="職位" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="job.name" alias.zh_CN="职务" alias.zh_TW="職務" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="jobLevel.name" alias.zh_CN="职级" alias.zh_TW="職級" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="AdminOrgUnit.name" alias.zh_CN="所属组织单元" alias.zh_TW="所屬組織單元" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="beginDate" alias.zh_CN="任职开始日期" alias.zh_TW="任職開始日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="endDate" alias.zh_CN="任职结束日期" alias.zh_TW="任職結束日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- </Columns>
- </Outputs>
- <Query version="1.0" type="bos.query">
- <Columns>
- <Column name="person.id" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="position.name" alias.zh_CN="职位" alias.zh_TW="職位" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="job.name" alias.zh_CN="职务" alias.zh_TW="職務" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="jobLevel.name" alias.zh_CN="职级" alias.zh_TW="職級" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="AdminOrgUnit.name" alias.zh_CN="所属组织单元" alias.zh_TW="所屬組織單元" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="beginDate" alias.zh_CN="任职开始日期" alias.zh_TW="任職開始日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="endDate" alias.zh_CN="任职结束日期" alias.zh_TW="任職結束日期" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- </Columns>
- <Tables />
- <Joins />
- <Orders />
- <Filter />
- <Content><![CDATA[T0017.bos-query]]></Content>
- </Query>
- <EXT />
- </CommonQuery>
- </DataObject>
- <DataObject name="ds_contactMethod">
- <CommonQuery name="ds_contactMethod">
- <Parameters>
- <Parameter name="empID" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
- </Parameters>
- <Outputs>
- <Columns>
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- </Columns>
- </Outputs>
- <Query version="1.0" type="bos.query">
- <Columns>
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- </Columns>
- <Tables />
- <Joins />
- <Orders />
- <Filter />
- <Content><![CDATA[T0013.bos-query]]></Content>
- </Query>
- <EXT />
- </CommonQuery>
- </DataObject>
- <DataObject name="ds_rewordPunish">
- <CommonQuery name="ds_rewordPunish">
- <Parameters>
- <Parameter name="empID" dataType="string" allowNull="false" defaultValue="[ds_baseInfo].[id]" />
- </Parameters>
- <Outputs>
- <Columns>
- <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" />
- <Column name="occurTitle" alias.zh_CN="奖惩信息标题" alias.zh_TW="獎懲信息標題" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="occurType" alias.zh_CN="奖惩类型" alias.zh_TW="獎懲類型" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="occurContent" alias.zh_CN="奖惩内容" alias.zh_TW="獎懲內容" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- <Column name="occurDate" alias.zh_CN="奖惩时间" alias.zh_TW="獎懲時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" order="0" />
- </Columns>
- </Outputs>
- <Query version="1.0" type="bos.query">
- <Columns>
- <Column name="empID" alias.zh_CN="员工ID" alias.zh_TW="員工ID" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="occurTitle" alias.zh_CN="奖惩信息标题" alias.zh_TW="獎懲信息標題" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="occurType" alias.zh_CN="奖惩类型" alias.zh_TW="獎懲類型" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="occurContent" alias.zh_CN="奖惩内容" alias.zh_TW="獎懲內容" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- <Column name="occurDate" alias.zh_CN="奖惩时间" alias.zh_TW="獎懲時間" alias="#1" desc.zh_TW="" desc.zh_CN="" desc="#1" dataType="string" />
- </Columns>
- <Tables />
- <Joins />
- <Orders />
- <Filter />
- <Content><![CDATA[T0006.bos-query]]></Content>
- </Query>
- <EXT />
- </CommonQuery>
- </DataObject>
- </DataObjects>
- <Form id="form1" alias="职员花名册模板" version="3.1">
- <f:Page id="page1" alias="页1" styleID="0" repeat="-1">
- <f:DesignedPage paperSize="Custom" objWidth="1720" objHeight="4600" widthLimitless="false" heightLimitless="true" />
- <f:Area id="loop1" alias="循环区1" styleID="1" left="[page1.left]" right="[page1.right]" top="[page1.top]" maxLoopCount="1" nextAreaID="loop1">
- <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" />
- <f:Panel id="group1" alias="分组容器1" styleID="2" left="[loop1.left]" right="[loop1.right]" top="[loop1.top]" dataSourceID="ds_baseInfo">
- <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" />
- <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">
- <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" />
- <f:Data type="string">员工详细信息</f:Data>
- </f:Cell>
- <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">
- <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" />
- <f:Rows>
- <f:Row />
- <f:Row />
- <f:Row />
- <f:Row />
- <f:Row />
- <f:Row />
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="text2" alias="文本2" styleID="4" left="1" right="30" top="1" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">基本信息</f:Data>
- </f:Cell>
- <f:Cell id="text36" alias="文本36" styleID="2" left="1" right="3" top="3" bottom="3" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">员工编码:</f:Data>
- </f:Cell>
- <f:Cell id="field3" alias="字段3" styleID="2" left="4" right="7" top="3" bottom="3" type="field">
- <f:DesignedCell text="员工编码" locked="false" />
- <f:Data type="string">number</f:Data>
- </f:Cell>
- <f:Cell id="text37" alias="文本37" styleID="5" left="8" right="9" top="3" bottom="3" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">姓名:</f:Data>
- </f:Cell>
- <f:Cell id="field2" alias="字段2" styleID="5" left="10" right="12" top="3" bottom="3" type="field">
- <f:DesignedCell text="姓名" locked="false" />
- <f:Data type="string">name</f:Data>
- </f:Cell>
- <f:Cell id="text40" alias="文本40" styleID="2" left="13" right="14" top="3" bottom="3" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">性别:</f:Data>
- </f:Cell>
- <f:Cell id="field5" alias="字段5" styleID="5" left="15" right="17" top="3" bottom="3" type="field">
- <f:DesignedCell text="性别" locked="false" />
- <f:Data type="string">gender</f:Data>
- </f:Cell>
- <f:Cell id="field1" alias="字段1" styleID="2" left="25" right="30" top="3" bottom="7" type="field">
- <f:DesignedCell text="员工照片" locked="false" />
- <f:Properties>
- <f:Property name="contentType">image</f:Property>
- <f:Property name="scale" />
- </f:Properties>
- <f:Data type="string">imagedata</f:Data>
- </f:Cell>
- <f:Cell id="text39" alias="文本39" styleID="5" left="1" right="4" top="4" bottom="4" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">身份证号码:</f:Data>
- </f:Cell>
- <f:Cell id="field7" alias="字段7" styleID="5" left="5" right="13" top="4" bottom="4" type="field">
- <f:DesignedCell text="身份证号码" locked="false" />
- <f:Data type="string">idCardNO</f:Data>
- </f:Cell>
- <f:Cell id="text8" alias="文本8" styleID="2" left="1" right="3" top="5" bottom="5" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">婚姻状况:</f:Data>
- </f:Cell>
- <f:Cell id="field22" alias="字段22" styleID="5" left="4" right="7" top="5" bottom="5" type="field">
- <f:DesignedCell text="婚姻状况" locked="false" />
- <f:Data type="string">wed</f:Data>
- </f:Cell>
- <f:Cell id="text49" alias="文本49" styleID="5" left="1" right="3" top="6" bottom="6" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">政治面貌:</f:Data>
- </f:Cell>
- <f:Cell id="field28" alias="字段28" styleID="5" left="4" right="6" top="6" bottom="6" type="field">
- <f:DesignedCell text="政治面貌" locked="false" />
- <f:Data type="string">politicalFace</f:Data>
- </f:Cell>
- <f:Cell id="text48" alias="文本48" styleID="2" left="8" right="10" top="6" bottom="6" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">最高学历:</f:Data>
- </f:Cell>
- <f:Cell id="field29" alias="字段29" styleID="5" left="11" right="14" top="6" bottom="6" type="field">
- <f:DesignedCell text="最高学历" locked="false" />
- <f:Data type="string">hightestDegree</f:Data>
- </f:Cell>
- <f:Cell id="text10" alias="文本10" styleID="5" left="1" right="3" top="7" bottom="7" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">籍贯:</f:Data>
- </f:Cell>
- <f:Cell id="field31" alias="字段31" styleID="6" left="4" right="12" top="7" bottom="7" type="field">
- <f:DesignedCell text="籍贯" locked="false" />
- <f:Data type="string">provinceCityAddress</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- <f:Table id="table3" alias="tbl_学历0" left="[group1.left]" right="[group1.right]" top="[table1.bottom]" bottom="[table3.top]+147.0">
- <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" />
- <f:Rows>
- <f:Row />
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="text22" alias="文本22" styleID="7" left="1" right="30" top="1" bottom="1" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">学历学位</f:Data>
- </f:Cell>
- <f:Cell id="text23" alias="文本23" styleID="8" left="1" right="3" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">学历</f:Data>
- </f:Cell>
- <f:Cell id="text24" alias="文本24" styleID="8" left="4" right="6" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">学位</f:Data>
- </f:Cell>
- <f:Cell id="text25" alias="文本25" styleID="8" left="7" right="11" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">是否最高学历</f:Data>
- </f:Cell>
- <f:Cell id="text7" alias="文本7" styleID="9" left="12" right="16" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">专业</f:Data>
- </f:Cell>
- <f:Cell id="text26" alias="文本26" styleID="8" left="17" right="23" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">毕业学校</f:Data>
- </f:Cell>
- <f:Cell id="text27" alias="文本27" styleID="8" left="24" right="30" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">毕业时间</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- <f:Area id="loop2" alias="cyl_学历" styleID="1" left="[group1.left]" right="[group1.right]" top="[table3.bottom]" nextAreaID="loop2">
- <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" />
- <f:Table id="table2" alias="tbl_学历" left="[loop2.left]" right="[loop2.right]" top="[loop2.top]" bottom="[table2.top]+84.0" dataSourceID="ds_degree">
- <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" />
- <f:Rows>
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="field11" alias="字段11" styleID="9" left="1" right="3" top="1" bottom="1" type="field">
- <f:DesignedCell text="学历" locked="false" />
- <f:Data type="string">diploma</f:Data>
- </f:Cell>
- <f:Cell id="field12" alias="字段12" styleID="9" left="4" right="6" top="1" bottom="1" type="field">
- <f:DesignedCell text="学位" locked="false" />
- <f:Data type="string">degree</f:Data>
- </f:Cell>
- <f:Cell id="field13" alias="字段13" styleID="9" left="7" right="11" top="1" bottom="1" type="field">
- <f:DesignedCell text="是否最高学历" locked="false" />
- <f:Data type="string">isHighest</f:Data>
- </f:Cell>
- <f:Cell id="field30" alias="字段30" styleID="9" left="12" right="16" top="1" bottom="1" type="field">
- <f:DesignedCell text="所学专业" locked="false" />
- <f:Data type="string">specialty</f:Data>
- </f:Cell>
- <f:Cell id="field14" alias="字段14" styleID="9" left="17" right="23" top="1" bottom="1" type="field">
- <f:DesignedCell text="毕业学校" locked="false" />
- <f:Data type="string">graduateSchool</f:Data>
- </f:Cell>
- <f:Cell id="field15" alias="字段15" styleID="9" left="24" right="30" top="1" bottom="1" type="field">
- <f:DesignedCell text="毕业时间" locked="false" />
- <f:Data type="string">graduateDate</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- </f:Area>
- <f:Table id="table4" alias="tbl_合同0" left="[group1.left]" right="[group1.right]" top="[loop2.bottom]" bottom="[table4.top]+147.0">
- <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" />
- <f:Rows>
- <f:Row />
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="text15" alias="文本15" styleID="7" left="1" right="30" top="1" bottom="1" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">合同表</f:Data>
- </f:Cell>
- <f:Cell id="text16" alias="文本16" styleID="9" left="1" right="5" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">合同类别</f:Data>
- </f:Cell>
- <f:Cell id="text17" alias="文本17" styleID="9" left="6" right="13" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">合同模板</f:Data>
- </f:Cell>
- <f:Cell id="text18" alias="文本18" styleID="9" left="14" right="20" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">合同编码</f:Data>
- </f:Cell>
- <f:Cell id="text19" alias="文本19" styleID="9" left="21" right="26" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">签订日期</f:Data>
- </f:Cell>
- <f:Cell id="text12" alias="文本12" styleID="9" left="27" right="30" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">服务期限</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- <f:Area id="loop3" alias="cyl_合同" styleID="1" left="[group1.left]" right="[group1.right]" top="[table4.bottom]" nextAreaID="loop3">
- <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" />
- <f:Table id="table6" alias="tbl_合同" left="[loop3.left]" right="[loop3.right]" top="[loop3.top]" bottom="[table6.top]+78.0" dataSourceID="ds_contract">
- <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" />
- <f:Rows>
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="field16" alias="字段16" styleID="9" left="1" right="5" top="1" bottom="1" type="field">
- <f:DesignedCell text="合同类别" locked="false" />
- <f:Data type="string">contractType.name</f:Data>
- </f:Cell>
- <f:Cell id="field17" alias="字段17" styleID="9" left="6" right="13" top="1" bottom="1" type="field">
- <f:DesignedCell text="合同模板" locked="false" />
- <f:Data type="string">contractTemplet.name</f:Data>
- </f:Cell>
- <f:Cell id="field18" alias="字段18" styleID="9" left="14" right="20" top="1" bottom="1" type="field">
- <f:DesignedCell text="合同编码" locked="false" />
- <f:Data type="string">contractNo</f:Data>
- </f:Cell>
- <f:Cell id="field19" alias="字段19" styleID="9" left="21" right="26" top="1" bottom="1" type="field">
- <f:DesignedCell text="签订日期" locked="false" />
- <f:Data type="string">recordDate</f:Data>
- </f:Cell>
- <f:Cell id="field21" alias="字段21" styleID="9" left="27" right="30" top="1" bottom="1" type="field">
- <f:DesignedCell text="服务期限" locked="false" />
- <f:Data type="string">contractServerLimit</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- </f:Area>
- <f:Table id="table5" alias="tbl_语言0" left="[group1.left]" right="[group1.right]" top="[loop3.bottom]" bottom="[table5.top]+147.0">
- <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" />
- <f:Rows>
- <f:Row />
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="text30" alias="文本30" styleID="7" left="1" right="30" top="1" bottom="1" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">语言能力</f:Data>
- </f:Cell>
- <f:Cell id="text29" alias="文本29" styleID="8" left="1" right="11" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">语言</f:Data>
- </f:Cell>
- <f:Cell id="text20" alias="文本20" styleID="8" left="12" right="30" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">熟练程度</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- <f:Area id="loop4" alias="cyl_语言" styleID="1" left="[group1.left]" right="[group1.right]" top="[table5.bottom]" nextAreaID="loop4">
- <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" />
- <f:Table id="table7" alias="tbl_语言" left="[loop4.left]" right="[loop4.right]" top="[loop4.top]" bottom="[table7.top]+78.0" dataSourceID="ds_language">
- <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" />
- <f:Rows>
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="field23" alias="字段23" styleID="9" left="1" right="11" top="1" bottom="1" type="field">
- <f:DesignedCell text="语言" locked="false" />
- <f:Data type="string">language</f:Data>
- </f:Cell>
- <f:Cell id="field20" alias="字段20" styleID="9" left="12" right="30" top="1" bottom="1" type="field">
- <f:DesignedCell text="熟练程度" locked="false" />
- <f:Data type="string">grade</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- </f:Area>
- <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">
- <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" />
- <f:Table id="table33" alias="tbl_任职" left="[loop17.left]" right="[loop17.right]" top="[loop17.top]" bottom="[table33.top]+429.0" dataSourceID="ds_primaryPosition">
- <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" />
- <f:Rows>
- <f:Row />
- <f:Row />
- <f:Row />
- <f:Row />
- <f:Row />
- <f:Row />
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="text60" alias="文本60" styleID="7" left="1" right="30" top="1" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">任职信息</f:Data>
- </f:Cell>
- <f:Cell id="text118" alias="文本118" styleID="8" left="1" right="3" top="3" bottom="3" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">所属组织:</f:Data>
- </f:Cell>
- <f:Cell id="field113" alias="字段113" styleID="8" left="4" right="11" top="3" bottom="3" type="field">
- <f:DesignedCell text="所属组织单元" locked="false" />
- <f:Data type="string">adminOrgUnit</f:Data>
- </f:Cell>
- <f:Cell id="text119" alias="文本119" styleID="8" left="12" right="13" top="3" bottom="3" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">职位:</f:Data>
- </f:Cell>
- <f:Cell id="field100" alias="字段100" styleID="8" left="14" right="20" top="3" bottom="3" type="field">
- <f:DesignedCell text="职位" locked="false" />
- <f:Data type="string">position</f:Data>
- </f:Cell>
- <f:Cell id="text120" alias="文本120" styleID="8" left="21" right="22" top="3" bottom="3" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">职务:</f:Data>
- </f:Cell>
- <f:Cell id="field101" alias="字段101" styleID="8" left="23" right="30" top="3" bottom="3" type="field">
- <f:DesignedCell text="职务" locked="false" />
- <f:Data type="string">job</f:Data>
- </f:Cell>
- <f:Cell id="text121" alias="文本121" styleID="8" left="1" right="3" top="4" bottom="4" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">职级:</f:Data>
- </f:Cell>
- <f:Cell id="field102" alias="字段102" styleID="8" left="4" right="11" top="4" bottom="4" type="field">
- <f:DesignedCell text="职级" locked="false" />
- <f:Data type="string">jobLevel</f:Data>
- </f:Cell>
- <f:Cell id="text122" alias="文本122" styleID="8" left="12" right="14" top="4" bottom="4" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">入职日期:</f:Data>
- </f:Cell>
- <f:Cell id="field103" alias="字段103" styleID="8" left="15" right="20" top="4" bottom="4" type="field">
- <f:DesignedCell text="入职日期" locked="false" />
- <f:Data type="string">enterDate</f:Data>
- </f:Cell>
- <f:Cell id="text123" alias="文本123" styleID="8" left="21" right="25" top="4" bottom="4" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">试用期(月):</f:Data>
- </f:Cell>
- <f:Cell id="field104" alias="字段104" styleID="8" left="26" right="30" top="4" bottom="4" type="field">
- <f:DesignedCell text="试用期(月)" locked="false" />
- <f:Data type="string">tryoutMonth</f:Data>
- </f:Cell>
- <f:Cell id="text124" alias="文本124" styleID="8" left="1" right="3" top="5" bottom="5" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">转正日期:</f:Data>
- </f:Cell>
- <f:Cell id="field105" alias="字段105" styleID="8" left="4" right="11" top="5" bottom="5" type="field">
- <f:DesignedCell text="转正日期" locked="false" />
- <f:Data type="string">formalDate</f:Data>
- </f:Cell>
- <f:Cell id="text125" alias="文本125" styleID="8" left="12" right="15" top="5" bottom="5" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">入集团日期:</f:Data>
- </f:Cell>
- <f:Cell id="field106" alias="字段106" styleID="8" left="16" right="20" top="5" bottom="5" type="field">
- <f:DesignedCell text="入集团日期" locked="false" />
- <f:Data type="string">joinGroupDate</f:Data>
- </f:Cell>
- <f:Cell id="text126" alias="文本126" styleID="8" left="21" right="25" top="5" bottom="5" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">集团服务年限:</f:Data>
- </f:Cell>
- <f:Cell id="field107" alias="字段107" styleID="8" left="26" right="30" top="5" bottom="5" type="field">
- <f:DesignedCell text="集团服务年限" locked="false" />
- <f:Data type="string">joinGroupYears</f:Data>
- </f:Cell>
- <f:Cell id="text127" alias="文本127" styleID="8" left="1" right="4" top="6" bottom="6" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">入公司日期:</f:Data>
- </f:Cell>
- <f:Cell id="field108" alias="字段108" styleID="8" left="5" right="11" top="6" bottom="6" type="field">
- <f:DesignedCell text="入司日期" locked="false" />
- <f:Data type="string">joinDate</f:Data>
- </f:Cell>
- <f:Cell id="text128" alias="文本128" styleID="8" left="12" right="16" top="6" bottom="6" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">公司服务年限:</f:Data>
- </f:Cell>
- <f:Cell id="field109" alias="字段109" styleID="8" left="17" right="20" top="6" bottom="6" type="field">
- <f:DesignedCell text="公司服务年限" locked="false" />
- <f:Data type="string">joinCompanyYears</f:Data>
- </f:Cell>
- <f:Cell id="text3" alias="文本3" styleID="9" left="21" right="24" top="6" bottom="6" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">员工类别:</f:Data>
- </f:Cell>
- <f:Cell id="field33" alias="字段33" styleID="8" left="25" right="30" top="6" bottom="6" type="field">
- <f:DesignedCell text="员工类别" locked="false" />
- <f:Data type="string">employeeType</f:Data>
- </f:Cell>
- <f:Cell id="text129" alias="文本129" styleID="8" left="1" right="5" top="7" bottom="7" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">任职开始日期:</f:Data>
- </f:Cell>
- <f:Cell id="field110" alias="字段110" styleID="8" left="6" right="11" top="7" bottom="7" type="field">
- <f:DesignedCell text="任职开始日期" locked="false" />
- <f:Data type="string">baseDate</f:Data>
- </f:Cell>
- <f:Cell id="text130" alias="文本130" styleID="8" left="12" right="16" top="7" bottom="7" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">任职结束日期:</f:Data>
- </f:Cell>
- <f:Cell id="field111" alias="字段111" styleID="8" left="17" right="21" top="7" bottom="7" type="field">
- <f:DesignedCell text="任职结束日期" locked="false" />
- <f:Data type="string">quitDate</f:Data>
- </f:Cell>
- <f:Cell id="text131" alias="文本131" styleID="8" left="22" right="26" top="7" bottom="7" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">担任本职位时间:</f:Data>
- </f:Cell>
- <f:Cell id="field112" alias="字段112" styleID="8" left="27" right="30" top="7" bottom="7" type="field">
- <f:DesignedCell text="担任本职位时间" locked="false" />
- <f:Data type="string">joinBaseYears</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- </f:Area>
- <f:Table id="table9" alias="tbl_党员0" left="[group1.left]" right="[group1.right]" top="[loop17.bottom]" bottom="[table9.top]+147.0">
- <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" />
- <f:Rows>
- <f:Row />
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="text54" alias="文本54" styleID="7" left="1" right="30" top="1" bottom="1" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">党员信息</f:Data>
- </f:Cell>
- <f:Cell id="text55" alias="文本55" styleID="8" left="1" right="7" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">入党时间</f:Data>
- </f:Cell>
- <f:Cell id="text56" alias="文本56" styleID="8" left="8" right="16" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">发展党员单位</f:Data>
- </f:Cell>
- <f:Cell id="text57" alias="文本57" styleID="8" left="17" right="23" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">发展党员年份</f:Data>
- </f:Cell>
- <f:Cell id="text58" alias="文本58" styleID="8" left="24" right="30" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">党内职务</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- <f:Area id="loop5" alias="cyl_党员" styleID="1" left="[group1.left]" right="[group1.right]" top="[table9.bottom]" nextAreaID="loop5">
- <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" />
- <f:Table id="table10" alias="tbl_党员" left="[loop5.left]" right="[loop5.right]" top="[loop5.top]" bottom="[table10.top]+78.0" dataSourceID="ds_communist">
- <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" />
- <f:Rows>
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="field4" alias="字段4" styleID="9" left="1" right="7" top="1" bottom="1" type="field" format=""%l{yyyy-MM-dd}t"">
- <f:DesignedCell text="入党时间" locked="false" />
- <f:Data type="string">joinDate</f:Data>
- </f:Cell>
- <f:Cell id="field9" alias="字段9" styleID="9" left="8" right="16" top="1" bottom="1" type="field">
- <f:DesignedCell text="发展党员单位" locked="false" />
- <f:Data type="string">depUnit</f:Data>
- </f:Cell>
- <f:Cell id="field47" alias="字段47" styleID="9" left="17" right="23" top="1" bottom="1" type="field">
- <f:DesignedCell text="发展党员年份" locked="false" />
- <f:Data type="string">depYear</f:Data>
- </f:Cell>
- <f:Cell id="field48" alias="字段48" styleID="9" left="24" right="30" top="1" bottom="1" type="field">
- <f:DesignedCell text="党内职务" locked="false" />
- <f:Data type="string">communistDuty</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- </f:Area>
- <f:Table id="table11" alias="tbl_资源0" left="[group1.left]" right="[group1.right]" top="[loop5.bottom]" bottom="[table11.top]+147.0">
- <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" />
- <f:Rows>
- <f:Row />
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="text4" alias="文本4" styleID="7" left="1" right="30" top="1" bottom="1" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">资源占用情况</f:Data>
- </f:Cell>
- <f:Cell id="text5" alias="文本5" styleID="8" left="1" right="7" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">编码</f:Data>
- </f:Cell>
- <f:Cell id="text6" alias="文本6" styleID="8" left="8" right="16" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">名称</f:Data>
- </f:Cell>
- <f:Cell id="text59" alias="文本59" styleID="8" left="17" right="30" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">描述</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- <f:Area id="loop6" alias="cyl_资源" styleID="1" left="[group1.left]" right="[group1.right]" top="[table11.bottom]" nextAreaID="loop6">
- <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" />
- <f:Table id="table12" alias="tbl_资源" left="[loop6.left]" right="[loop6.right]" top="[loop6.top]" bottom="[table12.top]+78.0" dataSourceID="ds_resource">
- <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" />
- <f:Rows>
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="field49" alias="字段49" styleID="9" left="1" right="7" top="1" bottom="1" type="field">
- <f:DesignedCell text="编码" locked="false" />
- <f:Data type="string">resourceNumber</f:Data>
- </f:Cell>
- <f:Cell id="field50" alias="字段50" styleID="9" left="8" right="16" top="1" bottom="1" type="field">
- <f:DesignedCell text="名称" locked="false" />
- <f:Data type="string">resourceName</f:Data>
- </f:Cell>
- <f:Cell id="field51" alias="字段51" styleID="10" left="17" right="30" top="1" bottom="1" type="field">
- <f:DesignedCell text="描述" locked="false" />
- <f:Data type="string">remark</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- </f:Area>
- <f:Table id="table13" alias="tbl_经历0" left="[group1.left]" right="[group1.right]" top="[loop6.bottom]" bottom="[table13.top]+147.0">
- <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" />
- <f:Rows>
- <f:Row />
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="text61" alias="文本61" styleID="7" left="1" right="30" top="1" bottom="1" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">工作经历</f:Data>
- </f:Cell>
- <f:Cell id="text62" alias="文本62" styleID="9" left="1" right="5" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">开始日期</f:Data>
- </f:Cell>
- <f:Cell id="text63" alias="文本63" styleID="9" left="6" right="13" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">单位名称</f:Data>
- </f:Cell>
- <f:Cell id="text64" alias="文本64" styleID="9" left="14" right="19" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">单位性质</f:Data>
- </f:Cell>
- <f:Cell id="text65" alias="文本65" styleID="9" left="20" right="25" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">专业类型</f:Data>
- </f:Cell>
- <f:Cell id="text66" alias="文本66" styleID="9" left="26" right="30" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">离职原因</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- <f:Area id="loop7" alias="cyl_经历" styleID="1" left="[group1.left]" right="[group1.right]" top="[table13.bottom]" nextAreaID="loop7">
- <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" />
- <f:Table id="table14" alias="tbl_经历" left="[loop7.left]" right="[loop7.right]" top="[loop7.top]" bottom="[table14.top]+78.0" dataSourceID="ds_workExp">
- <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" />
- <f:Rows>
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="field53" alias="字段53" styleID="9" left="1" right="5" top="1" bottom="1" type="field" format=""%l{yyyy-MM-dd}t"">
- <f:DesignedCell text="开始日期" locked="false" />
- <f:Data type="string">beginDate</f:Data>
- </f:Cell>
- <f:Cell id="field54" alias="字段54" styleID="9" left="6" right="13" top="1" bottom="1" type="field">
- <f:DesignedCell text="单位名称" locked="false" />
- <f:Data type="string">unitName</f:Data>
- </f:Cell>
- <f:Cell id="field55" alias="字段55" styleID="9" left="14" right="19" top="1" bottom="1" type="field">
- <f:DesignedCell text="单位性质" locked="false" />
- <f:Data type="string">unitType.name</f:Data>
- </f:Cell>
- <f:Cell id="field56" alias="字段56" styleID="9" left="20" right="25" top="1" bottom="1" type="field">
- <f:DesignedCell text="专业类型" locked="false" />
- <f:Data type="string">specialtyType.name</f:Data>
- </f:Cell>
- <f:Cell id="field57" alias="字段57" styleID="9" left="26" right="30" top="1" bottom="1" type="field">
- <f:DesignedCell text="离职原因" locked="false" />
- <f:Data type="string">dimission</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- </f:Area>
- <f:Table id="table15" alias="tbl_紧急0" left="[group1.left]" right="[group1.right]" top="[loop7.bottom]" bottom="[table15.top]+147.0">
- <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" />
- <f:Rows>
- <f:Row />
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="text67" alias="文本67" styleID="7" left="1" right="30" top="1" bottom="1" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">紧急联系人</f:Data>
- </f:Cell>
- <f:Cell id="text68" alias="文本68" styleID="8" left="1" right="7" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">紧急联系人姓名</f:Data>
- </f:Cell>
- <f:Cell id="text69" alias="文本69" styleID="8" left="8" right="16" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">电话</f:Data>
- </f:Cell>
- <f:Cell id="text70" alias="文本70" styleID="8" left="17" right="19" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">血型</f:Data>
- </f:Cell>
- <f:Cell id="text71" alias="文本71" styleID="9" left="20" right="30" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">备注</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- <f:Area id="loop8" alias="cyl_紧急" styleID="1" left="[group1.left]" right="[group1.right]" top="[table15.bottom]" nextAreaID="loop8">
- <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" />
- <f:Table id="table16" alias="tbl_紧急" left="[loop8.left]" right="[loop8.right]" top="[loop8.top]" bottom="[table16.top]+78.0" dataSourceID="ds_linkMen">
- <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" />
- <f:Rows>
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="field58" alias="字段58" styleID="9" left="1" right="7" top="1" bottom="1" type="field">
- <f:DesignedCell text="紧急联系人姓名" locked="false" />
- <f:Data type="string">linkManName</f:Data>
- </f:Cell>
- <f:Cell id="field59" alias="字段59" styleID="9" left="8" right="16" top="1" bottom="1" type="field">
- <f:DesignedCell text="电话" locked="false" />
- <f:Data type="string">phoneNumber</f:Data>
- </f:Cell>
- <f:Cell id="field60" alias="字段60" styleID="9" left="17" right="19" top="1" bottom="1" type="field">
- <f:DesignedCell text="血型" locked="false" />
- <f:Data type="string">bloodType</f:Data>
- </f:Cell>
- <f:Cell id="field61" alias="字段61" styleID="10" left="20" right="30" top="1" bottom="1" type="field">
- <f:DesignedCell text="备注" locked="false" />
- <f:Data type="string">remark</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- </f:Area>
- <f:Table id="table17" alias="tbl_社会0" left="[group1.left]" right="[group1.right]" top="[loop8.bottom]" bottom="[table17.top]+147.0">
- <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" />
- <f:Rows>
- <f:Row />
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="text72" alias="文本72" styleID="7" left="1" right="30" top="1" bottom="1" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">社会关系</f:Data>
- </f:Cell>
- <f:Cell id="text73" alias="文本73" styleID="8" left="1" right="4" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">姓名</f:Data>
- </f:Cell>
- <f:Cell id="text74" alias="文本74" styleID="8" left="5" right="8" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">与本人关系</f:Data>
- </f:Cell>
- <f:Cell id="text77" alias="文本77" styleID="9" left="9" right="16" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">工作单位及职位</f:Data>
- </f:Cell>
- <f:Cell id="text75" alias="文本75" styleID="8" left="17" right="20" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">学历</f:Data>
- </f:Cell>
- <f:Cell id="text76" alias="文本76" styleID="9" left="21" right="25" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">政治面貌</f:Data>
- </f:Cell>
- <f:Cell id="text13" alias="文本13" styleID="9" left="26" right="30" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">专业技术职务</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- <f:Area id="loop9" alias="cyl_社会" styleID="1" left="[group1.left]" right="[group1.right]" top="[table17.bottom]" nextAreaID="loop9">
- <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" />
- <f:Table id="table18" alias="tbl_社会" left="[loop9.left]" right="[loop9.right]" top="[loop9.top]" bottom="[table18.top]+78.0" dataSourceID="ds_family">
- <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" />
- <f:Rows>
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="field62" alias="字段62" styleID="9" left="1" right="4" top="1" bottom="1" type="field">
- <f:DesignedCell text="姓名" locked="false" />
- <f:Data type="string">name</f:Data>
- </f:Cell>
- <f:Cell id="field63" alias="字段63" styleID="9" left="5" right="8" top="1" bottom="1" type="field">
- <f:DesignedCell text="与本人关系" locked="false" />
- <f:Data type="string">relation</f:Data>
- </f:Cell>
- <f:Cell id="field66" alias="字段66" styleID="9" left="9" right="16" top="1" bottom="1" type="field">
- <f:DesignedCell text="工作单位及职位" locked="false" />
- <f:Data type="string">workUnit</f:Data>
- </f:Cell>
- <f:Cell id="field64" alias="字段64" styleID="9" left="17" right="20" top="1" bottom="1" type="field">
- <f:DesignedCell text="学历" locked="false" />
- <f:Data type="string">diploma</f:Data>
- </f:Cell>
- <f:Cell id="field65" alias="字段65" styleID="9" left="21" right="25" top="1" bottom="1" type="field">
- <f:DesignedCell text="政治面貌" locked="false" />
- <f:Data type="string">politicalFace</f:Data>
- </f:Cell>
- <f:Cell id="field24" alias="字段24" styleID="9" left="26" right="30" top="1" bottom="1" type="field">
- <f:DesignedCell text="专业技术职务" locked="false" />
- <f:Data type="string">specDuty</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- </f:Area>
- <f:Table id="table19" alias="tbl_素质0" left="[group1.left]" right="[group1.right]" top="[loop9.bottom]" bottom="[table19.top]+147.0">
- <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" />
- <f:Rows>
- <f:Row />
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="text78" alias="文本78" styleID="7" left="1" right="30" top="1" bottom="1" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">素质信息</f:Data>
- </f:Cell>
- <f:Cell id="text79" alias="文本79" styleID="8" left="1" right="7" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">素质指标</f:Data>
- </f:Cell>
- <f:Cell id="text80" alias="文本80" styleID="8" left="8" right="13" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">素质类型</f:Data>
- </f:Cell>
- <f:Cell id="text81" alias="文本81" styleID="9" left="14" right="16" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">素质级别</f:Data>
- </f:Cell>
- <f:Cell id="text82" alias="文本82" styleID="8" left="17" right="22" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">描述</f:Data>
- </f:Cell>
- <f:Cell id="text11" alias="文本11" styleID="9" left="23" right="30" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">行为描述</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- <f:Area id="loop10" alias="cyl_素质" styleID="1" left="[group1.left]" right="[group1.right]" top="[table19.bottom]" nextAreaID="loop10">
- <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" />
- <f:Table id="table20" alias="tbl_素质" left="[loop10.left]" right="[loop10.right]" top="[loop10.top]" bottom="[table20.top]+78.0" dataSourceID="ds_compet">
- <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" />
- <f:Rows>
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="field67" alias="字段67" styleID="9" left="1" right="7" top="1" bottom="1" type="field">
- <f:DesignedCell text="素质指标" locked="false" />
- <f:Data type="string">empCompetIndex</f:Data>
- </f:Cell>
- <f:Cell id="field68" alias="字段68" styleID="9" left="8" right="13" top="1" bottom="1" type="field">
- <f:DesignedCell text="能力素质类型" locked="false" />
- <f:Data type="string">competIndexType</f:Data>
- </f:Cell>
- <f:Cell id="field69" alias="字段69" styleID="9" left="14" right="16" top="1" bottom="1" type="field">
- <f:DesignedCell text="个人素质级别" locked="false" />
- <f:Data type="string">indexGrade</f:Data>
- </f:Cell>
- <f:Cell id="field70" alias="字段70" styleID="10" left="17" right="22" top="1" bottom="1" type="field">
- <f:DesignedCell text="描述" locked="false" />
- <f:Data type="string">description</f:Data>
- </f:Cell>
- <f:Cell id="field10" alias="字段10" styleID="11" left="23" right="30" top="1" bottom="1" type="field">
- <f:DesignedCell text="行为描述" locked="false" />
- <f:Data type="string">CompetIndexGrade.description</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- </f:Area>
- <f:Table id="table21" alias="tbl_档案0" left="[group1.left]" right="[group1.right]" top="[loop10.bottom]" bottom="[table21.top]+147.0">
- <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" />
- <f:Rows>
- <f:Row />
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="text84" alias="文本84" styleID="7" left="1" right="30" top="1" bottom="1" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">档案信息</f:Data>
- </f:Cell>
- <f:Cell id="text85" alias="文本85" styleID="8" left="1" right="6" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">档案编号</f:Data>
- </f:Cell>
- <f:Cell id="text86" alias="文本86" styleID="8" left="7" right="13" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">档案类型</f:Data>
- </f:Cell>
- <f:Cell id="text87" alias="文本87" styleID="9" left="14" right="21" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">档案来源</f:Data>
- </f:Cell>
- <f:Cell id="text88" alias="文本88" styleID="8" left="22" right="30" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">档案去处</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- <f:Area id="loop11" alias="cyl_档案" styleID="1" left="[group1.left]" right="[group1.right]" top="[table21.bottom]" nextAreaID="loop11">
- <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" />
- <f:Table id="table22" alias="tbl_档案" left="[loop11.left]" right="[loop11.right]" top="[loop11.top]" bottom="[table22.top]+78.0" dataSourceID="ds_archive">
- <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" />
- <f:Rows>
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="field72" alias="字段72" styleID="9" left="1" right="6" top="1" bottom="1" type="field">
- <f:DesignedCell text="档案编号" locked="false" />
- <f:Data type="string">number</f:Data>
- </f:Cell>
- <f:Cell id="field73" alias="字段73" styleID="9" left="7" right="13" top="1" bottom="1" type="field">
- <f:DesignedCell text="档案类型" locked="false" />
- <f:Data type="string">type</f:Data>
- </f:Cell>
- <f:Cell id="field74" alias="字段74" styleID="9" left="14" right="21" top="1" bottom="1" type="field">
- <f:DesignedCell text="档案来源" locked="false" />
- <f:Data type="string">source</f:Data>
- </f:Cell>
- <f:Cell id="field75" alias="字段75" styleID="9" left="22" right="30" top="1" bottom="1" type="field">
- <f:DesignedCell text="档案去处" locked="false" />
- <f:Data type="string">destination</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- </f:Area>
- <f:Table id="table23" alias="tbl_职称0" left="[group1.left]" right="[group1.right]" top="[loop11.bottom]" bottom="[table23.top]+147.0">
- <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" />
- <f:Rows>
- <f:Row />
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="text83" alias="文本83" styleID="7" left="1" right="30" top="1" bottom="1" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">职称信息</f:Data>
- </f:Cell>
- <f:Cell id="text89" alias="文本89" styleID="8" left="1" right="6" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">职称名称</f:Data>
- </f:Cell>
- <f:Cell id="text90" alias="文本90" styleID="8" left="7" right="12" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">职称类别</f:Data>
- </f:Cell>
- <f:Cell id="text91" alias="文本91" styleID="9" left="13" right="16" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">职称级别</f:Data>
- </f:Cell>
- <f:Cell id="text93" alias="文本93" styleID="9" left="17" right="22" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">证书编号</f:Data>
- </f:Cell>
- <f:Cell id="text94" alias="文本94" styleID="9" left="23" right="26" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">评定单位</f:Data>
- </f:Cell>
- <f:Cell id="text92" alias="文本92" styleID="8" left="27" right="30" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">是否最高职称</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- <f:Area id="loop12" alias="cyl_职称" styleID="1" left="[group1.left]" right="[group1.right]" top="[table23.bottom]" nextAreaID="loop12">
- <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" />
- <f:Table id="table24" alias="tbl_职称" left="[loop12.left]" right="[loop12.right]" top="[loop12.top]" bottom="[table24.top]+78.0" dataSourceID="ds_post">
- <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" />
- <f:Rows>
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="field71" alias="字段71" styleID="9" left="1" right="6" top="1" bottom="1" type="field">
- <f:DesignedCell text="职称名称" locked="false" />
- <f:Data type="string">technicalPost</f:Data>
- </f:Cell>
- <f:Cell id="field76" alias="字段76" styleID="9" left="7" right="12" top="1" bottom="1" type="field">
- <f:DesignedCell text="职称类别" locked="false" />
- <f:Data type="string">category</f:Data>
- </f:Cell>
- <f:Cell id="field77" alias="字段77" styleID="9" left="13" right="16" top="1" bottom="1" type="field">
- <f:DesignedCell text="职称级别" locked="false" />
- <f:Data type="string">level</f:Data>
- </f:Cell>
- <f:Cell id="field79" alias="字段79" styleID="9" left="17" right="22" top="1" bottom="1" type="field">
- <f:DesignedCell text="证书编号" locked="false" />
- <f:Data type="string">certificateNo</f:Data>
- </f:Cell>
- <f:Cell id="field80" alias="字段80" styleID="9" left="23" right="26" top="1" bottom="1" type="field">
- <f:DesignedCell text="评定单位" locked="false" />
- <f:Data type="string">gradeUnit</f:Data>
- </f:Cell>
- <f:Cell id="field78" alias="字段78" styleID="9" left="27" right="30" top="1" bottom="1" type="field">
- <f:DesignedCell text="是否最高职称" locked="false" />
- <f:Data type="string">isHighestPost</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- </f:Area>
- <f:Table id="table25" alias="tbl_认证0" left="[group1.left]" right="[group1.right]" top="[loop12.bottom]" bottom="[table25.top]+147.0">
- <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" />
- <f:Rows>
- <f:Row />
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="text95" alias="文本95" styleID="7" left="1" right="30" top="1" bottom="1" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">认证信息</f:Data>
- </f:Cell>
- <f:Cell id="text96" alias="文本96" styleID="8" left="1" right="6" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">证书编号</f:Data>
- </f:Cell>
- <f:Cell id="text97" alias="文本97" styleID="8" left="7" right="13" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">证书名称</f:Data>
- </f:Cell>
- <f:Cell id="text98" alias="文本98" styleID="9" left="14" right="18" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">认证有效期(年)</f:Data>
- </f:Cell>
- <f:Cell id="text99" alias="文本99" styleID="8" left="19" right="26" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">认证机构</f:Data>
- </f:Cell>
- <f:Cell id="text100" alias="文本100" styleID="9" left="27" right="30" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">认证级别</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- <f:Area id="loop13" alias="cyl_认证" styleID="1" left="[group1.left]" right="[group1.right]" top="[table25.bottom]" nextAreaID="loop13">
- <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" />
- <f:Table id="table26" alias="tbl_认证" left="[loop13.left]" right="[loop13.right]" top="[loop13.top]" bottom="[table26.top]+78.0" dataSourceID="ds_certificate">
- <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" />
- <f:Rows>
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="field81" alias="字段81" styleID="9" left="1" right="6" top="1" bottom="1" type="field">
- <f:DesignedCell text="证书编号" locked="false" />
- <f:Data type="string">certificateNumber</f:Data>
- </f:Cell>
- <f:Cell id="field82" alias="字段82" styleID="9" left="7" right="13" top="1" bottom="1" type="field">
- <f:DesignedCell text="认证名称" locked="false" />
- <f:Data type="string">certificateName</f:Data>
- </f:Cell>
- <f:Cell id="field83" alias="字段83" styleID="9" left="14" right="18" top="1" bottom="1" type="field">
- <f:DesignedCell text="认证有效期(年)" locked="false" />
- <f:Data type="string">certificateValidityYear</f:Data>
- </f:Cell>
- <f:Cell id="field84" alias="字段84" styleID="9" left="19" right="26" top="1" bottom="1" type="field">
- <f:DesignedCell text="认证机构" locked="false" />
- <f:Data type="string">certificateOrgan</f:Data>
- </f:Cell>
- <f:Cell id="field85" alias="字段85" styleID="9" left="27" right="30" top="1" bottom="1" type="field">
- <f:DesignedCell text="认证级别" locked="false" />
- <f:Data type="string">certificateLevel</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- </f:Area>
- <f:Table id="table27" alias="tbl_历史0" left="[group1.left]" right="[group1.right]" top="[loop13.bottom]" bottom="[table27.top]+147.0">
- <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" />
- <f:Rows>
- <f:Row />
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="text101" alias="文本101" styleID="7" left="1" right="30" top="1" bottom="1" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">任职历史</f:Data>
- </f:Cell>
- <f:Cell id="text102" alias="文本102" styleID="8" left="1" right="6" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">职位</f:Data>
- </f:Cell>
- <f:Cell id="text103" alias="文本103" styleID="8" left="7" right="13" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">职务</f:Data>
- </f:Cell>
- <f:Cell id="text104" alias="文本104" styleID="9" left="14" right="17" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">职级</f:Data>
- </f:Cell>
- <f:Cell id="text105" alias="文本105" styleID="8" left="18" right="26" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">所属组织</f:Data>
- </f:Cell>
- <f:Cell id="text106" alias="文本106" styleID="9" left="27" right="30" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">开始日期</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- <f:Area id="loop14" alias="cyl_历史" styleID="1" left="[group1.left]" right="[group1.right]" top="[table27.bottom]" nextAreaID="loop14">
- <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" />
- <f:Table id="table28" alias="tbl_历史" left="[loop14.left]" right="[loop14.right]" top="[loop14.top]" bottom="[table28.top]+78.0" dataSourceID="ds_workExpCur">
- <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" />
- <f:Rows>
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="field86" alias="字段86" styleID="9" left="1" right="6" top="1" bottom="1" type="field">
- <f:DesignedCell text="职位" locked="false" />
- <f:Data type="string">position.name</f:Data>
- </f:Cell>
- <f:Cell id="field87" alias="字段87" styleID="9" left="7" right="13" top="1" bottom="1" type="field">
- <f:DesignedCell text="职务" locked="false" />
- <f:Data type="string">job.name</f:Data>
- </f:Cell>
- <f:Cell id="field88" alias="字段88" styleID="9" left="14" right="17" top="1" bottom="1" type="field">
- <f:DesignedCell text="职级" locked="false" />
- <f:Data type="string">jobLevel.name</f:Data>
- </f:Cell>
- <f:Cell id="field89" alias="字段89" styleID="9" left="18" right="26" top="1" bottom="1" type="field">
- <f:DesignedCell text="所属组织单元" locked="false" />
- <f:Data type="string">AdminOrgUnit.name</f:Data>
- </f:Cell>
- <f:Cell id="field90" alias="字段90" styleID="9" left="27" right="30" top="1" bottom="1" type="field">
- <f:DesignedCell text="任职开始日期" locked="false" />
- <f:Data type="string">beginDate</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- </f:Area>
- <f:Table id="table29" alias="tbl_联系0" left="[group1.left]" right="[group1.right]" top="[loop14.bottom]" bottom="[table29.top]+147.0">
- <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" />
- <f:Rows>
- <f:Row />
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="text107" alias="文本107" styleID="7" left="1" right="30" top="1" bottom="1" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">联系方式</f:Data>
- </f:Cell>
- <f:Cell id="text108" alias="文本108" styleID="8" left="1" right="6" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">出生地</f:Data>
- </f:Cell>
- <f:Cell id="text109" alias="文本109" styleID="8" left="7" right="15" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">住址</f:Data>
- </f:Cell>
- <f:Cell id="text110" alias="文本110" styleID="9" left="16" right="19" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">邮编</f:Data>
- </f:Cell>
- <f:Cell id="text111" alias="文本111" styleID="8" left="20" right="25" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">家庭电话</f:Data>
- </f:Cell>
- <f:Cell id="text112" alias="文本112" styleID="9" left="26" right="30" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">手机号码</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- <f:Area id="loop15" alias="cyl_联系" styleID="1" left="[group1.left]" right="[group1.right]" top="[table29.bottom]" nextAreaID="loop15">
- <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" />
- <f:Table id="table30" alias="tbl_联系" left="[loop15.left]" right="[loop15.right]" top="[loop15.top]" bottom="[table30.top]+78.0" dataSourceID="ds_contactMethod">
- <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" />
- <f:Rows>
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="field91" alias="字段91" styleID="9" left="1" right="6" top="1" bottom="1" type="field">
- <f:DesignedCell text="出生地" locked="false" />
- <f:Data type="string">homeplace</f:Data>
- </f:Cell>
- <f:Cell id="field92" alias="字段92" styleID="9" left="7" right="15" top="1" bottom="1" type="field">
- <f:DesignedCell text="住址" locked="false" />
- <f:Data type="string">homeAddress</f:Data>
- </f:Cell>
- <f:Cell id="field93" alias="字段93" styleID="9" left="16" right="19" top="1" bottom="1" type="field">
- <f:DesignedCell text="邮政编码" locked="false" />
- <f:Data type="string">postalcode</f:Data>
- </f:Cell>
- <f:Cell id="field94" alias="字段94" styleID="9" left="20" right="25" top="1" bottom="1" type="field">
- <f:DesignedCell text="家庭电话" locked="false" />
- <f:Data type="string">homePhone</f:Data>
- </f:Cell>
- <f:Cell id="field95" alias="字段95" styleID="9" left="26" right="30" top="1" bottom="1" type="field">
- <f:DesignedCell text="手机号码" locked="false" />
- <f:Data type="string">mobile</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- </f:Area>
- <f:Table id="table31" alias="tbl_奖惩0" left="[group1.left]" right="[group1.right]" top="[loop15.bottom]" bottom="[table31.top]+147.0">
- <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" />
- <f:Rows>
- <f:Row />
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="text113" alias="文本113" styleID="7" left="1" right="30" top="1" bottom="1" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">奖惩记录</f:Data>
- </f:Cell>
- <f:Cell id="text114" alias="文本114" styleID="8" left="1" right="8" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">标题</f:Data>
- </f:Cell>
- <f:Cell id="text115" alias="文本115" styleID="8" left="9" right="15" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">奖惩类型</f:Data>
- </f:Cell>
- <f:Cell id="text116" alias="文本116" styleID="9" left="16" right="25" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">奖惩内容</f:Data>
- </f:Cell>
- <f:Cell id="text117" alias="文本117" styleID="8" left="26" right="30" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">奖惩时间</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- <f:Area id="loop16" alias="cyl_奖惩" styleID="1" left="[group1.left]" right="[group1.right]" top="[table31.bottom]" nextAreaID="loop16">
- <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" />
- <f:Table id="table32" alias="tbl_奖惩" left="[loop16.left]" right="[loop16.right]" top="[loop16.top]" bottom="[table32.top]+78.0" dataSourceID="ds_rewordPunish">
- <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" />
- <f:Rows>
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="field96" alias="字段96" styleID="9" left="1" right="8" top="1" bottom="1" type="field">
- <f:DesignedCell text="奖惩信息标题" locked="false" />
- <f:Data type="string">occurTitle</f:Data>
- </f:Cell>
- <f:Cell id="field97" alias="字段97" styleID="9" left="9" right="15" top="1" bottom="1" type="field">
- <f:DesignedCell text="奖惩类型" locked="false" />
- <f:Data type="string">occurType</f:Data>
- </f:Cell>
- <f:Cell id="field98" alias="字段98" styleID="9" left="16" right="25" top="1" bottom="1" type="field">
- <f:DesignedCell text="奖惩内容" locked="false" />
- <f:Data type="string">occurContent</f:Data>
- </f:Cell>
- <f:Cell id="field99" alias="字段99" styleID="9" left="26" right="30" top="1" bottom="1" type="field">
- <f:DesignedCell text="奖惩时间" locked="false" />
- <f:Data type="string">occurDate</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- </f:Area>
- <f:Table id="table34" alias="tbl_培训0" styleID="12" left="[group1.left]" right="[group1.right]" top="[loop16.bottom]" bottom="[table34.top]+147.0">
- <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" />
- <f:Rows>
- <f:Row />
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="text9" alias="文本9" styleID="13" left="1" right="30" top="1" bottom="1" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">培训信息</f:Data>
- </f:Cell>
- <f:Cell id="text14" alias="文本14" styleID="9" left="1" right="6" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">培训课程</f:Data>
- </f:Cell>
- <f:Cell id="text21" alias="文本21" styleID="9" left="7" right="12" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">课程开始时间</f:Data>
- </f:Cell>
- <f:Cell id="text28" alias="文本28" styleID="9" left="13" right="18" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">课程结束时间</f:Data>
- </f:Cell>
- <f:Cell id="text31" alias="文本31" styleID="9" left="19" right="24" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">证书名称</f:Data>
- </f:Cell>
- <f:Cell id="text32" alias="文本32" styleID="9" left="25" right="30" top="2" bottom="2" type="constant">
- <f:DesignedCell locked="false" />
- <f:Data type="string">培训方式</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- <f:Area id="loop18" alias="cyl_培训" styleID="1" left="[group1.left]" right="[group1.right]" top="[table34.bottom]" nextAreaID="loop18">
- <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" />
- <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">
- <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" />
- <f:Rows>
- <f:Row />
- </f:Rows>
- <f:Columns>
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- <f:Column />
- </f:Columns>
- <f:Body>
- <f:Cell id="field6" alias="字段6" styleID="14" left="1" right="6" top="1" bottom="1" type="field">
- <f:DesignedCell text="培训课程" locked="false" />
- <f:Data type="string">trainCourse</f:Data>
- </f:Cell>
- <f:Cell id="field8" alias="字段8" styleID="9" left="7" right="12" top="1" bottom="1" type="field" format="yyyy-m-d">
- <f:DesignedCell text="课程开始时间" locked="false" />
- <f:Data type="string">beginDateTime</f:Data>
- </f:Cell>
- <f:Cell id="field25" alias="字段25" styleID="9" left="13" right="18" top="1" bottom="1" type="field" format="yyyy-m-d">
- <f:DesignedCell text="课程结束时间" locked="false" />
- <f:Data type="string">endDateTime</f:Data>
- </f:Cell>
- <f:Cell id="field26" alias="字段26" styleID="9" left="19" right="24" top="1" bottom="1" type="field">
- <f:DesignedCell text="证书名称" locked="false" />
- <f:Data type="string">courseCertificateName</f:Data>
- </f:Cell>
- <f:Cell id="field27" alias="字段27" styleID="9" left="25" right="30" top="1" bottom="1" type="field">
- <f:DesignedCell text="培训方式" locked="false" />
- <f:Data type="string">trainMethod</f:Data>
- </f:Cell>
- </f:Body>
- </f:Table>
- </f:Area>
- </f:Panel>
- </f:Area>
- </f:Page>
- </Form>
- <PrintInfo>
- <c:PageSetup>
- <c:PageMargin left="190" right="190" top="250" bottom="250" header="80" footer="80" />
- <c:Orientation>PORTRAIT</c:Orientation>
- <c:CustomizePaperSize width="2100" height="2970" bottom="-1" />
- <c:Header height="80" margin="80" />
- <c:Footer height="80" margin="80" />
- </c:PageSetup>
- <c:PrinterSetup />
- </PrintInfo>
- </DocRoot>
|