BatchSubmitShemeBillEntry.entity 102 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <entityObject xmlns="com.kingdee.bos.metadata">
  3. <package>com.kingdee.shr.compensation.app.integrate</package>
  4. <name>BatchSubmitShemeBillEntry</name>
  5. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].alias</alias>
  6. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].description</description>
  7. <userDefined>true</userDefined>
  8. <bosType>7F647776</bosType>
  9. <stereoType>false</stereoType>
  10. <businessImplName>com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry</businessImplName>
  11. <businessControllerName>com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntryController</businessControllerName>
  12. <accessLevel>public</accessLevel>
  13. <subClassingMode>normal</subClassingMode>
  14. <methods>
  15. <method>
  16. <name>exists</name>
  17. <isListenerMethod>false</isListenerMethod>
  18. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].alias</alias>
  19. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].description</description>
  20. <innerID>b6091f98-29e9-4077-9ccb-bdcf7d871bdb</innerID>
  21. <accessLevel>public</accessLevel>
  22. <subClassingMode>normal</subClassingMode>
  23. <returnValueType>Boolean</returnValueType>
  24. <metadataRef />
  25. <transactionAttribute>Supports</transactionAttribute>
  26. <userDefined>false</userDefined>
  27. <userDefinedLogic />
  28. <parameters>
  29. <parameter>
  30. <name>pk</name>
  31. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].parameters.parameter[pk].alias</alias>
  32. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].parameters.parameter[pk].description</description>
  33. <direction>in</direction>
  34. <dataType>com.kingdee.bos.dao.IObjectPK</dataType>
  35. <metadataRef />
  36. <userDefined>false</userDefined>
  37. </parameter>
  38. </parameters>
  39. <configured>false</configured>
  40. </method>
  41. <method>
  42. <name>exists</name>
  43. <isListenerMethod>false</isListenerMethod>
  44. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].alias</alias>
  45. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].description</description>
  46. <innerID>ef6f3257-04e3-4d4f-9fd6-008cf50a2f02</innerID>
  47. <accessLevel>public</accessLevel>
  48. <subClassingMode>normal</subClassingMode>
  49. <returnValueType>Boolean</returnValueType>
  50. <metadataRef />
  51. <transactionAttribute>Supports</transactionAttribute>
  52. <userDefined>false</userDefined>
  53. <userDefinedLogic />
  54. <parameters>
  55. <parameter>
  56. <name>filter</name>
  57. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].parameters.parameter[filter].alias</alias>
  58. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].parameters.parameter[filter].description</description>
  59. <direction>in</direction>
  60. <dataType>com.kingdee.bos.metadata.entity.FilterInfo</dataType>
  61. <metadataRef />
  62. <userDefined>false</userDefined>
  63. </parameter>
  64. </parameters>
  65. <configured>false</configured>
  66. </method>
  67. <method>
  68. <name>exists</name>
  69. <isListenerMethod>false</isListenerMethod>
  70. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].alias</alias>
  71. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].description</description>
  72. <innerID>888abe9f-554c-4d2b-bc4e-43ed910a05d7</innerID>
  73. <accessLevel>public</accessLevel>
  74. <subClassingMode>normal</subClassingMode>
  75. <returnValueType>Boolean</returnValueType>
  76. <metadataRef />
  77. <transactionAttribute>Supports</transactionAttribute>
  78. <userDefined>false</userDefined>
  79. <userDefinedLogic />
  80. <parameters>
  81. <parameter>
  82. <name>oql</name>
  83. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].parameters.parameter[oql].alias</alias>
  84. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].parameters.parameter[oql].description</description>
  85. <direction>in</direction>
  86. <dataType>String</dataType>
  87. <metadataRef />
  88. <userDefined>false</userDefined>
  89. </parameter>
  90. </parameters>
  91. <configured>false</configured>
  92. </method>
  93. <method>
  94. <name>getValue</name>
  95. <isListenerMethod>false</isListenerMethod>
  96. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].alias</alias>
  97. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].description</description>
  98. <innerID>dd710703-e457-48c9-a278-fbaafcbf59a4</innerID>
  99. <accessLevel>public</accessLevel>
  100. <subClassingMode>normal</subClassingMode>
  101. <returnValueType>ObjectValue</returnValueType>
  102. <metadataRef>com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry</metadataRef>
  103. <transactionAttribute>Supports</transactionAttribute>
  104. <userDefined>false</userDefined>
  105. <userDefinedLogic />
  106. <parameters>
  107. <parameter>
  108. <name>pk</name>
  109. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].parameters.parameter[pk].alias</alias>
  110. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].parameters.parameter[pk].description</description>
  111. <direction>in</direction>
  112. <dataType>com.kingdee.bos.dao.IObjectPK</dataType>
  113. <metadataRef />
  114. <userDefined>false</userDefined>
  115. </parameter>
  116. </parameters>
  117. <configured>false</configured>
  118. </method>
  119. <method>
  120. <name>getValue</name>
  121. <isListenerMethod>false</isListenerMethod>
  122. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].alias</alias>
  123. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].description</description>
  124. <innerID>fd93dc94-3dc3-4433-bd57-6c58c0d06f94</innerID>
  125. <accessLevel>public</accessLevel>
  126. <subClassingMode>normal</subClassingMode>
  127. <returnValueType>ObjectValue</returnValueType>
  128. <metadataRef>com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry</metadataRef>
  129. <transactionAttribute>Supports</transactionAttribute>
  130. <userDefined>false</userDefined>
  131. <userDefinedLogic />
  132. <parameters>
  133. <parameter>
  134. <name>pk</name>
  135. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].parameters.parameter[pk].alias</alias>
  136. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].parameters.parameter[pk].description</description>
  137. <direction>in</direction>
  138. <dataType>com.kingdee.bos.dao.IObjectPK</dataType>
  139. <metadataRef />
  140. <userDefined>false</userDefined>
  141. </parameter>
  142. <parameter>
  143. <name>selector</name>
  144. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].parameters.parameter[selector].alias</alias>
  145. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].parameters.parameter[selector].description</description>
  146. <direction>in</direction>
  147. <dataType>com.kingdee.bos.metadata.entity.SelectorItemCollection</dataType>
  148. <metadataRef />
  149. <userDefined>false</userDefined>
  150. </parameter>
  151. </parameters>
  152. <configured>false</configured>
  153. </method>
  154. <method>
  155. <name>getValue</name>
  156. <isListenerMethod>false</isListenerMethod>
  157. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].alias</alias>
  158. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].description</description>
  159. <innerID>9673fde2-970a-43be-981a-c696864e6009</innerID>
  160. <accessLevel>public</accessLevel>
  161. <subClassingMode>normal</subClassingMode>
  162. <returnValueType>ObjectValue</returnValueType>
  163. <metadataRef>com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry</metadataRef>
  164. <transactionAttribute>Supports</transactionAttribute>
  165. <userDefined>false</userDefined>
  166. <userDefinedLogic />
  167. <parameters>
  168. <parameter>
  169. <name>oql</name>
  170. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].parameters.parameter[oql].alias</alias>
  171. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].parameters.parameter[oql].description</description>
  172. <direction>in</direction>
  173. <dataType>String</dataType>
  174. <metadataRef />
  175. <userDefined>false</userDefined>
  176. </parameter>
  177. </parameters>
  178. <configured>false</configured>
  179. </method>
  180. <method>
  181. <name>addnew</name>
  182. <isListenerMethod>false</isListenerMethod>
  183. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].alias</alias>
  184. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].description</description>
  185. <innerID>aa3edab7-93f8-4482-a963-86dfb3e63df1</innerID>
  186. <accessLevel>public</accessLevel>
  187. <subClassingMode>normal</subClassingMode>
  188. <returnValueType>com.kingdee.bos.dao.IObjectPK</returnValueType>
  189. <metadataRef />
  190. <transactionAttribute>Required</transactionAttribute>
  191. <userDefined>false</userDefined>
  192. <userDefinedLogic />
  193. <parameters>
  194. <parameter>
  195. <name>model</name>
  196. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].parameters.parameter[model].alias</alias>
  197. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].parameters.parameter[model].description</description>
  198. <direction>in</direction>
  199. <dataType>ObjectValue</dataType>
  200. <metadataRef>com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry</metadataRef>
  201. <userDefined>false</userDefined>
  202. </parameter>
  203. </parameters>
  204. <configured>false</configured>
  205. </method>
  206. <method>
  207. <name>addnew</name>
  208. <isListenerMethod>false</isListenerMethod>
  209. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].alias</alias>
  210. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].description</description>
  211. <innerID>3bd12103-f686-4361-bbb1-9d454678265f</innerID>
  212. <accessLevel>public</accessLevel>
  213. <subClassingMode>normal</subClassingMode>
  214. <returnValueType />
  215. <metadataRef />
  216. <transactionAttribute>Required</transactionAttribute>
  217. <userDefined>false</userDefined>
  218. <userDefinedLogic />
  219. <parameters>
  220. <parameter>
  221. <name>pk</name>
  222. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].parameters.parameter[pk].alias</alias>
  223. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].parameters.parameter[pk].description</description>
  224. <direction>in</direction>
  225. <dataType>com.kingdee.bos.dao.IObjectPK</dataType>
  226. <metadataRef />
  227. <userDefined>false</userDefined>
  228. </parameter>
  229. <parameter>
  230. <name>model</name>
  231. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].parameters.parameter[model].alias</alias>
  232. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].parameters.parameter[model].description</description>
  233. <direction>in</direction>
  234. <dataType>ObjectValue</dataType>
  235. <metadataRef>com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry</metadataRef>
  236. <userDefined>false</userDefined>
  237. </parameter>
  238. </parameters>
  239. <configured>false</configured>
  240. </method>
  241. <method>
  242. <name>update</name>
  243. <isListenerMethod>false</isListenerMethod>
  244. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[update].alias</alias>
  245. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[update].description</description>
  246. <innerID>f8bbe9bd-0c0b-4af8-8c11-7ab902856ca0</innerID>
  247. <accessLevel>public</accessLevel>
  248. <subClassingMode>normal</subClassingMode>
  249. <returnValueType />
  250. <metadataRef />
  251. <transactionAttribute>Required</transactionAttribute>
  252. <userDefined>false</userDefined>
  253. <userDefinedLogic />
  254. <parameters>
  255. <parameter>
  256. <name>pk</name>
  257. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[update].parameters.parameter[pk].alias</alias>
  258. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[update].parameters.parameter[pk].description</description>
  259. <direction>in</direction>
  260. <dataType>com.kingdee.bos.dao.IObjectPK</dataType>
  261. <metadataRef />
  262. <userDefined>false</userDefined>
  263. </parameter>
  264. <parameter>
  265. <name>model</name>
  266. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[update].parameters.parameter[model].alias</alias>
  267. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[update].parameters.parameter[model].description</description>
  268. <direction>in</direction>
  269. <dataType>ObjectValue</dataType>
  270. <metadataRef>com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry</metadataRef>
  271. <userDefined>false</userDefined>
  272. </parameter>
  273. </parameters>
  274. <configured>false</configured>
  275. </method>
  276. <method>
  277. <name>updatePartial</name>
  278. <isListenerMethod>false</isListenerMethod>
  279. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updatePartial].alias</alias>
  280. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updatePartial].description</description>
  281. <innerID>2ccd1076-e398-4e1a-9670-08b5283bd030</innerID>
  282. <accessLevel>public</accessLevel>
  283. <subClassingMode>normal</subClassingMode>
  284. <returnValueType />
  285. <metadataRef />
  286. <transactionAttribute>Required</transactionAttribute>
  287. <userDefined>false</userDefined>
  288. <userDefinedLogic />
  289. <parameters>
  290. <parameter>
  291. <name>model</name>
  292. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updatePartial].parameters.parameter[model].alias</alias>
  293. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updatePartial].parameters.parameter[model].description</description>
  294. <direction>in</direction>
  295. <dataType>ObjectValue</dataType>
  296. <metadataRef>com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry</metadataRef>
  297. <userDefined>false</userDefined>
  298. </parameter>
  299. <parameter>
  300. <name>selector</name>
  301. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updatePartial].parameters.parameter[selector].alias</alias>
  302. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updatePartial].parameters.parameter[selector].description</description>
  303. <direction>in</direction>
  304. <dataType>com.kingdee.bos.metadata.entity.SelectorItemCollection</dataType>
  305. <metadataRef />
  306. <userDefined>false</userDefined>
  307. </parameter>
  308. </parameters>
  309. <configured>false</configured>
  310. </method>
  311. <method>
  312. <name>updateBigObject</name>
  313. <isListenerMethod>false</isListenerMethod>
  314. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updateBigObject].alias</alias>
  315. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updateBigObject].description</description>
  316. <innerID>9bdb5768-e24b-4f9d-8cee-917285e42c06</innerID>
  317. <accessLevel>public</accessLevel>
  318. <subClassingMode>normal</subClassingMode>
  319. <returnValueType />
  320. <metadataRef />
  321. <transactionAttribute>Required</transactionAttribute>
  322. <userDefined>false</userDefined>
  323. <userDefinedLogic />
  324. <parameters>
  325. <parameter>
  326. <name>pk</name>
  327. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updateBigObject].parameters.parameter[pk].alias</alias>
  328. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updateBigObject].parameters.parameter[pk].description</description>
  329. <direction>in</direction>
  330. <dataType>com.kingdee.bos.dao.IObjectPK</dataType>
  331. <metadataRef />
  332. <userDefined>false</userDefined>
  333. </parameter>
  334. <parameter>
  335. <name>model</name>
  336. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updateBigObject].parameters.parameter[model].alias</alias>
  337. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updateBigObject].parameters.parameter[model].description</description>
  338. <direction>in</direction>
  339. <dataType>ObjectValue</dataType>
  340. <metadataRef>com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry</metadataRef>
  341. <userDefined>false</userDefined>
  342. </parameter>
  343. </parameters>
  344. <configured>false</configured>
  345. </method>
  346. <method>
  347. <name>delete</name>
  348. <isListenerMethod>false</isListenerMethod>
  349. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].alias</alias>
  350. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].description</description>
  351. <innerID>2c84ee93-0922-438d-b356-bef943a69b51</innerID>
  352. <accessLevel>public</accessLevel>
  353. <subClassingMode>normal</subClassingMode>
  354. <returnValueType />
  355. <metadataRef />
  356. <transactionAttribute>Required</transactionAttribute>
  357. <userDefined>false</userDefined>
  358. <userDefinedLogic />
  359. <parameters>
  360. <parameter>
  361. <name>pk</name>
  362. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[pk].alias</alias>
  363. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[pk].description</description>
  364. <direction>in</direction>
  365. <dataType>com.kingdee.bos.dao.IObjectPK</dataType>
  366. <metadataRef />
  367. <userDefined>false</userDefined>
  368. </parameter>
  369. </parameters>
  370. <configured>false</configured>
  371. </method>
  372. <method>
  373. <name>getPKList</name>
  374. <isListenerMethod>false</isListenerMethod>
  375. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].alias</alias>
  376. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].description</description>
  377. <innerID>66e9b214-f106-4a7a-b1bf-0d8fd3bf5798</innerID>
  378. <accessLevel>public</accessLevel>
  379. <subClassingMode>normal</subClassingMode>
  380. <returnValueType>com.kingdee.bos.dao.IObjectPK[]</returnValueType>
  381. <metadataRef />
  382. <transactionAttribute>Supports</transactionAttribute>
  383. <userDefined>false</userDefined>
  384. <userDefinedLogic />
  385. <configured>false</configured>
  386. </method>
  387. <method>
  388. <name>getPKList</name>
  389. <isListenerMethod>false</isListenerMethod>
  390. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].alias</alias>
  391. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].description</description>
  392. <innerID>888827b4-6b1d-4d4a-a59f-f5235bd4d138</innerID>
  393. <accessLevel>public</accessLevel>
  394. <subClassingMode>normal</subClassingMode>
  395. <returnValueType>com.kingdee.bos.dao.IObjectPK[]</returnValueType>
  396. <metadataRef />
  397. <transactionAttribute>Supports</transactionAttribute>
  398. <userDefined>false</userDefined>
  399. <userDefinedLogic />
  400. <parameters>
  401. <parameter>
  402. <name>oql</name>
  403. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].parameters.parameter[oql].alias</alias>
  404. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].parameters.parameter[oql].description</description>
  405. <direction>in</direction>
  406. <dataType>String</dataType>
  407. <metadataRef />
  408. <userDefined>false</userDefined>
  409. </parameter>
  410. </parameters>
  411. <configured>false</configured>
  412. </method>
  413. <method>
  414. <name>getPKList</name>
  415. <isListenerMethod>false</isListenerMethod>
  416. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].alias</alias>
  417. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].description</description>
  418. <innerID>69e67837-d004-46f7-abd6-5d34c084e702</innerID>
  419. <accessLevel>public</accessLevel>
  420. <subClassingMode>normal</subClassingMode>
  421. <returnValueType>com.kingdee.bos.dao.IObjectPK[]</returnValueType>
  422. <metadataRef />
  423. <transactionAttribute>Supports</transactionAttribute>
  424. <userDefined>false</userDefined>
  425. <userDefinedLogic />
  426. <parameters>
  427. <parameter>
  428. <name>filter</name>
  429. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].parameters.parameter[filter].alias</alias>
  430. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].parameters.parameter[filter].description</description>
  431. <direction>in</direction>
  432. <dataType>com.kingdee.bos.metadata.entity.FilterInfo</dataType>
  433. <metadataRef />
  434. <userDefined>false</userDefined>
  435. </parameter>
  436. <parameter>
  437. <name>sorter</name>
  438. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].parameters.parameter[sorter].alias</alias>
  439. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].parameters.parameter[sorter].description</description>
  440. <direction>in</direction>
  441. <dataType>com.kingdee.bos.metadata.entity.SorterItemCollection</dataType>
  442. <metadataRef />
  443. <userDefined>false</userDefined>
  444. </parameter>
  445. </parameters>
  446. <configured>false</configured>
  447. </method>
  448. <method>
  449. <name>getCollection</name>
  450. <isListenerMethod>false</isListenerMethod>
  451. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].alias</alias>
  452. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].description</description>
  453. <innerID>a8821e6a-1361-484e-91b1-fead6637921b</innerID>
  454. <accessLevel>public</accessLevel>
  455. <subClassingMode>normal</subClassingMode>
  456. <returnValueType>ObjectCollection</returnValueType>
  457. <metadataRef>com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry</metadataRef>
  458. <transactionAttribute>Supports</transactionAttribute>
  459. <userDefined>false</userDefined>
  460. <userDefinedLogic />
  461. <configured>false</configured>
  462. </method>
  463. <method>
  464. <name>getCollection</name>
  465. <isListenerMethod>false</isListenerMethod>
  466. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].alias</alias>
  467. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].description</description>
  468. <innerID>3fb5a842-0263-4fe1-bf1b-7f3fb70db1fc</innerID>
  469. <accessLevel>public</accessLevel>
  470. <subClassingMode>normal</subClassingMode>
  471. <returnValueType>ObjectCollection</returnValueType>
  472. <metadataRef>com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry</metadataRef>
  473. <transactionAttribute>Supports</transactionAttribute>
  474. <userDefined>false</userDefined>
  475. <userDefinedLogic />
  476. <parameters>
  477. <parameter>
  478. <name>view</name>
  479. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].parameters.parameter[view].alias</alias>
  480. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].parameters.parameter[view].description</description>
  481. <direction>in</direction>
  482. <dataType>com.kingdee.bos.metadata.entity.EntityViewInfo</dataType>
  483. <metadataRef />
  484. <userDefined>false</userDefined>
  485. </parameter>
  486. </parameters>
  487. <configured>false</configured>
  488. </method>
  489. <method>
  490. <name>getCollection</name>
  491. <isListenerMethod>false</isListenerMethod>
  492. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].alias</alias>
  493. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].description</description>
  494. <innerID>3333b933-2dfb-492e-937a-2545235fd526</innerID>
  495. <accessLevel>public</accessLevel>
  496. <subClassingMode>normal</subClassingMode>
  497. <returnValueType>ObjectCollection</returnValueType>
  498. <metadataRef>com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry</metadataRef>
  499. <transactionAttribute>Supports</transactionAttribute>
  500. <userDefined>false</userDefined>
  501. <userDefinedLogic />
  502. <parameters>
  503. <parameter>
  504. <name>oql</name>
  505. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].parameters.parameter[oql].alias</alias>
  506. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].parameters.parameter[oql].description</description>
  507. <direction>in</direction>
  508. <dataType>String</dataType>
  509. <metadataRef />
  510. <userDefined>false</userDefined>
  511. </parameter>
  512. </parameters>
  513. <configured>false</configured>
  514. </method>
  515. <method>
  516. <name>delete</name>
  517. <isListenerMethod>false</isListenerMethod>
  518. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].alias</alias>
  519. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].description</description>
  520. <innerID>7a914515-b290-4488-88e8-e7d1c509f9c8</innerID>
  521. <accessLevel>public</accessLevel>
  522. <subClassingMode>normal</subClassingMode>
  523. <returnValueType>com.kingdee.bos.dao.IObjectPK[]</returnValueType>
  524. <metadataRef />
  525. <transactionAttribute>Required</transactionAttribute>
  526. <userDefined>false</userDefined>
  527. <userDefinedLogic />
  528. <parameters>
  529. <parameter>
  530. <name>filter</name>
  531. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[filter].alias</alias>
  532. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[filter].description</description>
  533. <direction>in</direction>
  534. <dataType>com.kingdee.bos.metadata.entity.FilterInfo</dataType>
  535. <metadataRef />
  536. <userDefined>false</userDefined>
  537. </parameter>
  538. </parameters>
  539. <configured>false</configured>
  540. </method>
  541. <method>
  542. <name>delete</name>
  543. <isListenerMethod>false</isListenerMethod>
  544. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].alias</alias>
  545. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].description</description>
  546. <innerID>8aabe5b5-3d63-49a5-a23c-98b2e99ae47d</innerID>
  547. <accessLevel>public</accessLevel>
  548. <subClassingMode>normal</subClassingMode>
  549. <returnValueType>com.kingdee.bos.dao.IObjectPK[]</returnValueType>
  550. <metadataRef />
  551. <transactionAttribute>Required</transactionAttribute>
  552. <userDefined>false</userDefined>
  553. <userDefinedLogic />
  554. <parameters>
  555. <parameter>
  556. <name>oql</name>
  557. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[oql].alias</alias>
  558. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[oql].description</description>
  559. <direction>in</direction>
  560. <dataType>String</dataType>
  561. <metadataRef />
  562. <userDefined>false</userDefined>
  563. </parameter>
  564. </parameters>
  565. <configured>false</configured>
  566. </method>
  567. <method>
  568. <name>delete</name>
  569. <isListenerMethod>false</isListenerMethod>
  570. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].alias</alias>
  571. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].description</description>
  572. <innerID>86dd53bf-3fb4-4a3c-8a7a-d50aceac3faa</innerID>
  573. <accessLevel>public</accessLevel>
  574. <subClassingMode>normal</subClassingMode>
  575. <returnValueType />
  576. <metadataRef />
  577. <transactionAttribute>Required</transactionAttribute>
  578. <userDefined>false</userDefined>
  579. <userDefinedLogic />
  580. <parameters>
  581. <parameter>
  582. <name>arrayPK</name>
  583. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[arrayPK].alias</alias>
  584. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[arrayPK].description</description>
  585. <direction>in</direction>
  586. <dataType>com.kingdee.bos.dao.IObjectPK[]</dataType>
  587. <metadataRef />
  588. <userDefined>false</userDefined>
  589. </parameter>
  590. </parameters>
  591. <configured>false</configured>
  592. </method>
  593. </methods>
  594. <isAbstract>false</isAbstract>
  595. <bizUnitPK />
  596. <baseEntity>
  597. <key name="package" value="com.kingdee.eas.hr.base.app" />
  598. <key name="name" value="EmpInfoSinglePage" />
  599. </baseEntity>
  600. <table>
  601. <key name="package" value="com.kingdee.shr.compensation.app.integrate" />
  602. <key name="name" value="T_HR_SchemeBillEntry" />
  603. </table>
  604. <properties>
  605. <linkProperty>
  606. <name>bill</name>
  607. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[bill].alias</alias>
  608. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[bill].description</description>
  609. <userDefined>false</userDefined>
  610. <configured>false</configured>
  611. <mappingField>
  612. <key name="name" value="FBillID" />
  613. </mappingField>
  614. <relationship>
  615. <key name="package" value="com.kingdee.shr.compensation.app.integrate" />
  616. <key name="name" value="R_BatchSubmitShemeBillEntry_BatchSubmitShemeBill" />
  617. </relationship>
  618. </linkProperty>
  619. <linkProperty>
  620. <name>orgUnit</name>
  621. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[orgUnit].alias</alias>
  622. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[orgUnit].description</description>
  623. <userDefined>false</userDefined>
  624. <configured>false</configured>
  625. <mappingField>
  626. <key name="name" value="FOrgUnitID" />
  627. </mappingField>
  628. <relationship>
  629. <key name="package" value="com.kingdee.shr.compensation.app.integrate" />
  630. <key name="name" value="R_BatchSubmitShemeBillEntry_Org" />
  631. </relationship>
  632. </linkProperty>
  633. <ownProperty>
  634. <name>effectDate</name>
  635. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[effectDate].alias</alias>
  636. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[effectDate].description</description>
  637. <userDefined>false</userDefined>
  638. <configured>false</configured>
  639. <dataType>Date</dataType>
  640. <metadataRef />
  641. <isMultilingual>false</isMultilingual>
  642. <isNullable>false</isNullable>
  643. <formula />
  644. <length>0</length>
  645. <precision>0</precision>
  646. <decimalDigits>0</decimalDigits>
  647. <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[effectDate].defaultValue</defaultValue>
  648. <displayFormat />
  649. <mappingField>
  650. <key name="name" value="FEffectDate" />
  651. </mappingField>
  652. </ownProperty>
  653. <linkProperty>
  654. <name>adminOrgUnit</name>
  655. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[adminOrgUnit].alias</alias>
  656. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[adminOrgUnit].description</description>
  657. <userDefined>false</userDefined>
  658. <configured>false</configured>
  659. <mappingField>
  660. <key name="name" value="FAdminOrgUnitID" />
  661. </mappingField>
  662. <relationship>
  663. <key name="package" value="com.kingdee.shr.compensation.app.integrate" />
  664. <key name="name" value="R_BatchSubmitShemeBillEntry_AdminOrgUnit" />
  665. </relationship>
  666. </linkProperty>
  667. <linkProperty>
  668. <name>position</name>
  669. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[position].alias</alias>
  670. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[position].description</description>
  671. <userDefined>false</userDefined>
  672. <configured>false</configured>
  673. <mappingField>
  674. <key name="name" value="FPositionID" />
  675. </mappingField>
  676. <relationship>
  677. <key name="package" value="com.kingdee.shr.compensation.app.integrate" />
  678. <key name="name" value="R_BatchSubmitShemeBillEntry_Position" />
  679. </relationship>
  680. </linkProperty>
  681. <linkProperty>
  682. <name>cmpEmpORelation</name>
  683. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[cmpEmpORelation].alias</alias>
  684. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[cmpEmpORelation].description</description>
  685. <userDefined>false</userDefined>
  686. <configured>false</configured>
  687. <mappingField>
  688. <key name="name" value="FCmpEmpORelationID" />
  689. </mappingField>
  690. <relationship>
  691. <key name="package" value="com.kingdee.shr.compensation.app.integrate" />
  692. <key name="name" value="R_BatchSubmitShemeBillEntry_CmpEmpORelation" />
  693. </relationship>
  694. </linkProperty>
  695. <linkProperty>
  696. <name>currency</name>
  697. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[currency].alias</alias>
  698. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[currency].description</description>
  699. <userDefined>false</userDefined>
  700. <configured>false</configured>
  701. <mappingField>
  702. <key name="name" value="FCurrencyID" />
  703. </mappingField>
  704. <relationship>
  705. <key name="package" value="com.kingdee.shr.compensation.app.integrate" />
  706. <key name="name" value="R_BatchSubmitSchemeBillentry_Currency" />
  707. </relationship>
  708. </linkProperty>
  709. <ownProperty>
  710. <name>description</name>
  711. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[description].alias</alias>
  712. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[description].description</description>
  713. <userDefined>false</userDefined>
  714. <configured>false</configured>
  715. <dataType>String</dataType>
  716. <metadataRef />
  717. <isMultilingual>true</isMultilingual>
  718. <isNullable>false</isNullable>
  719. <formula />
  720. <length>512</length>
  721. <precision>0</precision>
  722. <decimalDigits>0</decimalDigits>
  723. <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[description].defaultValue</defaultValue>
  724. <displayFormat />
  725. <mappingField>
  726. <key name="name" value="FDescription" />
  727. </mappingField>
  728. </ownProperty>
  729. <ownProperty>
  730. <name>leffectDate</name>
  731. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[leffectDate].alias</alias>
  732. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[leffectDate].description</description>
  733. <userDefined>false</userDefined>
  734. <configured>false</configured>
  735. <dataType>Date</dataType>
  736. <metadataRef />
  737. <isMultilingual>false</isMultilingual>
  738. <isNullable>false</isNullable>
  739. <formula />
  740. <length>0</length>
  741. <precision>0</precision>
  742. <decimalDigits>0</decimalDigits>
  743. <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[leffectDate].defaultValue</defaultValue>
  744. <displayFormat />
  745. <mappingField>
  746. <key name="name" value="FLeffectDate" />
  747. </mappingField>
  748. </ownProperty>
  749. <ownProperty>
  750. <name>transDateTime</name>
  751. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transDateTime].alias</alias>
  752. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transDateTime].description</description>
  753. <userDefined>true</userDefined>
  754. <configured>false</configured>
  755. <dataType>TimeStamp</dataType>
  756. <metadataRef />
  757. <isMultilingual>false</isMultilingual>
  758. <isNullable>false</isNullable>
  759. <formula />
  760. <length>0</length>
  761. <precision>0</precision>
  762. <decimalDigits>0</decimalDigits>
  763. <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transDateTime].defaultValue</defaultValue>
  764. <displayFormat />
  765. <mappingField>
  766. <key name="name" value="FTransDateTime" />
  767. </mappingField>
  768. </ownProperty>
  769. <ownProperty>
  770. <name>transYear</name>
  771. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transYear].alias</alias>
  772. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transYear].description</description>
  773. <userDefined>true</userDefined>
  774. <configured>false</configured>
  775. <dataType>Integer</dataType>
  776. <metadataRef />
  777. <isMultilingual>false</isMultilingual>
  778. <isNullable>false</isNullable>
  779. <formula />
  780. <length>4</length>
  781. <precision>0</precision>
  782. <decimalDigits>0</decimalDigits>
  783. <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transYear].defaultValue</defaultValue>
  784. <displayFormat />
  785. <mappingField>
  786. <key name="name" value="FTransYear" />
  787. </mappingField>
  788. </ownProperty>
  789. <ownProperty>
  790. <name>transMonth</name>
  791. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transMonth].alias</alias>
  792. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transMonth].description</description>
  793. <userDefined>true</userDefined>
  794. <configured>false</configured>
  795. <dataType>Integer</dataType>
  796. <metadataRef />
  797. <isMultilingual>false</isMultilingual>
  798. <isNullable>false</isNullable>
  799. <formula />
  800. <length>2</length>
  801. <precision>0</precision>
  802. <decimalDigits>0</decimalDigits>
  803. <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transMonth].defaultValue</defaultValue>
  804. <displayFormat />
  805. <mappingField>
  806. <key name="name" value="FTransMonth" />
  807. </mappingField>
  808. </ownProperty>
  809. <ownProperty>
  810. <name>transTime</name>
  811. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transTime].alias</alias>
  812. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transTime].description</description>
  813. <userDefined>true</userDefined>
  814. <configured>false</configured>
  815. <dataType>Integer</dataType>
  816. <metadataRef />
  817. <isMultilingual>false</isMultilingual>
  818. <isNullable>false</isNullable>
  819. <formula />
  820. <length>4</length>
  821. <precision>0</precision>
  822. <decimalDigits>0</decimalDigits>
  823. <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transTime].defaultValue</defaultValue>
  824. <displayFormat />
  825. <mappingField>
  826. <key name="name" value="FTransTime" />
  827. </mappingField>
  828. </ownProperty>
  829. <linkProperty>
  830. <name>submitElement</name>
  831. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[submitElement].alias</alias>
  832. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[submitElement].description</description>
  833. <userDefined>false</userDefined>
  834. <configured>false</configured>
  835. <mappingField>
  836. <key name="name" value="FSubmitElementID" />
  837. </mappingField>
  838. <relationship>
  839. <key name="package" value="com.kingdee.shr.compensation.app.integrate" />
  840. <key name="name" value="R_BatchSubmitShemeBillEntry_SubmitElement" />
  841. </relationship>
  842. </linkProperty>
  843. <linkProperty>
  844. <name>hrOrgUnit</name>
  845. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[hrOrgUnit].alias</alias>
  846. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[hrOrgUnit].description</description>
  847. <userDefined>false</userDefined>
  848. <configured>false</configured>
  849. <mappingField>
  850. <key name="name" value="FHrOrgUnitID" />
  851. </mappingField>
  852. <relationship>
  853. <key name="package" value="com.kingdee.shr.compensation.app.integrate" />
  854. <key name="name" value="R_BachSubmitSchemeBIllEntry_HrOrgUnit" />
  855. </relationship>
  856. </linkProperty>
  857. <ownProperty>
  858. <name>calState</name>
  859. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[calState].alias</alias>
  860. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[calState].description</description>
  861. <userDefined>false</userDefined>
  862. <configured>false</configured>
  863. <dataType>Enum</dataType>
  864. <metadataRef>com.kingdee.shr.compensation.app.integrate.CalState</metadataRef>
  865. <isMultilingual>false</isMultilingual>
  866. <isNullable>false</isNullable>
  867. <formula />
  868. <length>0</length>
  869. <precision>0</precision>
  870. <decimalDigits>0</decimalDigits>
  871. <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[calState].defaultValue</defaultValue>
  872. <displayFormat />
  873. <mappingField>
  874. <key name="name" value="FCalState" />
  875. </mappingField>
  876. </ownProperty>
  877. <ownProperty>
  878. <name>salaryPeriod</name>
  879. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[salaryPeriod].alias</alias>
  880. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[salaryPeriod].description</description>
  881. <userDefined>false</userDefined>
  882. <configured>false</configured>
  883. <dataType>String</dataType>
  884. <metadataRef />
  885. <isMultilingual>false</isMultilingual>
  886. <isNullable>false</isNullable>
  887. <formula />
  888. <length>20</length>
  889. <precision>0</precision>
  890. <decimalDigits>0</decimalDigits>
  891. <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[salaryPeriod].defaultValue</defaultValue>
  892. <displayFormat />
  893. <mappingField>
  894. <key name="name" value="FSalaryPeriod" />
  895. </mappingField>
  896. </ownProperty>
  897. <ownProperty>
  898. <name>isCal</name>
  899. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[isCal].alias</alias>
  900. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[isCal].description</description>
  901. <userDefined>false</userDefined>
  902. <configured>false</configured>
  903. <dataType>Enum</dataType>
  904. <metadataRef>com.kingdee.shr.compensation.app.integrate.CalTableBaseIsCal</metadataRef>
  905. <isMultilingual>false</isMultilingual>
  906. <isNullable>false</isNullable>
  907. <formula />
  908. <length>0</length>
  909. <precision>0</precision>
  910. <decimalDigits>0</decimalDigits>
  911. <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[isCal].defaultValue</defaultValue>
  912. <displayFormat />
  913. <mappingField>
  914. <key name="name" value="FIsCal" />
  915. </mappingField>
  916. </ownProperty>
  917. <ownProperty>
  918. <name>billState</name>
  919. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[billState].alias</alias>
  920. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[billState].description</description>
  921. <userDefined>false</userDefined>
  922. <configured>false</configured>
  923. <dataType>Enum</dataType>
  924. <metadataRef>com.kingdee.eas.hr.base.HRBillStateEnum</metadataRef>
  925. <isMultilingual>false</isMultilingual>
  926. <isNullable>false</isNullable>
  927. <formula />
  928. <length>0</length>
  929. <precision>0</precision>
  930. <decimalDigits>0</decimalDigits>
  931. <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[billState].defaultValue</defaultValue>
  932. <displayFormat />
  933. <mappingField>
  934. <key name="name" value="FBillState" />
  935. </mappingField>
  936. </ownProperty>
  937. <ownProperty>
  938. <name>forwarncontent</name>
  939. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[forwarncontent].alias</alias>
  940. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[forwarncontent].description</description>
  941. <userDefined>true</userDefined>
  942. <configured>false</configured>
  943. <dataType>String</dataType>
  944. <metadataRef />
  945. <isMultilingual>false</isMultilingual>
  946. <isNullable>false</isNullable>
  947. <formula />
  948. <length>512</length>
  949. <precision>0</precision>
  950. <decimalDigits>0</decimalDigits>
  951. <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[forwarncontent].defaultValue</defaultValue>
  952. <displayFormat />
  953. <mappingField>
  954. <key name="name" value="FForwarnContent" />
  955. </mappingField>
  956. </ownProperty>
  957. <ownProperty>
  958. <name>dealStatus</name>
  959. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[dealStatus].alias</alias>
  960. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[dealStatus].description</description>
  961. <userDefined>false</userDefined>
  962. <configured>false</configured>
  963. <dataType>Enum</dataType>
  964. <metadataRef>com.kingdee.shr.compensation.app.integrate.DealStatus</metadataRef>
  965. <isMultilingual>false</isMultilingual>
  966. <isNullable>false</isNullable>
  967. <formula />
  968. <length>0</length>
  969. <precision>0</precision>
  970. <decimalDigits>0</decimalDigits>
  971. <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[dealStatus].defaultValue</defaultValue>
  972. <displayFormat />
  973. <mappingField>
  974. <key name="name" value="FDealStatus" />
  975. </mappingField>
  976. </ownProperty>
  977. <ownProperty>
  978. <name>startTime</name>
  979. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[startTime].alias</alias>
  980. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[startTime].description</description>
  981. <userDefined>true</userDefined>
  982. <configured>false</configured>
  983. <dataType>TimeStamp</dataType>
  984. <metadataRef />
  985. <isMultilingual>false</isMultilingual>
  986. <isNullable>false</isNullable>
  987. <formula />
  988. <length>0</length>
  989. <precision>0</precision>
  990. <decimalDigits>0</decimalDigits>
  991. <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[startTime].defaultValue</defaultValue>
  992. <displayFormat />
  993. <mappingField>
  994. <key name="name" value="CFStartTime" />
  995. </mappingField>
  996. </ownProperty>
  997. <ownProperty>
  998. <name>endTime</name>
  999. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[endTime].alias</alias>
  1000. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[endTime].description</description>
  1001. <userDefined>true</userDefined>
  1002. <configured>false</configured>
  1003. <dataType>TimeStamp</dataType>
  1004. <metadataRef />
  1005. <isMultilingual>false</isMultilingual>
  1006. <isNullable>false</isNullable>
  1007. <formula />
  1008. <length>0</length>
  1009. <precision>0</precision>
  1010. <decimalDigits>0</decimalDigits>
  1011. <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[endTime].defaultValue</defaultValue>
  1012. <displayFormat />
  1013. <mappingField>
  1014. <key name="name" value="CFEndTime" />
  1015. </mappingField>
  1016. </ownProperty>
  1017. <ownProperty>
  1018. <name>restStartTime</name>
  1019. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[restStartTime].alias</alias>
  1020. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[restStartTime].description</description>
  1021. <userDefined>true</userDefined>
  1022. <configured>false</configured>
  1023. <dataType>TimeStamp</dataType>
  1024. <metadataRef />
  1025. <isMultilingual>false</isMultilingual>
  1026. <isNullable>false</isNullable>
  1027. <formula />
  1028. <length>0</length>
  1029. <precision>0</precision>
  1030. <decimalDigits>0</decimalDigits>
  1031. <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[restStartTime].defaultValue</defaultValue>
  1032. <displayFormat />
  1033. <mappingField>
  1034. <key name="name" value="CFRestStartTime" />
  1035. </mappingField>
  1036. </ownProperty>
  1037. <ownProperty>
  1038. <name>restEndTime</name>
  1039. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[restEndTime].alias</alias>
  1040. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[restEndTime].description</description>
  1041. <userDefined>true</userDefined>
  1042. <configured>false</configured>
  1043. <dataType>TimeStamp</dataType>
  1044. <metadataRef />
  1045. <isMultilingual>false</isMultilingual>
  1046. <isNullable>false</isNullable>
  1047. <formula />
  1048. <length>0</length>
  1049. <precision>0</precision>
  1050. <decimalDigits>0</decimalDigits>
  1051. <defaultValue>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[restEndTime].defaultValue</defaultValue>
  1052. <displayFormat />
  1053. <mappingField>
  1054. <key name="name" value="CFRestEndTime" />
  1055. </mappingField>
  1056. </ownProperty>
  1057. </properties>
  1058. <logicalKey>
  1059. <name>id</name>
  1060. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].logicalKey[id].alias</alias>
  1061. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].logicalKey[id].description</description>
  1062. <keyClass>com.kingdee.bos.dao.IObjectPK</keyClass>
  1063. <userDefined>false</userDefined>
  1064. <keyProperties>
  1065. <baseProperty>
  1066. <key name="name" value="id" />
  1067. </baseProperty>
  1068. </keyProperties>
  1069. </logicalKey>
  1070. <defaultView>
  1071. <name />
  1072. <alias>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].defaultViewalias</alias>
  1073. <description>entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].defaultViewdescription</description>
  1074. <filter>
  1075. <maskString />
  1076. </filter>
  1077. </defaultView>
  1078. <resource>
  1079. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].alias">
  1080. <lang locale="en_US" value="null" />
  1081. <lang locale="zh_CN" value="提报单分录" />
  1082. <lang locale="zh_HK" value="提報單分錄" />
  1083. <lang locale="zh_TW" value="提報單分錄" />
  1084. </rs>
  1085. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].defaultView.filterextendedProperty.genBusinessImplCode">
  1086. <lang locale="en_US" value="true" />
  1087. <lang locale="zh_CN" value="true" />
  1088. <lang locale="zh_TW" value="true" />
  1089. </rs>
  1090. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].defaultViewalias">
  1091. <lang locale="en_US" value="null" />
  1092. <lang locale="zh_CN" value="null" />
  1093. <lang locale="zh_HK" value="null" />
  1094. <lang locale="zh_TW" value="null" />
  1095. </rs>
  1096. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].defaultViewdescription">
  1097. <lang locale="en_US" value="null" />
  1098. <lang locale="zh_CN" value="null" />
  1099. <lang locale="zh_HK" value="null" />
  1100. <lang locale="zh_TW" value="null" />
  1101. </rs>
  1102. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].defaultViewextendedProperty.genBusinessImplCode">
  1103. <lang locale="en_US" value="true" />
  1104. <lang locale="zh_CN" value="true" />
  1105. <lang locale="zh_TW" value="true" />
  1106. </rs>
  1107. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].description">
  1108. <lang locale="en_US" value="null" />
  1109. <lang locale="zh_CN" value="null" />
  1110. <lang locale="zh_HK" value="null" />
  1111. <lang locale="zh_TW" value="null" />
  1112. </rs>
  1113. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].extendedProperty.genBusinessImplCode">
  1114. <lang locale="en_US" value="true" />
  1115. <lang locale="zh_CN" value="true" />
  1116. <lang locale="zh_TW" value="true" />
  1117. </rs>
  1118. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].logicalKey[id].alias">
  1119. <lang locale="en_US" value="null" />
  1120. <lang locale="zh_CN" value="null" />
  1121. <lang locale="zh_HK" value="null" />
  1122. <lang locale="zh_TW" value="null" />
  1123. </rs>
  1124. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].logicalKey[id].description">
  1125. <lang locale="en_US" value="null" />
  1126. <lang locale="zh_CN" value="null" />
  1127. <lang locale="zh_HK" value="null" />
  1128. <lang locale="zh_TW" value="null" />
  1129. </rs>
  1130. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].alias">
  1131. <lang locale="en_US" value="null" />
  1132. <lang locale="zh_CN" value="null" />
  1133. <lang locale="zh_HK" value="null" />
  1134. <lang locale="zh_TW" value="null" />
  1135. </rs>
  1136. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].description">
  1137. <lang locale="en_US" value="null" />
  1138. <lang locale="zh_CN" value="null" />
  1139. <lang locale="zh_HK" value="null" />
  1140. <lang locale="zh_TW" value="null" />
  1141. </rs>
  1142. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].parameters.parameter[model].alias">
  1143. <lang locale="en_US" value="null" />
  1144. <lang locale="zh_CN" value="null" />
  1145. <lang locale="zh_HK" value="null" />
  1146. <lang locale="zh_TW" value="null" />
  1147. </rs>
  1148. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].parameters.parameter[model].description">
  1149. <lang locale="en_US" value="null" />
  1150. <lang locale="zh_CN" value="null" />
  1151. <lang locale="zh_HK" value="null" />
  1152. <lang locale="zh_TW" value="null" />
  1153. </rs>
  1154. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].parameters.parameter[pk].alias">
  1155. <lang locale="en_US" value="null" />
  1156. <lang locale="zh_CN" value="null" />
  1157. <lang locale="zh_HK" value="null" />
  1158. <lang locale="zh_TW" value="null" />
  1159. </rs>
  1160. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[addnew].parameters.parameter[pk].description">
  1161. <lang locale="en_US" value="null" />
  1162. <lang locale="zh_CN" value="null" />
  1163. <lang locale="zh_HK" value="null" />
  1164. <lang locale="zh_TW" value="null" />
  1165. </rs>
  1166. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].alias">
  1167. <lang locale="en_US" value="null" />
  1168. <lang locale="zh_CN" value="null" />
  1169. <lang locale="zh_HK" value="null" />
  1170. <lang locale="zh_TW" value="null" />
  1171. </rs>
  1172. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].description">
  1173. <lang locale="en_US" value="null" />
  1174. <lang locale="zh_CN" value="null" />
  1175. <lang locale="zh_HK" value="null" />
  1176. <lang locale="zh_TW" value="null" />
  1177. </rs>
  1178. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[arrayPK].alias">
  1179. <lang locale="en_US" value="null" />
  1180. <lang locale="zh_CN" value="null" />
  1181. <lang locale="zh_HK" value="null" />
  1182. <lang locale="zh_TW" value="null" />
  1183. </rs>
  1184. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[arrayPK].description">
  1185. <lang locale="en_US" value="null" />
  1186. <lang locale="zh_CN" value="null" />
  1187. <lang locale="zh_HK" value="null" />
  1188. <lang locale="zh_TW" value="null" />
  1189. </rs>
  1190. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[filter].alias">
  1191. <lang locale="en_US" value="null" />
  1192. <lang locale="zh_CN" value="null" />
  1193. <lang locale="zh_HK" value="null" />
  1194. <lang locale="zh_TW" value="null" />
  1195. </rs>
  1196. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[filter].description">
  1197. <lang locale="en_US" value="null" />
  1198. <lang locale="zh_CN" value="null" />
  1199. <lang locale="zh_HK" value="null" />
  1200. <lang locale="zh_TW" value="null" />
  1201. </rs>
  1202. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[oql].alias">
  1203. <lang locale="en_US" value="null" />
  1204. <lang locale="zh_CN" value="null" />
  1205. <lang locale="zh_HK" value="null" />
  1206. <lang locale="zh_TW" value="null" />
  1207. </rs>
  1208. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[oql].description">
  1209. <lang locale="en_US" value="null" />
  1210. <lang locale="zh_CN" value="null" />
  1211. <lang locale="zh_HK" value="null" />
  1212. <lang locale="zh_TW" value="null" />
  1213. </rs>
  1214. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[pk].alias">
  1215. <lang locale="en_US" value="null" />
  1216. <lang locale="zh_CN" value="null" />
  1217. <lang locale="zh_HK" value="null" />
  1218. <lang locale="zh_TW" value="null" />
  1219. </rs>
  1220. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[delete].parameters.parameter[pk].description">
  1221. <lang locale="en_US" value="null" />
  1222. <lang locale="zh_CN" value="null" />
  1223. <lang locale="zh_HK" value="null" />
  1224. <lang locale="zh_TW" value="null" />
  1225. </rs>
  1226. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].alias">
  1227. <lang locale="en_US" value="null" />
  1228. <lang locale="zh_CN" value="null" />
  1229. <lang locale="zh_HK" value="null" />
  1230. <lang locale="zh_TW" value="null" />
  1231. </rs>
  1232. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].description">
  1233. <lang locale="en_US" value="null" />
  1234. <lang locale="zh_CN" value="null" />
  1235. <lang locale="zh_HK" value="null" />
  1236. <lang locale="zh_TW" value="null" />
  1237. </rs>
  1238. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].parameters.parameter[filter].alias">
  1239. <lang locale="en_US" value="null" />
  1240. <lang locale="zh_CN" value="null" />
  1241. <lang locale="zh_HK" value="null" />
  1242. <lang locale="zh_TW" value="null" />
  1243. </rs>
  1244. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].parameters.parameter[filter].description">
  1245. <lang locale="en_US" value="null" />
  1246. <lang locale="zh_CN" value="null" />
  1247. <lang locale="zh_HK" value="null" />
  1248. <lang locale="zh_TW" value="null" />
  1249. </rs>
  1250. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].parameters.parameter[oql].alias">
  1251. <lang locale="en_US" value="null" />
  1252. <lang locale="zh_CN" value="null" />
  1253. <lang locale="zh_HK" value="null" />
  1254. <lang locale="zh_TW" value="null" />
  1255. </rs>
  1256. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].parameters.parameter[oql].description">
  1257. <lang locale="en_US" value="null" />
  1258. <lang locale="zh_CN" value="null" />
  1259. <lang locale="zh_HK" value="null" />
  1260. <lang locale="zh_TW" value="null" />
  1261. </rs>
  1262. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].parameters.parameter[pk].alias">
  1263. <lang locale="en_US" value="null" />
  1264. <lang locale="zh_CN" value="null" />
  1265. <lang locale="zh_HK" value="null" />
  1266. <lang locale="zh_TW" value="null" />
  1267. </rs>
  1268. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[exists].parameters.parameter[pk].description">
  1269. <lang locale="en_US" value="null" />
  1270. <lang locale="zh_CN" value="null" />
  1271. <lang locale="zh_HK" value="null" />
  1272. <lang locale="zh_TW" value="null" />
  1273. </rs>
  1274. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].alias">
  1275. <lang locale="en_US" value="null" />
  1276. <lang locale="zh_CN" value="null" />
  1277. <lang locale="zh_HK" value="null" />
  1278. <lang locale="zh_TW" value="null" />
  1279. </rs>
  1280. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].description">
  1281. <lang locale="en_US" value="null" />
  1282. <lang locale="zh_CN" value="null" />
  1283. <lang locale="zh_HK" value="null" />
  1284. <lang locale="zh_TW" value="null" />
  1285. </rs>
  1286. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].parameters.parameter[oql].alias">
  1287. <lang locale="en_US" value="null" />
  1288. <lang locale="zh_CN" value="null" />
  1289. <lang locale="zh_HK" value="null" />
  1290. <lang locale="zh_TW" value="null" />
  1291. </rs>
  1292. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].parameters.parameter[oql].description">
  1293. <lang locale="en_US" value="null" />
  1294. <lang locale="zh_CN" value="null" />
  1295. <lang locale="zh_HK" value="null" />
  1296. <lang locale="zh_TW" value="null" />
  1297. </rs>
  1298. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].parameters.parameter[view].alias">
  1299. <lang locale="en_US" value="null" />
  1300. <lang locale="zh_CN" value="null" />
  1301. <lang locale="zh_HK" value="null" />
  1302. <lang locale="zh_TW" value="null" />
  1303. </rs>
  1304. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getCollection].parameters.parameter[view].description">
  1305. <lang locale="en_US" value="null" />
  1306. <lang locale="zh_CN" value="null" />
  1307. <lang locale="zh_HK" value="null" />
  1308. <lang locale="zh_TW" value="null" />
  1309. </rs>
  1310. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].alias">
  1311. <lang locale="en_US" value="null" />
  1312. <lang locale="zh_CN" value="null" />
  1313. <lang locale="zh_HK" value="null" />
  1314. <lang locale="zh_TW" value="null" />
  1315. </rs>
  1316. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].description">
  1317. <lang locale="en_US" value="null" />
  1318. <lang locale="zh_CN" value="null" />
  1319. <lang locale="zh_HK" value="null" />
  1320. <lang locale="zh_TW" value="null" />
  1321. </rs>
  1322. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].parameters.parameter[filter].alias">
  1323. <lang locale="en_US" value="null" />
  1324. <lang locale="zh_CN" value="null" />
  1325. <lang locale="zh_HK" value="null" />
  1326. <lang locale="zh_TW" value="null" />
  1327. </rs>
  1328. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].parameters.parameter[filter].description">
  1329. <lang locale="en_US" value="null" />
  1330. <lang locale="zh_CN" value="null" />
  1331. <lang locale="zh_HK" value="null" />
  1332. <lang locale="zh_TW" value="null" />
  1333. </rs>
  1334. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].parameters.parameter[oql].alias">
  1335. <lang locale="en_US" value="null" />
  1336. <lang locale="zh_CN" value="null" />
  1337. <lang locale="zh_HK" value="null" />
  1338. <lang locale="zh_TW" value="null" />
  1339. </rs>
  1340. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].parameters.parameter[oql].description">
  1341. <lang locale="en_US" value="null" />
  1342. <lang locale="zh_CN" value="null" />
  1343. <lang locale="zh_HK" value="null" />
  1344. <lang locale="zh_TW" value="null" />
  1345. </rs>
  1346. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].parameters.parameter[sorter].alias">
  1347. <lang locale="en_US" value="null" />
  1348. <lang locale="zh_CN" value="null" />
  1349. <lang locale="zh_HK" value="null" />
  1350. <lang locale="zh_TW" value="null" />
  1351. </rs>
  1352. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getPKList].parameters.parameter[sorter].description">
  1353. <lang locale="en_US" value="null" />
  1354. <lang locale="zh_CN" value="null" />
  1355. <lang locale="zh_HK" value="null" />
  1356. <lang locale="zh_TW" value="null" />
  1357. </rs>
  1358. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].alias">
  1359. <lang locale="en_US" value="null" />
  1360. <lang locale="zh_CN" value="null" />
  1361. <lang locale="zh_HK" value="null" />
  1362. <lang locale="zh_TW" value="null" />
  1363. </rs>
  1364. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].description">
  1365. <lang locale="en_US" value="null" />
  1366. <lang locale="zh_CN" value="null" />
  1367. <lang locale="zh_HK" value="null" />
  1368. <lang locale="zh_TW" value="null" />
  1369. </rs>
  1370. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].parameters.parameter[oql].alias">
  1371. <lang locale="en_US" value="null" />
  1372. <lang locale="zh_CN" value="null" />
  1373. <lang locale="zh_HK" value="null" />
  1374. <lang locale="zh_TW" value="null" />
  1375. </rs>
  1376. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].parameters.parameter[oql].description">
  1377. <lang locale="en_US" value="null" />
  1378. <lang locale="zh_CN" value="null" />
  1379. <lang locale="zh_HK" value="null" />
  1380. <lang locale="zh_TW" value="null" />
  1381. </rs>
  1382. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].parameters.parameter[pk].alias">
  1383. <lang locale="en_US" value="null" />
  1384. <lang locale="zh_CN" value="null" />
  1385. <lang locale="zh_HK" value="null" />
  1386. <lang locale="zh_TW" value="null" />
  1387. </rs>
  1388. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].parameters.parameter[pk].description">
  1389. <lang locale="en_US" value="null" />
  1390. <lang locale="zh_CN" value="null" />
  1391. <lang locale="zh_HK" value="null" />
  1392. <lang locale="zh_TW" value="null" />
  1393. </rs>
  1394. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].parameters.parameter[selector].alias">
  1395. <lang locale="en_US" value="null" />
  1396. <lang locale="zh_CN" value="null" />
  1397. <lang locale="zh_HK" value="null" />
  1398. <lang locale="zh_TW" value="null" />
  1399. </rs>
  1400. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[getValue].parameters.parameter[selector].description">
  1401. <lang locale="en_US" value="null" />
  1402. <lang locale="zh_CN" value="null" />
  1403. <lang locale="zh_HK" value="null" />
  1404. <lang locale="zh_TW" value="null" />
  1405. </rs>
  1406. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updateBigObject].alias">
  1407. <lang locale="en_US" value="null" />
  1408. <lang locale="zh_CN" value="null" />
  1409. <lang locale="zh_HK" value="null" />
  1410. <lang locale="zh_TW" value="null" />
  1411. </rs>
  1412. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updateBigObject].description">
  1413. <lang locale="en_US" value="null" />
  1414. <lang locale="zh_CN" value="null" />
  1415. <lang locale="zh_HK" value="null" />
  1416. <lang locale="zh_TW" value="null" />
  1417. </rs>
  1418. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updateBigObject].parameters.parameter[model].alias">
  1419. <lang locale="en_US" value="null" />
  1420. <lang locale="zh_CN" value="null" />
  1421. <lang locale="zh_HK" value="null" />
  1422. <lang locale="zh_TW" value="null" />
  1423. </rs>
  1424. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updateBigObject].parameters.parameter[model].description">
  1425. <lang locale="en_US" value="null" />
  1426. <lang locale="zh_CN" value="null" />
  1427. <lang locale="zh_HK" value="null" />
  1428. <lang locale="zh_TW" value="null" />
  1429. </rs>
  1430. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updateBigObject].parameters.parameter[pk].alias">
  1431. <lang locale="en_US" value="null" />
  1432. <lang locale="zh_CN" value="null" />
  1433. <lang locale="zh_HK" value="null" />
  1434. <lang locale="zh_TW" value="null" />
  1435. </rs>
  1436. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updateBigObject].parameters.parameter[pk].description">
  1437. <lang locale="en_US" value="null" />
  1438. <lang locale="zh_CN" value="null" />
  1439. <lang locale="zh_HK" value="null" />
  1440. <lang locale="zh_TW" value="null" />
  1441. </rs>
  1442. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updatePartial].alias">
  1443. <lang locale="en_US" value="null" />
  1444. <lang locale="zh_CN" value="null" />
  1445. <lang locale="zh_HK" value="null" />
  1446. <lang locale="zh_TW" value="null" />
  1447. </rs>
  1448. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updatePartial].description">
  1449. <lang locale="en_US" value="null" />
  1450. <lang locale="zh_CN" value="null" />
  1451. <lang locale="zh_HK" value="null" />
  1452. <lang locale="zh_TW" value="null" />
  1453. </rs>
  1454. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updatePartial].parameters.parameter[model].alias">
  1455. <lang locale="en_US" value="null" />
  1456. <lang locale="zh_CN" value="null" />
  1457. <lang locale="zh_HK" value="null" />
  1458. <lang locale="zh_TW" value="null" />
  1459. </rs>
  1460. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updatePartial].parameters.parameter[model].description">
  1461. <lang locale="en_US" value="null" />
  1462. <lang locale="zh_CN" value="null" />
  1463. <lang locale="zh_HK" value="null" />
  1464. <lang locale="zh_TW" value="null" />
  1465. </rs>
  1466. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updatePartial].parameters.parameter[selector].alias">
  1467. <lang locale="en_US" value="null" />
  1468. <lang locale="zh_CN" value="null" />
  1469. <lang locale="zh_HK" value="null" />
  1470. <lang locale="zh_TW" value="null" />
  1471. </rs>
  1472. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[updatePartial].parameters.parameter[selector].description">
  1473. <lang locale="en_US" value="null" />
  1474. <lang locale="zh_CN" value="null" />
  1475. <lang locale="zh_HK" value="null" />
  1476. <lang locale="zh_TW" value="null" />
  1477. </rs>
  1478. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[update].alias">
  1479. <lang locale="en_US" value="null" />
  1480. <lang locale="zh_CN" value="null" />
  1481. <lang locale="zh_HK" value="null" />
  1482. <lang locale="zh_TW" value="null" />
  1483. </rs>
  1484. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[update].description">
  1485. <lang locale="en_US" value="null" />
  1486. <lang locale="zh_CN" value="null" />
  1487. <lang locale="zh_HK" value="null" />
  1488. <lang locale="zh_TW" value="null" />
  1489. </rs>
  1490. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[update].parameters.parameter[model].alias">
  1491. <lang locale="en_US" value="null" />
  1492. <lang locale="zh_CN" value="null" />
  1493. <lang locale="zh_HK" value="null" />
  1494. <lang locale="zh_TW" value="null" />
  1495. </rs>
  1496. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[update].parameters.parameter[model].description">
  1497. <lang locale="en_US" value="null" />
  1498. <lang locale="zh_CN" value="null" />
  1499. <lang locale="zh_HK" value="null" />
  1500. <lang locale="zh_TW" value="null" />
  1501. </rs>
  1502. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[update].parameters.parameter[pk].alias">
  1503. <lang locale="en_US" value="null" />
  1504. <lang locale="zh_CN" value="null" />
  1505. <lang locale="zh_HK" value="null" />
  1506. <lang locale="zh_TW" value="null" />
  1507. </rs>
  1508. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].methods.method[update].parameters.parameter[pk].description">
  1509. <lang locale="en_US" value="null" />
  1510. <lang locale="zh_CN" value="null" />
  1511. <lang locale="zh_HK" value="null" />
  1512. <lang locale="zh_TW" value="null" />
  1513. </rs>
  1514. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[adminOrgUnit].alias">
  1515. <lang locale="en_US" value="null" />
  1516. <lang locale="zh_CN" value="行政组织" />
  1517. <lang locale="zh_HK" value="行政組織" />
  1518. <lang locale="zh_TW" value="行政組織" />
  1519. </rs>
  1520. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[adminOrgUnit].description">
  1521. <lang locale="en_US" value="null" />
  1522. <lang locale="zh_CN" value="行政组织" />
  1523. <lang locale="zh_HK" value="行政組織" />
  1524. <lang locale="zh_TW" value="行政組織" />
  1525. </rs>
  1526. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[bill].alias">
  1527. <lang locale="en_US" value="null" />
  1528. <lang locale="zh_CN" value="单据头" />
  1529. <lang locale="zh_HK" value="單據頭" />
  1530. <lang locale="zh_TW" value="單據頭" />
  1531. </rs>
  1532. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[bill].description">
  1533. <lang locale="en_US" value="null" />
  1534. <lang locale="zh_CN" value="null" />
  1535. <lang locale="zh_HK" value="null" />
  1536. <lang locale="zh_TW" value="null" />
  1537. </rs>
  1538. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[cmpEmpORelation].alias">
  1539. <lang locale="en_US" value="null" />
  1540. <lang locale="zh_CN" value="发薪任职" />
  1541. <lang locale="zh_HK" value="發薪任職" />
  1542. <lang locale="zh_TW" value="發薪任職" />
  1543. </rs>
  1544. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[cmpEmpORelation].description">
  1545. <lang locale="en_US" value="null" />
  1546. <lang locale="zh_CN" value="发薪任职" />
  1547. <lang locale="zh_HK" value="發薪任職" />
  1548. <lang locale="zh_TW" value="發薪任職" />
  1549. </rs>
  1550. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[currency].alias">
  1551. <lang locale="en_US" value="null" />
  1552. <lang locale="zh_CN" value="币别" />
  1553. <lang locale="zh_HK" value="幣別" />
  1554. <lang locale="zh_TW" value="幣別" />
  1555. </rs>
  1556. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[currency].description">
  1557. <lang locale="en_US" value="null" />
  1558. <lang locale="zh_CN" value="币别" />
  1559. <lang locale="zh_HK" value="幣別" />
  1560. <lang locale="zh_TW" value="幣別" />
  1561. </rs>
  1562. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[hrOrgUnit].alias">
  1563. <lang locale="en_US" value="null" />
  1564. <lang locale="zh_CN" value="业务组织" />
  1565. <lang locale="zh_HK" value="業務組織" />
  1566. <lang locale="zh_TW" value="業務組織" />
  1567. </rs>
  1568. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[hrOrgUnit].description">
  1569. <lang locale="en_US" value="null" />
  1570. <lang locale="zh_CN" value="业务组织" />
  1571. <lang locale="zh_HK" value="業務組織" />
  1572. <lang locale="zh_TW" value="業務組織" />
  1573. </rs>
  1574. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[orgUnit].alias">
  1575. <lang locale="en_US" value="null" />
  1576. <lang locale="zh_CN" value="提报组织" />
  1577. <lang locale="zh_HK" value="提報組織" />
  1578. <lang locale="zh_TW" value="提報組織" />
  1579. </rs>
  1580. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[orgUnit].description">
  1581. <lang locale="en_US" value="null" />
  1582. <lang locale="zh_CN" value="null" />
  1583. <lang locale="zh_HK" value="null" />
  1584. <lang locale="zh_TW" value="null" />
  1585. </rs>
  1586. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[position].alias">
  1587. <lang locale="en_US" value="null" />
  1588. <lang locale="zh_CN" value="职位" />
  1589. <lang locale="zh_HK" value="職位" />
  1590. <lang locale="zh_TW" value="職位" />
  1591. </rs>
  1592. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[position].description">
  1593. <lang locale="en_US" value="null" />
  1594. <lang locale="zh_CN" value="职位" />
  1595. <lang locale="zh_HK" value="職位" />
  1596. <lang locale="zh_TW" value="職位" />
  1597. </rs>
  1598. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[submitElement].alias">
  1599. <lang locale="en_US" value="null" />
  1600. <lang locale="zh_CN" value="提报要素" />
  1601. <lang locale="zh_HK" value="提報要素" />
  1602. <lang locale="zh_TW" value="提報要素" />
  1603. </rs>
  1604. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.linkProperty[submitElement].description">
  1605. <lang locale="en_US" value="null" />
  1606. <lang locale="zh_CN" value="提报要素" />
  1607. <lang locale="zh_HK" value="提報要素" />
  1608. <lang locale="zh_TW" value="提報要素" />
  1609. </rs>
  1610. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[billState].alias">
  1611. <lang locale="en_US" value="null" />
  1612. <lang locale="zh_CN" value="单据状态" />
  1613. <lang locale="zh_HK" value="單據狀態" />
  1614. <lang locale="zh_TW" value="單據狀態" />
  1615. </rs>
  1616. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[billState].defaultValue">
  1617. <lang locale="en_US" value="null" />
  1618. <lang locale="zh_CN" value="null" />
  1619. <lang locale="zh_HK" value="null" />
  1620. <lang locale="zh_TW" value="null" />
  1621. </rs>
  1622. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[billState].description">
  1623. <lang locale="en_US" value="null" />
  1624. <lang locale="zh_CN" value="null" />
  1625. <lang locale="zh_HK" value="null" />
  1626. <lang locale="zh_TW" value="null" />
  1627. </rs>
  1628. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[calState].alias">
  1629. <lang locale="en_US" value="null" />
  1630. <lang locale="zh_CN" value="核算状态" />
  1631. <lang locale="zh_HK" value="核算狀態" />
  1632. <lang locale="zh_TW" value="核算狀態" />
  1633. </rs>
  1634. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[calState].defaultValue">
  1635. <lang locale="en_US" value="null" />
  1636. <lang locale="zh_CN" value="null" />
  1637. <lang locale="zh_HK" value="null" />
  1638. <lang locale="zh_TW" value="null" />
  1639. </rs>
  1640. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[calState].description">
  1641. <lang locale="en_US" value="null" />
  1642. <lang locale="zh_CN" value="null" />
  1643. <lang locale="zh_HK" value="null" />
  1644. <lang locale="zh_TW" value="null" />
  1645. </rs>
  1646. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[dealStatus].alias">
  1647. <lang locale="en_US" value="null" />
  1648. <lang locale="zh_CN" value="处理状态" />
  1649. <lang locale="zh_HK" value="處理狀態" />
  1650. <lang locale="zh_TW" value="處理狀態" />
  1651. </rs>
  1652. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[dealStatus].defaultValue">
  1653. <lang locale="en_US" value="null" />
  1654. <lang locale="zh_CN" value="null" />
  1655. <lang locale="zh_HK" value="null" />
  1656. <lang locale="zh_TW" value="null" />
  1657. </rs>
  1658. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[dealStatus].description">
  1659. <lang locale="en_US" value="null" />
  1660. <lang locale="zh_CN" value="提报单处理状态" />
  1661. <lang locale="zh_HK" value="提報單處理狀態" />
  1662. <lang locale="zh_TW" value="提報單處理狀態" />
  1663. </rs>
  1664. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[description].alias">
  1665. <lang locale="en_US" value="null" />
  1666. <lang locale="zh_CN" value="描述" />
  1667. <lang locale="zh_HK" value="描述" />
  1668. <lang locale="zh_TW" value="描述" />
  1669. </rs>
  1670. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[description].defaultValue">
  1671. <lang locale="en_US" value="null" />
  1672. <lang locale="zh_CN" value="null" />
  1673. <lang locale="zh_HK" value="null" />
  1674. <lang locale="zh_TW" value="null" />
  1675. </rs>
  1676. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[description].description">
  1677. <lang locale="en_US" value="null" />
  1678. <lang locale="zh_CN" value="描述" />
  1679. <lang locale="zh_HK" value="描述" />
  1680. <lang locale="zh_TW" value="描述" />
  1681. </rs>
  1682. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[effectDate].alias">
  1683. <lang locale="en_US" value="null" />
  1684. <lang locale="zh_CN" value="发生日期" />
  1685. <lang locale="zh_HK" value="發生日期" />
  1686. <lang locale="zh_TW" value="發生日期" />
  1687. </rs>
  1688. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[effectDate].defaultValue">
  1689. <lang locale="en_US" value="null" />
  1690. <lang locale="zh_CN" value="null" />
  1691. <lang locale="zh_HK" value="null" />
  1692. <lang locale="zh_TW" value="null" />
  1693. </rs>
  1694. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[effectDate].description">
  1695. <lang locale="en_US" value="null" />
  1696. <lang locale="zh_CN" value="null" />
  1697. <lang locale="zh_HK" value="null" />
  1698. <lang locale="zh_TW" value="null" />
  1699. </rs>
  1700. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[endTime].alias">
  1701. <lang locale="en_US" value="null" />
  1702. <lang locale="zh_CN" value="结束时间" />
  1703. <lang locale="zh_HK" value="結束時間" />
  1704. <lang locale="zh_TW" value="結束時間" />
  1705. </rs>
  1706. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[endTime].defaultValue">
  1707. <lang locale="en_US" value="null" />
  1708. <lang locale="zh_CN" value="null" />
  1709. <lang locale="zh_HK" value="null" />
  1710. <lang locale="zh_TW" value="null" />
  1711. </rs>
  1712. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[endTime].description">
  1713. <lang locale="en_US" value="null" />
  1714. <lang locale="zh_CN" value="结束时间" />
  1715. <lang locale="zh_HK" value="結束時間" />
  1716. <lang locale="zh_TW" value="結束時間" />
  1717. </rs>
  1718. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[forwarncontent].alias">
  1719. <lang locale="en_US" value="null" />
  1720. <lang locale="zh_CN" value="预警内容" />
  1721. <lang locale="zh_HK" value="預警內容" />
  1722. <lang locale="zh_TW" value="預警內容" />
  1723. </rs>
  1724. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[forwarncontent].defaultValue">
  1725. <lang locale="en_US" value="null" />
  1726. <lang locale="zh_CN" value="null" />
  1727. <lang locale="zh_HK" value="null" />
  1728. <lang locale="zh_TW" value="null" />
  1729. </rs>
  1730. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[forwarncontent].description">
  1731. <lang locale="en_US" value="null" />
  1732. <lang locale="zh_CN" value="存放校验后的预警内容" />
  1733. <lang locale="zh_HK" value="存放校驗後的預警內容" />
  1734. <lang locale="zh_TW" value="存放校驗後的預警內容" />
  1735. </rs>
  1736. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[isCal].alias">
  1737. <lang locale="en_US" value="null" />
  1738. <lang locale="zh_CN" value="是否已核算" />
  1739. <lang locale="zh_HK" value="是否已核算" />
  1740. <lang locale="zh_TW" value="是否已核算" />
  1741. </rs>
  1742. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[isCal].defaultValue">
  1743. <lang locale="en_US" value="null" />
  1744. <lang locale="zh_CN" value="null" />
  1745. <lang locale="zh_HK" value="null" />
  1746. <lang locale="zh_TW" value="null" />
  1747. </rs>
  1748. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[isCal].description">
  1749. <lang locale="en_US" value="null" />
  1750. <lang locale="zh_CN" value="null" />
  1751. <lang locale="zh_HK" value="null" />
  1752. <lang locale="zh_TW" value="null" />
  1753. </rs>
  1754. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[leffectDate].alias">
  1755. <lang locale="en_US" value="null" />
  1756. <lang locale="zh_CN" value="失效日期" />
  1757. <lang locale="zh_HK" value="失效日期" />
  1758. <lang locale="zh_TW" value="失效日期" />
  1759. </rs>
  1760. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[leffectDate].defaultValue">
  1761. <lang locale="en_US" value="null" />
  1762. <lang locale="zh_CN" value="null" />
  1763. <lang locale="zh_HK" value="null" />
  1764. <lang locale="zh_TW" value="null" />
  1765. </rs>
  1766. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[leffectDate].description">
  1767. <lang locale="en_US" value="null" />
  1768. <lang locale="zh_CN" value="null" />
  1769. <lang locale="zh_HK" value="null" />
  1770. <lang locale="zh_TW" value="null" />
  1771. </rs>
  1772. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[restEndTime].alias">
  1773. <lang locale="en_US" value="null" />
  1774. <lang locale="zh_CN" value="休息结束时间" />
  1775. <lang locale="zh_HK" value="休息結束時間" />
  1776. <lang locale="zh_TW" value="休息結束時間" />
  1777. </rs>
  1778. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[restEndTime].defaultValue">
  1779. <lang locale="en_US" value="null" />
  1780. <lang locale="zh_CN" value="null" />
  1781. <lang locale="zh_HK" value="null" />
  1782. <lang locale="zh_TW" value="null" />
  1783. </rs>
  1784. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[restEndTime].description">
  1785. <lang locale="en_US" value="null" />
  1786. <lang locale="zh_CN" value="休息结束时间" />
  1787. <lang locale="zh_HK" value="休息結束時間" />
  1788. <lang locale="zh_TW" value="休息結束時間" />
  1789. </rs>
  1790. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[restStartTime].alias">
  1791. <lang locale="en_US" value="null" />
  1792. <lang locale="zh_CN" value="休息开始时间" />
  1793. <lang locale="zh_HK" value="休息開始時間" />
  1794. <lang locale="zh_TW" value="休息開始時間" />
  1795. </rs>
  1796. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[restStartTime].defaultValue">
  1797. <lang locale="en_US" value="null" />
  1798. <lang locale="zh_CN" value="null" />
  1799. <lang locale="zh_HK" value="null" />
  1800. <lang locale="zh_TW" value="null" />
  1801. </rs>
  1802. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[restStartTime].description">
  1803. <lang locale="en_US" value="null" />
  1804. <lang locale="zh_CN" value="休息开始时间" />
  1805. <lang locale="zh_HK" value="休息開始時間" />
  1806. <lang locale="zh_TW" value="休息開始時間" />
  1807. </rs>
  1808. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[salaryPeriod].alias">
  1809. <lang locale="en_US" value="null" />
  1810. <lang locale="zh_CN" value="薪资周期" />
  1811. <lang locale="zh_HK" value="薪資週期" />
  1812. <lang locale="zh_TW" value="薪資週期" />
  1813. </rs>
  1814. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[salaryPeriod].defaultValue">
  1815. <lang locale="en_US" value="null" />
  1816. <lang locale="zh_CN" value="null" />
  1817. <lang locale="zh_HK" value="null" />
  1818. <lang locale="zh_TW" value="null" />
  1819. </rs>
  1820. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[salaryPeriod].description">
  1821. <lang locale="en_US" value="null" />
  1822. <lang locale="zh_CN" value="null" />
  1823. <lang locale="zh_HK" value="null" />
  1824. <lang locale="zh_TW" value="null" />
  1825. </rs>
  1826. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[startTime].alias">
  1827. <lang locale="en_US" value="null" />
  1828. <lang locale="zh_CN" value="开始时间" />
  1829. <lang locale="zh_HK" value="開始時間" />
  1830. <lang locale="zh_TW" value="開始時間" />
  1831. </rs>
  1832. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[startTime].defaultValue">
  1833. <lang locale="en_US" value="null" />
  1834. <lang locale="zh_CN" value="null" />
  1835. <lang locale="zh_HK" value="null" />
  1836. <lang locale="zh_TW" value="null" />
  1837. </rs>
  1838. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[startTime].description">
  1839. <lang locale="en_US" value="null" />
  1840. <lang locale="zh_CN" value="开始时间" />
  1841. <lang locale="zh_HK" value="開始時間" />
  1842. <lang locale="zh_TW" value="開始時間" />
  1843. </rs>
  1844. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transDateTime].alias">
  1845. <lang locale="en_US" value="null" />
  1846. <lang locale="zh_CN" value="转薪资时间" />
  1847. <lang locale="zh_HK" value="轉薪資時間" />
  1848. <lang locale="zh_TW" value="轉薪資時間" />
  1849. </rs>
  1850. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transDateTime].defaultValue">
  1851. <lang locale="en_US" value="null" />
  1852. <lang locale="zh_CN" value="null" />
  1853. <lang locale="zh_HK" value="null" />
  1854. <lang locale="zh_TW" value="null" />
  1855. </rs>
  1856. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transDateTime].description">
  1857. <lang locale="en_US" value="null" />
  1858. <lang locale="zh_CN" value="转薪资时间" />
  1859. <lang locale="zh_HK" value="轉薪資時間" />
  1860. <lang locale="zh_TW" value="轉薪資時間" />
  1861. </rs>
  1862. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transMonth].alias">
  1863. <lang locale="en_US" value="null" />
  1864. <lang locale="zh_CN" value="转薪资月" />
  1865. <lang locale="zh_HK" value="轉薪資月" />
  1866. <lang locale="zh_TW" value="轉薪資月" />
  1867. </rs>
  1868. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transMonth].defaultValue">
  1869. <lang locale="en_US" value="null" />
  1870. <lang locale="zh_CN" value="null" />
  1871. <lang locale="zh_HK" value="null" />
  1872. <lang locale="zh_TW" value="null" />
  1873. </rs>
  1874. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transMonth].description">
  1875. <lang locale="en_US" value="null" />
  1876. <lang locale="zh_CN" value="转薪资月" />
  1877. <lang locale="zh_HK" value="轉薪資月" />
  1878. <lang locale="zh_TW" value="轉薪資月" />
  1879. </rs>
  1880. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transTime].alias">
  1881. <lang locale="en_US" value="null" />
  1882. <lang locale="zh_CN" value="转薪资次" />
  1883. <lang locale="zh_HK" value="轉薪資次" />
  1884. <lang locale="zh_TW" value="轉薪資次" />
  1885. </rs>
  1886. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transTime].defaultValue">
  1887. <lang locale="en_US" value="null" />
  1888. <lang locale="zh_CN" value="null" />
  1889. <lang locale="zh_HK" value="null" />
  1890. <lang locale="zh_TW" value="null" />
  1891. </rs>
  1892. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transTime].description">
  1893. <lang locale="en_US" value="null" />
  1894. <lang locale="zh_CN" value="转薪资次" />
  1895. <lang locale="zh_HK" value="轉薪資次" />
  1896. <lang locale="zh_TW" value="轉薪資次" />
  1897. </rs>
  1898. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transYear].alias">
  1899. <lang locale="en_US" value="null" />
  1900. <lang locale="zh_CN" value="转薪资年" />
  1901. <lang locale="zh_HK" value="轉薪資年" />
  1902. <lang locale="zh_TW" value="轉薪資年" />
  1903. </rs>
  1904. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transYear].defaultValue">
  1905. <lang locale="en_US" value="null" />
  1906. <lang locale="zh_CN" value="null" />
  1907. <lang locale="zh_HK" value="null" />
  1908. <lang locale="zh_TW" value="null" />
  1909. </rs>
  1910. <rs key="entityObject[com.kingdee.shr.compensation.app.integrate.BatchSubmitShemeBillEntry].properties.ownProperty[transYear].description">
  1911. <lang locale="en_US" value="null" />
  1912. <lang locale="zh_CN" value="转薪资年" />
  1913. <lang locale="zh_HK" value="轉薪資年" />
  1914. <lang locale="zh_TW" value="轉薪資年" />
  1915. </rs>
  1916. </resource>
  1917. </entityObject>