123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917 |
- <?xml version="1.0" encoding="utf-8"?>
- <entityObject xmlns="com.kingdee.bos.metadata">
- <package>com.kingdee.shr.compensation.app.integrate</package>
- <name>BatchSubmitShemeBillEntry</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].description</description>
- <userDefined>true</userDefined>
- <bosType>7F647776</bosType>
- <stereoType>false</stereoType>
- <businessImplName>com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry</businessImplName>
- <businessControllerName>com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntryController</businessControllerName>
- <accessLevel>public</accessLevel>
- <subClassingMode>normal</subClassingMode>
- <methods>
- <method>
- <name>exists</name>
- <isListenerMethod>false</isListenerMethod>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].description</description>
- <innerID>b6091f98-29e9-4077-9ccb-bdcf7d871bdb</innerID>
- <accessLevel>public</accessLevel>
- <subClassingMode>normal</subClassingMode>
- <returnValueType>Boolean</returnValueType>
- <metadataRef />
- <transactionAttribute>Supports</transactionAttribute>
- <userDefined>false</userDefined>
- <userDefinedLogic />
- <parameters>
- <parameter>
- <name>pk</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].parameters.parameter[pk].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].parameters.parameter[pk].description</description>
- <direction>in</direction>
- <dataType>com.kingdee.bos.dao.IObjectPK</dataType>
- <metadataRef />
- <userDefined>false</userDefined>
- </parameter>
- </parameters>
- <configured>false</configured>
- </method>
- <method>
- <name>exists</name>
- <isListenerMethod>false</isListenerMethod>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].description</description>
- <innerID>ef6f3257-04e3-4d4f-9fd6-008cf50a2f02</innerID>
- <accessLevel>public</accessLevel>
- <subClassingMode>normal</subClassingMode>
- <returnValueType>Boolean</returnValueType>
- <metadataRef />
- <transactionAttribute>Supports</transactionAttribute>
- <userDefined>false</userDefined>
- <userDefinedLogic />
- <parameters>
- <parameter>
- <name>filter</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].parameters.parameter[filter].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].parameters.parameter[filter].description</description>
- <direction>in</direction>
- <dataType>com.kingdee.bos.metadata.entity.FilterInfo</dataType>
- <metadataRef />
- <userDefined>false</userDefined>
- </parameter>
- </parameters>
- <configured>false</configured>
- </method>
- <method>
- <name>exists</name>
- <isListenerMethod>false</isListenerMethod>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].description</description>
- <innerID>888abe9f-554c-4d2b-bc4e-43ed910a05d7</innerID>
- <accessLevel>public</accessLevel>
- <subClassingMode>normal</subClassingMode>
- <returnValueType>Boolean</returnValueType>
- <metadataRef />
- <transactionAttribute>Supports</transactionAttribute>
- <userDefined>false</userDefined>
- <userDefinedLogic />
- <parameters>
- <parameter>
- <name>oql</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].parameters.parameter[oql].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].parameters.parameter[oql].description</description>
- <direction>in</direction>
- <dataType>String</dataType>
- <metadataRef />
- <userDefined>false</userDefined>
- </parameter>
- </parameters>
- <configured>false</configured>
- </method>
- <method>
- <name>getValue</name>
- <isListenerMethod>false</isListenerMethod>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].description</description>
- <innerID>dd710703-e457-48c9-a278-fbaafcbf59a4</innerID>
- <accessLevel>public</accessLevel>
- <subClassingMode>normal</subClassingMode>
- <returnValueType>ObjectValue</returnValueType>
- <metadataRef>com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry</metadataRef>
- <transactionAttribute>Supports</transactionAttribute>
- <userDefined>false</userDefined>
- <userDefinedLogic />
- <parameters>
- <parameter>
- <name>pk</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].parameters.parameter[pk].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].parameters.parameter[pk].description</description>
- <direction>in</direction>
- <dataType>com.kingdee.bos.dao.IObjectPK</dataType>
- <metadataRef />
- <userDefined>false</userDefined>
- </parameter>
- </parameters>
- <configured>false</configured>
- </method>
- <method>
- <name>getValue</name>
- <isListenerMethod>false</isListenerMethod>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].description</description>
- <innerID>fd93dc94-3dc3-4433-bd57-6c58c0d06f94</innerID>
- <accessLevel>public</accessLevel>
- <subClassingMode>normal</subClassingMode>
- <returnValueType>ObjectValue</returnValueType>
- <metadataRef>com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry</metadataRef>
- <transactionAttribute>Supports</transactionAttribute>
- <userDefined>false</userDefined>
- <userDefinedLogic />
- <parameters>
- <parameter>
- <name>pk</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].parameters.parameter[pk].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].parameters.parameter[pk].description</description>
- <direction>in</direction>
- <dataType>com.kingdee.bos.dao.IObjectPK</dataType>
- <metadataRef />
- <userDefined>false</userDefined>
- </parameter>
- <parameter>
- <name>selector</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].parameters.parameter[selector].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].parameters.parameter[selector].description</description>
- <direction>in</direction>
- <dataType>com.kingdee.bos.metadata.entity.SelectorItemCollection</dataType>
- <metadataRef />
- <userDefined>false</userDefined>
- </parameter>
- </parameters>
- <configured>false</configured>
- </method>
- <method>
- <name>getValue</name>
- <isListenerMethod>false</isListenerMethod>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].description</description>
- <innerID>9673fde2-970a-43be-981a-c696864e6009</innerID>
- <accessLevel>public</accessLevel>
- <subClassingMode>normal</subClassingMode>
- <returnValueType>ObjectValue</returnValueType>
- <metadataRef>com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry</metadataRef>
- <transactionAttribute>Supports</transactionAttribute>
- <userDefined>false</userDefined>
- <userDefinedLogic />
- <parameters>
- <parameter>
- <name>oql</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].parameters.parameter[oql].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].parameters.parameter[oql].description</description>
- <direction>in</direction>
- <dataType>String</dataType>
- <metadataRef />
- <userDefined>false</userDefined>
- </parameter>
- </parameters>
- <configured>false</configured>
- </method>
- <method>
- <name>addnew</name>
- <isListenerMethod>false</isListenerMethod>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].description</description>
- <innerID>aa3edab7-93f8-4482-a963-86dfb3e63df1</innerID>
- <accessLevel>public</accessLevel>
- <subClassingMode>normal</subClassingMode>
- <returnValueType>com.kingdee.bos.dao.IObjectPK</returnValueType>
- <metadataRef />
- <transactionAttribute>Required</transactionAttribute>
- <userDefined>false</userDefined>
- <userDefinedLogic />
- <parameters>
- <parameter>
- <name>model</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].parameters.parameter[model].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].parameters.parameter[model].description</description>
- <direction>in</direction>
- <dataType>ObjectValue</dataType>
- <metadataRef>com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry</metadataRef>
- <userDefined>false</userDefined>
- </parameter>
- </parameters>
- <configured>false</configured>
- </method>
- <method>
- <name>addnew</name>
- <isListenerMethod>false</isListenerMethod>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].description</description>
- <innerID>3bd12103-f686-4361-bbb1-9d454678265f</innerID>
- <accessLevel>public</accessLevel>
- <subClassingMode>normal</subClassingMode>
- <returnValueType />
- <metadataRef />
- <transactionAttribute>Required</transactionAttribute>
- <userDefined>false</userDefined>
- <userDefinedLogic />
- <parameters>
- <parameter>
- <name>pk</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].parameters.parameter[pk].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].parameters.parameter[pk].description</description>
- <direction>in</direction>
- <dataType>com.kingdee.bos.dao.IObjectPK</dataType>
- <metadataRef />
- <userDefined>false</userDefined>
- </parameter>
- <parameter>
- <name>model</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].parameters.parameter[model].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].parameters.parameter[model].description</description>
- <direction>in</direction>
- <dataType>ObjectValue</dataType>
- <metadataRef>com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry</metadataRef>
- <userDefined>false</userDefined>
- </parameter>
- </parameters>
- <configured>false</configured>
- </method>
- <method>
- <name>update</name>
- <isListenerMethod>false</isListenerMethod>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[update].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[update].description</description>
- <innerID>f8bbe9bd-0c0b-4af8-8c11-7ab902856ca0</innerID>
- <accessLevel>public</accessLevel>
- <subClassingMode>normal</subClassingMode>
- <returnValueType />
- <metadataRef />
- <transactionAttribute>Required</transactionAttribute>
- <userDefined>false</userDefined>
- <userDefinedLogic />
- <parameters>
- <parameter>
- <name>pk</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[update].parameters.parameter[pk].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[update].parameters.parameter[pk].description</description>
- <direction>in</direction>
- <dataType>com.kingdee.bos.dao.IObjectPK</dataType>
- <metadataRef />
- <userDefined>false</userDefined>
- </parameter>
- <parameter>
- <name>model</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[update].parameters.parameter[model].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[update].parameters.parameter[model].description</description>
- <direction>in</direction>
- <dataType>ObjectValue</dataType>
- <metadataRef>com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry</metadataRef>
- <userDefined>false</userDefined>
- </parameter>
- </parameters>
- <configured>false</configured>
- </method>
- <method>
- <name>updatePartial</name>
- <isListenerMethod>false</isListenerMethod>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updatePartial].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updatePartial].description</description>
- <innerID>2ccd1076-e398-4e1a-9670-08b5283bd030</innerID>
- <accessLevel>public</accessLevel>
- <subClassingMode>normal</subClassingMode>
- <returnValueType />
- <metadataRef />
- <transactionAttribute>Required</transactionAttribute>
- <userDefined>false</userDefined>
- <userDefinedLogic />
- <parameters>
- <parameter>
- <name>model</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updatePartial].parameters.parameter[model].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updatePartial].parameters.parameter[model].description</description>
- <direction>in</direction>
- <dataType>ObjectValue</dataType>
- <metadataRef>com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry</metadataRef>
- <userDefined>false</userDefined>
- </parameter>
- <parameter>
- <name>selector</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updatePartial].parameters.parameter[selector].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updatePartial].parameters.parameter[selector].description</description>
- <direction>in</direction>
- <dataType>com.kingdee.bos.metadata.entity.SelectorItemCollection</dataType>
- <metadataRef />
- <userDefined>false</userDefined>
- </parameter>
- </parameters>
- <configured>false</configured>
- </method>
- <method>
- <name>updateBigObject</name>
- <isListenerMethod>false</isListenerMethod>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updateBigObject].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updateBigObject].description</description>
- <innerID>9bdb5768-e24b-4f9d-8cee-917285e42c06</innerID>
- <accessLevel>public</accessLevel>
- <subClassingMode>normal</subClassingMode>
- <returnValueType />
- <metadataRef />
- <transactionAttribute>Required</transactionAttribute>
- <userDefined>false</userDefined>
- <userDefinedLogic />
- <parameters>
- <parameter>
- <name>pk</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updateBigObject].parameters.parameter[pk].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updateBigObject].parameters.parameter[pk].description</description>
- <direction>in</direction>
- <dataType>com.kingdee.bos.dao.IObjectPK</dataType>
- <metadataRef />
- <userDefined>false</userDefined>
- </parameter>
- <parameter>
- <name>model</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updateBigObject].parameters.parameter[model].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updateBigObject].parameters.parameter[model].description</description>
- <direction>in</direction>
- <dataType>ObjectValue</dataType>
- <metadataRef>com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry</metadataRef>
- <userDefined>false</userDefined>
- </parameter>
- </parameters>
- <configured>false</configured>
- </method>
- <method>
- <name>delete</name>
- <isListenerMethod>false</isListenerMethod>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].description</description>
- <innerID>2c84ee93-0922-438d-b356-bef943a69b51</innerID>
- <accessLevel>public</accessLevel>
- <subClassingMode>normal</subClassingMode>
- <returnValueType />
- <metadataRef />
- <transactionAttribute>Required</transactionAttribute>
- <userDefined>false</userDefined>
- <userDefinedLogic />
- <parameters>
- <parameter>
- <name>pk</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[pk].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[pk].description</description>
- <direction>in</direction>
- <dataType>com.kingdee.bos.dao.IObjectPK</dataType>
- <metadataRef />
- <userDefined>false</userDefined>
- </parameter>
- </parameters>
- <configured>false</configured>
- </method>
- <method>
- <name>getPKList</name>
- <isListenerMethod>false</isListenerMethod>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].description</description>
- <innerID>66e9b214-f106-4a7a-b1bf-0d8fd3bf5798</innerID>
- <accessLevel>public</accessLevel>
- <subClassingMode>normal</subClassingMode>
- <returnValueType>com.kingdee.bos.dao.IObjectPK[]</returnValueType>
- <metadataRef />
- <transactionAttribute>Supports</transactionAttribute>
- <userDefined>false</userDefined>
- <userDefinedLogic />
- <configured>false</configured>
- </method>
- <method>
- <name>getPKList</name>
- <isListenerMethod>false</isListenerMethod>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].description</description>
- <innerID>888827b4-6b1d-4d4a-a59f-f5235bd4d138</innerID>
- <accessLevel>public</accessLevel>
- <subClassingMode>normal</subClassingMode>
- <returnValueType>com.kingdee.bos.dao.IObjectPK[]</returnValueType>
- <metadataRef />
- <transactionAttribute>Supports</transactionAttribute>
- <userDefined>false</userDefined>
- <userDefinedLogic />
- <parameters>
- <parameter>
- <name>oql</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].parameters.parameter[oql].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].parameters.parameter[oql].description</description>
- <direction>in</direction>
- <dataType>String</dataType>
- <metadataRef />
- <userDefined>false</userDefined>
- </parameter>
- </parameters>
- <configured>false</configured>
- </method>
- <method>
- <name>getPKList</name>
- <isListenerMethod>false</isListenerMethod>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].description</description>
- <innerID>69e67837-d004-46f7-abd6-5d34c084e702</innerID>
- <accessLevel>public</accessLevel>
- <subClassingMode>normal</subClassingMode>
- <returnValueType>com.kingdee.bos.dao.IObjectPK[]</returnValueType>
- <metadataRef />
- <transactionAttribute>Supports</transactionAttribute>
- <userDefined>false</userDefined>
- <userDefinedLogic />
- <parameters>
- <parameter>
- <name>filter</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].parameters.parameter[filter].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].parameters.parameter[filter].description</description>
- <direction>in</direction>
- <dataType>com.kingdee.bos.metadata.entity.FilterInfo</dataType>
- <metadataRef />
- <userDefined>false</userDefined>
- </parameter>
- <parameter>
- <name>sorter</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].parameters.parameter[sorter].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].parameters.parameter[sorter].description</description>
- <direction>in</direction>
- <dataType>com.kingdee.bos.metadata.entity.SorterItemCollection</dataType>
- <metadataRef />
- <userDefined>false</userDefined>
- </parameter>
- </parameters>
- <configured>false</configured>
- </method>
- <method>
- <name>getCollection</name>
- <isListenerMethod>false</isListenerMethod>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].description</description>
- <innerID>a8821e6a-1361-484e-91b1-fead6637921b</innerID>
- <accessLevel>public</accessLevel>
- <subClassingMode>normal</subClassingMode>
- <returnValueType>ObjectCollection</returnValueType>
- <metadataRef>com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry</metadataRef>
- <transactionAttribute>Supports</transactionAttribute>
- <userDefined>false</userDefined>
- <userDefinedLogic />
- <configured>false</configured>
- </method>
- <method>
- <name>getCollection</name>
- <isListenerMethod>false</isListenerMethod>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].description</description>
- <innerID>3fb5a842-0263-4fe1-bf1b-7f3fb70db1fc</innerID>
- <accessLevel>public</accessLevel>
- <subClassingMode>normal</subClassingMode>
- <returnValueType>ObjectCollection</returnValueType>
- <metadataRef>com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry</metadataRef>
- <transactionAttribute>Supports</transactionAttribute>
- <userDefined>false</userDefined>
- <userDefinedLogic />
- <parameters>
- <parameter>
- <name>view</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].parameters.parameter[view].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].parameters.parameter[view].description</description>
- <direction>in</direction>
- <dataType>com.kingdee.bos.metadata.entity.EntityViewInfo</dataType>
- <metadataRef />
- <userDefined>false</userDefined>
- </parameter>
- </parameters>
- <configured>false</configured>
- </method>
- <method>
- <name>getCollection</name>
- <isListenerMethod>false</isListenerMethod>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].description</description>
- <innerID>3333b933-2dfb-492e-937a-2545235fd526</innerID>
- <accessLevel>public</accessLevel>
- <subClassingMode>normal</subClassingMode>
- <returnValueType>ObjectCollection</returnValueType>
- <metadataRef>com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry</metadataRef>
- <transactionAttribute>Supports</transactionAttribute>
- <userDefined>false</userDefined>
- <userDefinedLogic />
- <parameters>
- <parameter>
- <name>oql</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].parameters.parameter[oql].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].parameters.parameter[oql].description</description>
- <direction>in</direction>
- <dataType>String</dataType>
- <metadataRef />
- <userDefined>false</userDefined>
- </parameter>
- </parameters>
- <configured>false</configured>
- </method>
- <method>
- <name>delete</name>
- <isListenerMethod>false</isListenerMethod>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].description</description>
- <innerID>7a914515-b290-4488-88e8-e7d1c509f9c8</innerID>
- <accessLevel>public</accessLevel>
- <subClassingMode>normal</subClassingMode>
- <returnValueType>com.kingdee.bos.dao.IObjectPK[]</returnValueType>
- <metadataRef />
- <transactionAttribute>Required</transactionAttribute>
- <userDefined>false</userDefined>
- <userDefinedLogic />
- <parameters>
- <parameter>
- <name>filter</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[filter].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[filter].description</description>
- <direction>in</direction>
- <dataType>com.kingdee.bos.metadata.entity.FilterInfo</dataType>
- <metadataRef />
- <userDefined>false</userDefined>
- </parameter>
- </parameters>
- <configured>false</configured>
- </method>
- <method>
- <name>delete</name>
- <isListenerMethod>false</isListenerMethod>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].description</description>
- <innerID>8aabe5b5-3d63-49a5-a23c-98b2e99ae47d</innerID>
- <accessLevel>public</accessLevel>
- <subClassingMode>normal</subClassingMode>
- <returnValueType>com.kingdee.bos.dao.IObjectPK[]</returnValueType>
- <metadataRef />
- <transactionAttribute>Required</transactionAttribute>
- <userDefined>false</userDefined>
- <userDefinedLogic />
- <parameters>
- <parameter>
- <name>oql</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[oql].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[oql].description</description>
- <direction>in</direction>
- <dataType>String</dataType>
- <metadataRef />
- <userDefined>false</userDefined>
- </parameter>
- </parameters>
- <configured>false</configured>
- </method>
- <method>
- <name>delete</name>
- <isListenerMethod>false</isListenerMethod>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].description</description>
- <innerID>86dd53bf-3fb4-4a3c-8a7a-d50aceac3faa</innerID>
- <accessLevel>public</accessLevel>
- <subClassingMode>normal</subClassingMode>
- <returnValueType />
- <metadataRef />
- <transactionAttribute>Required</transactionAttribute>
- <userDefined>false</userDefined>
- <userDefinedLogic />
- <parameters>
- <parameter>
- <name>arrayPK</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[arrayPK].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[arrayPK].description</description>
- <direction>in</direction>
- <dataType>com.kingdee.bos.dao.IObjectPK[]</dataType>
- <metadataRef />
- <userDefined>false</userDefined>
- </parameter>
- </parameters>
- <configured>false</configured>
- </method>
- </methods>
- <isAbstract>false</isAbstract>
- <bizUnitPK />
- <baseEntity>
- <key name="package" value="com.kingdee.eas.hr.base.app" />
- <key name="name" value="EmpInfoSinglePage" />
- </baseEntity>
- <table>
- <key name="package" value="com.kingdee.shr.compensation.app.integrate" />
- <key name="name" value="T_HR_SchemeBillEntry" />
- </table>
- <properties>
- <linkProperty>
- <name>bill</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[bill].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[bill].description</description>
- <userDefined>false</userDefined>
- <configured>false</configured>
- <mappingField>
- <key name="name" value="FBillID" />
- </mappingField>
- <relationship>
- <key name="package" value="com.kingdee.shr.compensation.app.integrate" />
- <key name="name" value="R_BatchSubmitShemeBillEntry_BatchSubmitShemeBill" />
- </relationship>
- </linkProperty>
- <linkProperty>
- <name>orgUnit</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[orgUnit].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[orgUnit].description</description>
- <userDefined>false</userDefined>
- <configured>false</configured>
- <mappingField>
- <key name="name" value="FOrgUnitID" />
- </mappingField>
- <relationship>
- <key name="package" value="com.kingdee.shr.compensation.app.integrate" />
- <key name="name" value="R_BatchSubmitShemeBillEntry_Org" />
- </relationship>
- </linkProperty>
- <ownProperty>
- <name>effectDate</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[effectDate].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[effectDate].description</description>
- <userDefined>false</userDefined>
- <configured>false</configured>
- <dataType>Date</dataType>
- <metadataRef />
- <isMultilingual>false</isMultilingual>
- <isNullable>false</isNullable>
- <formula />
- <length>0</length>
- <precision>0</precision>
- <decimalDigits>0</decimalDigits>
- <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[effectDate].defaultValue</defaultValue>
- <displayFormat />
- <mappingField>
- <key name="name" value="FEffectDate" />
- </mappingField>
- </ownProperty>
- <linkProperty>
- <name>adminOrgUnit</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[adminOrgUnit].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[adminOrgUnit].description</description>
- <userDefined>false</userDefined>
- <configured>false</configured>
- <mappingField>
- <key name="name" value="FAdminOrgUnitID" />
- </mappingField>
- <relationship>
- <key name="package" value="com.kingdee.shr.compensation.app.integrate" />
- <key name="name" value="R_BatchSubmitShemeBillEntry_AdminOrgUnit" />
- </relationship>
- </linkProperty>
- <linkProperty>
- <name>position</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[position].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[position].description</description>
- <userDefined>false</userDefined>
- <configured>false</configured>
- <mappingField>
- <key name="name" value="FPositionID" />
- </mappingField>
- <relationship>
- <key name="package" value="com.kingdee.shr.compensation.app.integrate" />
- <key name="name" value="R_BatchSubmitShemeBillEntry_Position" />
- </relationship>
- </linkProperty>
- <linkProperty>
- <name>cmpEmpORelation</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[cmpEmpORelation].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[cmpEmpORelation].description</description>
- <userDefined>false</userDefined>
- <configured>false</configured>
- <mappingField>
- <key name="name" value="FCmpEmpORelationID" />
- </mappingField>
- <relationship>
- <key name="package" value="com.kingdee.shr.compensation.app.integrate" />
- <key name="name" value="R_BatchSubmitShemeBillEntry_CmpEmpORelation" />
- </relationship>
- </linkProperty>
- <linkProperty>
- <name>currency</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[currency].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[currency].description</description>
- <userDefined>false</userDefined>
- <configured>false</configured>
- <mappingField>
- <key name="name" value="FCurrencyID" />
- </mappingField>
- <relationship>
- <key name="package" value="com.kingdee.shr.compensation.app.integrate" />
- <key name="name" value="R_BatchSubmitSchemeBillentry_Currency" />
- </relationship>
- </linkProperty>
- <ownProperty>
- <name>description</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[description].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[description].description</description>
- <userDefined>false</userDefined>
- <configured>false</configured>
- <dataType>String</dataType>
- <metadataRef />
- <isMultilingual>true</isMultilingual>
- <isNullable>false</isNullable>
- <formula />
- <length>512</length>
- <precision>0</precision>
- <decimalDigits>0</decimalDigits>
- <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[description].defaultValue</defaultValue>
- <displayFormat />
- <mappingField>
- <key name="name" value="FDescription" />
- </mappingField>
- </ownProperty>
- <ownProperty>
- <name>leffectDate</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[leffectDate].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[leffectDate].description</description>
- <userDefined>false</userDefined>
- <configured>false</configured>
- <dataType>Date</dataType>
- <metadataRef />
- <isMultilingual>false</isMultilingual>
- <isNullable>false</isNullable>
- <formula />
- <length>0</length>
- <precision>0</precision>
- <decimalDigits>0</decimalDigits>
- <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[leffectDate].defaultValue</defaultValue>
- <displayFormat />
- <mappingField>
- <key name="name" value="FLeffectDate" />
- </mappingField>
- </ownProperty>
- <ownProperty>
- <name>transDateTime</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transDateTime].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transDateTime].description</description>
- <userDefined>true</userDefined>
- <configured>false</configured>
- <dataType>TimeStamp</dataType>
- <metadataRef />
- <isMultilingual>false</isMultilingual>
- <isNullable>false</isNullable>
- <formula />
- <length>0</length>
- <precision>0</precision>
- <decimalDigits>0</decimalDigits>
- <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transDateTime].defaultValue</defaultValue>
- <displayFormat />
- <mappingField>
- <key name="name" value="FTransDateTime" />
- </mappingField>
- </ownProperty>
- <ownProperty>
- <name>transYear</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transYear].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transYear].description</description>
- <userDefined>true</userDefined>
- <configured>false</configured>
- <dataType>Integer</dataType>
- <metadataRef />
- <isMultilingual>false</isMultilingual>
- <isNullable>false</isNullable>
- <formula />
- <length>4</length>
- <precision>0</precision>
- <decimalDigits>0</decimalDigits>
- <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transYear].defaultValue</defaultValue>
- <displayFormat />
- <mappingField>
- <key name="name" value="FTransYear" />
- </mappingField>
- </ownProperty>
- <ownProperty>
- <name>transMonth</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transMonth].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transMonth].description</description>
- <userDefined>true</userDefined>
- <configured>false</configured>
- <dataType>Integer</dataType>
- <metadataRef />
- <isMultilingual>false</isMultilingual>
- <isNullable>false</isNullable>
- <formula />
- <length>2</length>
- <precision>0</precision>
- <decimalDigits>0</decimalDigits>
- <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transMonth].defaultValue</defaultValue>
- <displayFormat />
- <mappingField>
- <key name="name" value="FTransMonth" />
- </mappingField>
- </ownProperty>
- <ownProperty>
- <name>transTime</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transTime].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transTime].description</description>
- <userDefined>true</userDefined>
- <configured>false</configured>
- <dataType>Integer</dataType>
- <metadataRef />
- <isMultilingual>false</isMultilingual>
- <isNullable>false</isNullable>
- <formula />
- <length>4</length>
- <precision>0</precision>
- <decimalDigits>0</decimalDigits>
- <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transTime].defaultValue</defaultValue>
- <displayFormat />
- <mappingField>
- <key name="name" value="FTransTime" />
- </mappingField>
- </ownProperty>
- <linkProperty>
- <name>submitElement</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[submitElement].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[submitElement].description</description>
- <userDefined>false</userDefined>
- <configured>false</configured>
- <mappingField>
- <key name="name" value="FSubmitElementID" />
- </mappingField>
- <relationship>
- <key name="package" value="com.kingdee.shr.compensation.app.integrate" />
- <key name="name" value="R_BatchSubmitShemeBillEntry_SubmitElement" />
- </relationship>
- </linkProperty>
- <linkProperty>
- <name>hrOrgUnit</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[hrOrgUnit].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[hrOrgUnit].description</description>
- <userDefined>false</userDefined>
- <configured>false</configured>
- <mappingField>
- <key name="name" value="FHrOrgUnitID" />
- </mappingField>
- <relationship>
- <key name="package" value="com.kingdee.shr.compensation.app.integrate" />
- <key name="name" value="R_BachSubmitSchemeBIllEntry_HrOrgUnit" />
- </relationship>
- </linkProperty>
- <ownProperty>
- <name>calState</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[calState].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[calState].description</description>
- <userDefined>false</userDefined>
- <configured>false</configured>
- <dataType>Enum</dataType>
- <metadataRef>com.kingdee.shr.compensation.app.integrate.CalState</metadataRef>
- <isMultilingual>false</isMultilingual>
- <isNullable>false</isNullable>
- <formula />
- <length>0</length>
- <precision>0</precision>
- <decimalDigits>0</decimalDigits>
- <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[calState].defaultValue</defaultValue>
- <displayFormat />
- <mappingField>
- <key name="name" value="FCalState" />
- </mappingField>
- </ownProperty>
- <ownProperty>
- <name>salaryPeriod</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[salaryPeriod].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[salaryPeriod].description</description>
- <userDefined>false</userDefined>
- <configured>false</configured>
- <dataType>String</dataType>
- <metadataRef />
- <isMultilingual>false</isMultilingual>
- <isNullable>false</isNullable>
- <formula />
- <length>20</length>
- <precision>0</precision>
- <decimalDigits>0</decimalDigits>
- <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[salaryPeriod].defaultValue</defaultValue>
- <displayFormat />
- <mappingField>
- <key name="name" value="FSalaryPeriod" />
- </mappingField>
- </ownProperty>
- <ownProperty>
- <name>isCal</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[isCal].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[isCal].description</description>
- <userDefined>false</userDefined>
- <configured>false</configured>
- <dataType>Enum</dataType>
- <metadataRef>com.kingdee.shr.compensation.app.integrate.CalTableBaseIsCal</metadataRef>
- <isMultilingual>false</isMultilingual>
- <isNullable>false</isNullable>
- <formula />
- <length>0</length>
- <precision>0</precision>
- <decimalDigits>0</decimalDigits>
- <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[isCal].defaultValue</defaultValue>
- <displayFormat />
- <mappingField>
- <key name="name" value="FIsCal" />
- </mappingField>
- </ownProperty>
- <ownProperty>
- <name>billState</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[billState].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[billState].description</description>
- <userDefined>false</userDefined>
- <configured>false</configured>
- <dataType>Enum</dataType>
- <metadataRef>com.kingdee.eas.hr.base.HRBillStateEnum</metadataRef>
- <isMultilingual>false</isMultilingual>
- <isNullable>false</isNullable>
- <formula />
- <length>0</length>
- <precision>0</precision>
- <decimalDigits>0</decimalDigits>
- <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[billState].defaultValue</defaultValue>
- <displayFormat />
- <mappingField>
- <key name="name" value="FBillState" />
- </mappingField>
- </ownProperty>
- <ownProperty>
- <name>forwarncontent</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[forwarncontent].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[forwarncontent].description</description>
- <userDefined>true</userDefined>
- <configured>false</configured>
- <dataType>String</dataType>
- <metadataRef />
- <isMultilingual>false</isMultilingual>
- <isNullable>false</isNullable>
- <formula />
- <length>512</length>
- <precision>0</precision>
- <decimalDigits>0</decimalDigits>
- <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[forwarncontent].defaultValue</defaultValue>
- <displayFormat />
- <mappingField>
- <key name="name" value="FForwarnContent" />
- </mappingField>
- </ownProperty>
- <ownProperty>
- <name>dealStatus</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[dealStatus].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[dealStatus].description</description>
- <userDefined>false</userDefined>
- <configured>false</configured>
- <dataType>Enum</dataType>
- <metadataRef>com.kingdee.shr.compensation.app.integrate.DealStatus</metadataRef>
- <isMultilingual>false</isMultilingual>
- <isNullable>false</isNullable>
- <formula />
- <length>0</length>
- <precision>0</precision>
- <decimalDigits>0</decimalDigits>
- <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[dealStatus].defaultValue</defaultValue>
- <displayFormat />
- <mappingField>
- <key name="name" value="FDealStatus" />
- </mappingField>
- </ownProperty>
- <ownProperty>
- <name>startTime</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[startTime].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[startTime].description</description>
- <userDefined>true</userDefined>
- <configured>false</configured>
- <dataType>TimeStamp</dataType>
- <metadataRef />
- <isMultilingual>false</isMultilingual>
- <isNullable>false</isNullable>
- <formula />
- <length>0</length>
- <precision>0</precision>
- <decimalDigits>0</decimalDigits>
- <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[startTime].defaultValue</defaultValue>
- <displayFormat />
- <mappingField>
- <key name="name" value="CFStartTime" />
- </mappingField>
- </ownProperty>
- <ownProperty>
- <name>endTime</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[endTime].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[endTime].description</description>
- <userDefined>true</userDefined>
- <configured>false</configured>
- <dataType>TimeStamp</dataType>
- <metadataRef />
- <isMultilingual>false</isMultilingual>
- <isNullable>false</isNullable>
- <formula />
- <length>0</length>
- <precision>0</precision>
- <decimalDigits>0</decimalDigits>
- <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[endTime].defaultValue</defaultValue>
- <displayFormat />
- <mappingField>
- <key name="name" value="CFEndTime" />
- </mappingField>
- </ownProperty>
- <ownProperty>
- <name>restStartTime</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[restStartTime].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[restStartTime].description</description>
- <userDefined>true</userDefined>
- <configured>false</configured>
- <dataType>TimeStamp</dataType>
- <metadataRef />
- <isMultilingual>false</isMultilingual>
- <isNullable>false</isNullable>
- <formula />
- <length>0</length>
- <precision>0</precision>
- <decimalDigits>0</decimalDigits>
- <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[restStartTime].defaultValue</defaultValue>
- <displayFormat />
- <mappingField>
- <key name="name" value="CFRestStartTime" />
- </mappingField>
- </ownProperty>
- <ownProperty>
- <name>restEndTime</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[restEndTime].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[restEndTime].description</description>
- <userDefined>true</userDefined>
- <configured>false</configured>
- <dataType>TimeStamp</dataType>
- <metadataRef />
- <isMultilingual>false</isMultilingual>
- <isNullable>false</isNullable>
- <formula />
- <length>0</length>
- <precision>0</precision>
- <decimalDigits>0</decimalDigits>
- <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[restEndTime].defaultValue</defaultValue>
- <displayFormat />
- <mappingField>
- <key name="name" value="CFRestEndTime" />
- </mappingField>
- </ownProperty>
- </properties>
- <logicalKey>
- <name>id</name>
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].logicalKey[id].alias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].logicalKey[id].description</description>
- <keyClass>com.kingdee.bos.dao.IObjectPK</keyClass>
- <userDefined>false</userDefined>
- <keyProperties>
- <baseProperty>
- <key name="name" value="id" />
- </baseProperty>
- </keyProperties>
- </logicalKey>
- <defaultView>
- <name />
- <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].defaultViewalias</alias>
- <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].defaultViewdescription</description>
- <filter>
- <maskString />
- </filter>
- </defaultView>
- <resource>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="提报单分录" />
- <lang locale="zh_HK" value="提報單分錄" />
- <lang locale="zh_TW" value="提報單分錄" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].defaultView.filterextendedProperty.genBusinessImplCode">
- <lang locale="en_US" value="true" />
- <lang locale="zh_CN" value="true" />
- <lang locale="zh_TW" value="true" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].defaultViewalias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].defaultViewdescription">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].defaultViewextendedProperty.genBusinessImplCode">
- <lang locale="en_US" value="true" />
- <lang locale="zh_CN" value="true" />
- <lang locale="zh_TW" value="true" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].extendedProperty.genBusinessImplCode">
- <lang locale="en_US" value="true" />
- <lang locale="zh_CN" value="true" />
- <lang locale="zh_TW" value="true" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].logicalKey[id].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].logicalKey[id].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].parameters.parameter[model].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].parameters.parameter[model].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].parameters.parameter[pk].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].parameters.parameter[pk].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[arrayPK].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[arrayPK].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[filter].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[filter].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[oql].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[oql].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[pk].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[pk].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].parameters.parameter[filter].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].parameters.parameter[filter].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].parameters.parameter[oql].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].parameters.parameter[oql].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].parameters.parameter[pk].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].parameters.parameter[pk].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].parameters.parameter[oql].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].parameters.parameter[oql].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].parameters.parameter[view].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].parameters.parameter[view].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].parameters.parameter[filter].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].parameters.parameter[filter].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].parameters.parameter[oql].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].parameters.parameter[oql].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].parameters.parameter[sorter].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].parameters.parameter[sorter].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].parameters.parameter[oql].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].parameters.parameter[oql].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].parameters.parameter[pk].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].parameters.parameter[pk].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].parameters.parameter[selector].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].parameters.parameter[selector].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updateBigObject].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updateBigObject].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updateBigObject].parameters.parameter[model].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updateBigObject].parameters.parameter[model].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updateBigObject].parameters.parameter[pk].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updateBigObject].parameters.parameter[pk].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updatePartial].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updatePartial].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updatePartial].parameters.parameter[model].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updatePartial].parameters.parameter[model].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updatePartial].parameters.parameter[selector].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updatePartial].parameters.parameter[selector].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[update].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[update].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[update].parameters.parameter[model].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[update].parameters.parameter[model].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[update].parameters.parameter[pk].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[update].parameters.parameter[pk].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[adminOrgUnit].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="行政组织" />
- <lang locale="zh_HK" value="行政組織" />
- <lang locale="zh_TW" value="行政組織" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[adminOrgUnit].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="行政组织" />
- <lang locale="zh_HK" value="行政組織" />
- <lang locale="zh_TW" value="行政組織" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[bill].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="单据头" />
- <lang locale="zh_HK" value="單據頭" />
- <lang locale="zh_TW" value="單據頭" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[bill].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[cmpEmpORelation].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="发薪任职" />
- <lang locale="zh_HK" value="發薪任職" />
- <lang locale="zh_TW" value="發薪任職" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[cmpEmpORelation].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="发薪任职" />
- <lang locale="zh_HK" value="發薪任職" />
- <lang locale="zh_TW" value="發薪任職" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[currency].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="币别" />
- <lang locale="zh_HK" value="幣別" />
- <lang locale="zh_TW" value="幣別" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[currency].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="币别" />
- <lang locale="zh_HK" value="幣別" />
- <lang locale="zh_TW" value="幣別" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[hrOrgUnit].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="业务组织" />
- <lang locale="zh_HK" value="業務組織" />
- <lang locale="zh_TW" value="業務組織" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[hrOrgUnit].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="业务组织" />
- <lang locale="zh_HK" value="業務組織" />
- <lang locale="zh_TW" value="業務組織" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[orgUnit].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="提报组织" />
- <lang locale="zh_HK" value="提報組織" />
- <lang locale="zh_TW" value="提報組織" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[orgUnit].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[position].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="职位" />
- <lang locale="zh_HK" value="職位" />
- <lang locale="zh_TW" value="職位" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[position].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="职位" />
- <lang locale="zh_HK" value="職位" />
- <lang locale="zh_TW" value="職位" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[submitElement].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="提报要素" />
- <lang locale="zh_HK" value="提報要素" />
- <lang locale="zh_TW" value="提報要素" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[submitElement].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="提报要素" />
- <lang locale="zh_HK" value="提報要素" />
- <lang locale="zh_TW" value="提報要素" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[billState].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="单据状态" />
- <lang locale="zh_HK" value="單據狀態" />
- <lang locale="zh_TW" value="單據狀態" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[billState].defaultValue">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[billState].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[calState].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="核算状态" />
- <lang locale="zh_HK" value="核算狀態" />
- <lang locale="zh_TW" value="核算狀態" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[calState].defaultValue">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[calState].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[dealStatus].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="处理状态" />
- <lang locale="zh_HK" value="處理狀態" />
- <lang locale="zh_TW" value="處理狀態" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[dealStatus].defaultValue">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[dealStatus].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="提报单处理状态" />
- <lang locale="zh_HK" value="提報單處理狀態" />
- <lang locale="zh_TW" value="提報單處理狀態" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[description].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="描述" />
- <lang locale="zh_HK" value="描述" />
- <lang locale="zh_TW" value="描述" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[description].defaultValue">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[description].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="描述" />
- <lang locale="zh_HK" value="描述" />
- <lang locale="zh_TW" value="描述" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[effectDate].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="发生日期" />
- <lang locale="zh_HK" value="發生日期" />
- <lang locale="zh_TW" value="發生日期" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[effectDate].defaultValue">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[effectDate].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[endTime].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="结束时间" />
- <lang locale="zh_HK" value="結束時間" />
- <lang locale="zh_TW" value="結束時間" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[endTime].defaultValue">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[endTime].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="结束时间" />
- <lang locale="zh_HK" value="結束時間" />
- <lang locale="zh_TW" value="結束時間" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[forwarncontent].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="预警内容" />
- <lang locale="zh_HK" value="預警內容" />
- <lang locale="zh_TW" value="預警內容" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[forwarncontent].defaultValue">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[forwarncontent].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="存放校验后的预警内容" />
- <lang locale="zh_HK" value="存放校驗後的預警內容" />
- <lang locale="zh_TW" value="存放校驗後的預警內容" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[isCal].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="是否已核算" />
- <lang locale="zh_HK" value="是否已核算" />
- <lang locale="zh_TW" value="是否已核算" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[isCal].defaultValue">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[isCal].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[leffectDate].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="失效日期" />
- <lang locale="zh_HK" value="失效日期" />
- <lang locale="zh_TW" value="失效日期" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[leffectDate].defaultValue">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[leffectDate].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[restEndTime].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="休息结束时间" />
- <lang locale="zh_HK" value="休息結束時間" />
- <lang locale="zh_TW" value="休息結束時間" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[restEndTime].defaultValue">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[restEndTime].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="休息结束时间" />
- <lang locale="zh_HK" value="休息結束時間" />
- <lang locale="zh_TW" value="休息結束時間" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[restStartTime].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="休息开始时间" />
- <lang locale="zh_HK" value="休息開始時間" />
- <lang locale="zh_TW" value="休息開始時間" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[restStartTime].defaultValue">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[restStartTime].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="休息开始时间" />
- <lang locale="zh_HK" value="休息開始時間" />
- <lang locale="zh_TW" value="休息開始時間" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[salaryPeriod].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="薪资周期" />
- <lang locale="zh_HK" value="薪資週期" />
- <lang locale="zh_TW" value="薪資週期" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[salaryPeriod].defaultValue">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[salaryPeriod].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[startTime].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="开始时间" />
- <lang locale="zh_HK" value="開始時間" />
- <lang locale="zh_TW" value="開始時間" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[startTime].defaultValue">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[startTime].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="开始时间" />
- <lang locale="zh_HK" value="開始時間" />
- <lang locale="zh_TW" value="開始時間" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transDateTime].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="转薪资时间" />
- <lang locale="zh_HK" value="轉薪資時間" />
- <lang locale="zh_TW" value="轉薪資時間" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transDateTime].defaultValue">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transDateTime].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="转薪资时间" />
- <lang locale="zh_HK" value="轉薪資時間" />
- <lang locale="zh_TW" value="轉薪資時間" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transMonth].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="转薪资月" />
- <lang locale="zh_HK" value="轉薪資月" />
- <lang locale="zh_TW" value="轉薪資月" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transMonth].defaultValue">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transMonth].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="转薪资月" />
- <lang locale="zh_HK" value="轉薪資月" />
- <lang locale="zh_TW" value="轉薪資月" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transTime].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="转薪资次" />
- <lang locale="zh_HK" value="轉薪資次" />
- <lang locale="zh_TW" value="轉薪資次" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transTime].defaultValue">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transTime].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="转薪资次" />
- <lang locale="zh_HK" value="轉薪資次" />
- <lang locale="zh_TW" value="轉薪資次" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transYear].alias">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="转薪资年" />
- <lang locale="zh_HK" value="轉薪資年" />
- <lang locale="zh_TW" value="轉薪資年" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transYear].defaultValue">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="null" />
- <lang locale="zh_HK" value="null" />
- <lang locale="zh_TW" value="null" />
- </rs>
- <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transYear].description">
- <lang locale="en_US" value="null" />
- <lang locale="zh_CN" value="转薪资年" />
- <lang locale="zh_HK" value="轉薪資年" />
- <lang locale="zh_TW" value="轉薪資年" />
- </rs>
- </resource>
- </entityObject>
|