ErrorResources.Designer.cs 134 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // 此代码由工具生成。
  4. // 运行时版本:4.0.30319.34209
  5. //
  6. // 对此文件的更改可能会导致不正确的行为,并且如果
  7. // 重新生成代码,这些更改将会丢失。
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10. namespace Muchinfo.MTPClient.CustomException {
  11. using System;
  12. /// <summary>
  13. /// 一个强类型的资源类,用于查找本地化的字符串等。
  14. /// </summary>
  15. // 此类是由 StronglyTypedResourceBuilder
  16. // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。
  17. // 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen
  18. // (以 /str 作为命令选项),或重新生成 VS 项目。
  19. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
  20. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  21. [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
  22. public partial class ErrorResources {
  23. private static global::System.Resources.ResourceManager resourceMan;
  24. private static global::System.Globalization.CultureInfo resourceCulture;
  25. [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
  26. internal ErrorResources() {
  27. }
  28. /// <summary>
  29. /// 返回此类使用的缓存的 ResourceManager 实例。
  30. /// </summary>
  31. [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
  32. public static global::System.Resources.ResourceManager ResourceManager {
  33. get {
  34. if (object.ReferenceEquals(resourceMan, null)) {
  35. global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Muchinfo.MTPClient.CustomException.ErrorResources", typeof(ErrorResources).Assembly);
  36. resourceMan = temp;
  37. }
  38. return resourceMan;
  39. }
  40. }
  41. /// <summary>
  42. /// 使用此强类型资源类,为所有资源查找
  43. /// 重写当前线程的 CurrentUICulture 属性。
  44. /// </summary>
  45. [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
  46. public static global::System.Globalization.CultureInfo Culture {
  47. get {
  48. return resourceCulture;
  49. }
  50. set {
  51. resourceCulture = value;
  52. }
  53. }
  54. /// <summary>
  55. /// 查找类似 正确处理 的本地化字符串。
  56. /// </summary>
  57. public static string _0 {
  58. get {
  59. return ResourceManager.GetString("0", resourceCulture);
  60. }
  61. }
  62. /// <summary>
  63. /// 查找类似 数据类型错误,表示proto buffer数据解析失败 的本地化字符串。
  64. /// </summary>
  65. public static string _1 {
  66. get {
  67. return ResourceManager.GetString("1", resourceCulture);
  68. }
  69. }
  70. /// <summary>
  71. /// 查找类似 无法找到履约计划模板 的本地化字符串。
  72. /// </summary>
  73. public static string _10001 {
  74. get {
  75. return ResourceManager.GetString("10001", resourceCulture);
  76. }
  77. }
  78. /// <summary>
  79. /// 查找类似 计划模板没有对应的步骤 的本地化字符串。
  80. /// </summary>
  81. public static string _10002 {
  82. get {
  83. return ResourceManager.GetString("10002", resourceCulture);
  84. }
  85. }
  86. /// <summary>
  87. /// 查找类似 支付比例和不为100% 的本地化字符串。
  88. /// </summary>
  89. public static string _10003 {
  90. get {
  91. return ResourceManager.GetString("10003", resourceCulture);
  92. }
  93. }
  94. /// <summary>
  95. /// 查找类似 收款比例和不为100% 的本地化字符串。
  96. /// </summary>
  97. public static string _10004 {
  98. get {
  99. return ResourceManager.GetString("10004", resourceCulture);
  100. }
  101. }
  102. /// <summary>
  103. /// 查找类似 无法找到履约计划仓单 的本地化字符串。
  104. /// </summary>
  105. public static string _10005 {
  106. get {
  107. return ResourceManager.GetString("10005", resourceCulture);
  108. }
  109. }
  110. /// <summary>
  111. /// 查找类似 无法找到履约计划 的本地化字符串。
  112. /// </summary>
  113. public static string _10006 {
  114. get {
  115. return ResourceManager.GetString("10006", resourceCulture);
  116. }
  117. }
  118. /// <summary>
  119. /// 查找类似 无法找到履约计划步骤 的本地化字符串。
  120. /// </summary>
  121. public static string _10007 {
  122. get {
  123. return ResourceManager.GetString("10007", resourceCulture);
  124. }
  125. }
  126. /// <summary>
  127. /// 查找类似 违约审核校验失败 的本地化字符串。
  128. /// </summary>
  129. public static string _10008 {
  130. get {
  131. return ResourceManager.GetString("10008", resourceCulture);
  132. }
  133. }
  134. /// <summary>
  135. /// 查找类似 违约申请校验失败 的本地化字符串。
  136. /// </summary>
  137. public static string _10009 {
  138. get {
  139. return ResourceManager.GetString("10009", resourceCulture);
  140. }
  141. }
  142. /// <summary>
  143. /// 查找类似 会话超时 的本地化字符串。
  144. /// </summary>
  145. public static string _1001 {
  146. get {
  147. return ResourceManager.GetString("1001", resourceCulture);
  148. }
  149. }
  150. /// <summary>
  151. /// 查找类似 延期申请校验失败 的本地化字符串。
  152. /// </summary>
  153. public static string _10010 {
  154. get {
  155. return ResourceManager.GetString("10010", resourceCulture);
  156. }
  157. }
  158. /// <summary>
  159. /// 查找类似 延期审核校验失败 的本地化字符串。
  160. /// </summary>
  161. public static string _10011 {
  162. get {
  163. return ResourceManager.GetString("10011", resourceCulture);
  164. }
  165. }
  166. /// <summary>
  167. /// 查找类似 履约计划状态不正常 的本地化字符串。
  168. /// </summary>
  169. public static string _10012 {
  170. get {
  171. return ResourceManager.GetString("10012", resourceCulture);
  172. }
  173. }
  174. /// <summary>
  175. /// 查找类似 履约计划步骤已经处理完成 的本地化字符串。
  176. /// </summary>
  177. public static string _10013 {
  178. get {
  179. return ResourceManager.GetString("10013", resourceCulture);
  180. }
  181. }
  182. /// <summary>
  183. /// 查找类似 没有找到总线主题 的本地化字符串。
  184. /// </summary>
  185. public static string _10014 {
  186. get {
  187. return ResourceManager.GetString("10014", resourceCulture);
  188. }
  189. }
  190. /// <summary>
  191. /// 查找类似 没有找到相关仓单信息 的本地化字符串。
  192. /// </summary>
  193. public static string _10015 {
  194. get {
  195. return ResourceManager.GetString("10015", resourceCulture);
  196. }
  197. }
  198. /// <summary>
  199. /// 查找类似 资金密码错误 的本地化字符串。
  200. /// </summary>
  201. public static string _1002 {
  202. get {
  203. return ResourceManager.GetString("1002", resourceCulture);
  204. }
  205. }
  206. /// <summary>
  207. /// 查找类似 账号或密码不匹配 的本地化字符串。
  208. /// </summary>
  209. public static string _1003 {
  210. get {
  211. return ResourceManager.GetString("1003", resourceCulture);
  212. }
  213. }
  214. /// <summary>
  215. /// 查找类似 无效账号 的本地化字符串。
  216. /// </summary>
  217. public static string _1004 {
  218. get {
  219. return ResourceManager.GetString("1004", resourceCulture);
  220. }
  221. }
  222. /// <summary>
  223. /// 查找类似 账号类型不匹配 的本地化字符串。
  224. /// </summary>
  225. public static string _1005 {
  226. get {
  227. return ResourceManager.GetString("1005", resourceCulture);
  228. }
  229. }
  230. /// <summary>
  231. /// 查找类似 账号不在线 的本地化字符串。
  232. /// </summary>
  233. public static string _1006 {
  234. get {
  235. return ResourceManager.GetString("1006", resourceCulture);
  236. }
  237. }
  238. /// <summary>
  239. /// 查找类似 操作权限不够 的本地化字符串。
  240. /// </summary>
  241. public static string _1007 {
  242. get {
  243. return ResourceManager.GetString("1007", resourceCulture);
  244. }
  245. }
  246. /// <summary>
  247. /// 查找类似 会员无账户在线 的本地化字符串。
  248. /// </summary>
  249. public static string _1008 {
  250. get {
  251. return ResourceManager.GetString("1008", resourceCulture);
  252. }
  253. }
  254. /// <summary>
  255. /// 查找类似 账户在别处登录 的本地化字符串。
  256. /// </summary>
  257. public static string _1009 {
  258. get {
  259. return ResourceManager.GetString("1009", resourceCulture);
  260. }
  261. }
  262. /// <summary>
  263. /// 查找类似 值为空 的本地化字符串。
  264. /// </summary>
  265. public static string _1010 {
  266. get {
  267. return ResourceManager.GetString("1010", resourceCulture);
  268. }
  269. }
  270. /// <summary>
  271. /// 查找类似 登录账户已经存在 的本地化字符串。
  272. /// </summary>
  273. public static string _1011 {
  274. get {
  275. return ResourceManager.GetString("1011", resourceCulture);
  276. }
  277. }
  278. /// <summary>
  279. /// 查找类似 软件版本过低不能登陆 的本地化字符串。
  280. /// </summary>
  281. public static string _1012 {
  282. get {
  283. return ResourceManager.GetString("1012", resourceCulture);
  284. }
  285. }
  286. /// <summary>
  287. /// 查找类似 IP地址不在允许范围内 的本地化字符串。
  288. /// </summary>
  289. public static string _1013 {
  290. get {
  291. return ResourceManager.GetString("1013", resourceCulture);
  292. }
  293. }
  294. /// <summary>
  295. /// 查找类似 短信模版为空 的本地化字符串。
  296. /// </summary>
  297. public static string _1014 {
  298. get {
  299. return ResourceManager.GetString("1014", resourceCulture);
  300. }
  301. }
  302. /// <summary>
  303. /// 查找类似 接收手机号码为空 的本地化字符串。
  304. /// </summary>
  305. public static string _1015 {
  306. get {
  307. return ResourceManager.GetString("1015", resourceCulture);
  308. }
  309. }
  310. /// <summary>
  311. /// 查找类似 模板参数不匹配 的本地化字符串。
  312. /// </summary>
  313. public static string _1016 {
  314. get {
  315. return ResourceManager.GetString("1016", resourceCulture);
  316. }
  317. }
  318. /// <summary>
  319. /// 查找类似 短信发送失败 的本地化字符串。
  320. /// </summary>
  321. public static string _1017 {
  322. get {
  323. return ResourceManager.GetString("1017", resourceCulture);
  324. }
  325. }
  326. /// <summary>
  327. /// 查找类似 密码被修改,请重新登录,如有异常请联系管理员 的本地化字符串。
  328. /// </summary>
  329. public static string _1018 {
  330. get {
  331. return ResourceManager.GetString("1018", resourceCulture);
  332. }
  333. }
  334. /// <summary>
  335. /// 查找类似 无效令牌 的本地化字符串。
  336. /// </summary>
  337. public static string _1019 {
  338. get {
  339. return ResourceManager.GetString("1019", resourceCulture);
  340. }
  341. }
  342. /// <summary>
  343. /// 查找类似 登陆账户被锁定 的本地化字符串。
  344. /// </summary>
  345. public static string _1020 {
  346. get {
  347. return ResourceManager.GetString("1020", resourceCulture);
  348. }
  349. }
  350. /// <summary>
  351. /// 查找类似 非法的登陆账户状态 的本地化字符串。
  352. /// </summary>
  353. public static string _1021 {
  354. get {
  355. return ResourceManager.GetString("1021", resourceCulture);
  356. }
  357. }
  358. /// <summary>
  359. /// 查找类似 客户端类型配置不存在 的本地化字符串。
  360. /// </summary>
  361. public static string _1022 {
  362. get {
  363. return ResourceManager.GetString("1022", resourceCulture);
  364. }
  365. }
  366. /// <summary>
  367. /// 查找类似 客户端类型不允许登陆 的本地化字符串。
  368. /// </summary>
  369. public static string _1023 {
  370. get {
  371. return ResourceManager.GetString("1023", resourceCulture);
  372. }
  373. }
  374. /// <summary>
  375. /// 查找类似 撤单失败 的本地化字符串。
  376. /// </summary>
  377. public static string _14 {
  378. get {
  379. return ResourceManager.GetString("14", resourceCulture);
  380. }
  381. }
  382. /// <summary>
  383. /// 查找类似 参数不存在 的本地化字符串。
  384. /// </summary>
  385. public static string _17 {
  386. get {
  387. return ResourceManager.GetString("17", resourceCulture);
  388. }
  389. }
  390. /// <summary>
  391. /// 查找类似 SqlStatement 不存在 的本地化字符串。
  392. /// </summary>
  393. public static string _18 {
  394. get {
  395. return ResourceManager.GetString("18", resourceCulture);
  396. }
  397. }
  398. /// <summary>
  399. /// 查找类似 参数为空 的本地化字符串。
  400. /// </summary>
  401. public static string _19 {
  402. get {
  403. return ResourceManager.GetString("19", resourceCulture);
  404. }
  405. }
  406. /// <summary>
  407. /// 查找类似 配置值非法 的本地化字符串。
  408. /// </summary>
  409. public static string _20 {
  410. get {
  411. return ResourceManager.GetString("20", resourceCulture);
  412. }
  413. }
  414. /// <summary>
  415. /// 查找类似 消息通知模式为空 的本地化字符串。
  416. /// </summary>
  417. public static string _2001 {
  418. get {
  419. return ResourceManager.GetString("2001", resourceCulture);
  420. }
  421. }
  422. /// <summary>
  423. /// 查找类似 消息通知帐号为空 的本地化字符串。
  424. /// </summary>
  425. public static string _2002 {
  426. get {
  427. return ResourceManager.GetString("2002", resourceCulture);
  428. }
  429. }
  430. /// <summary>
  431. /// 查找类似 数据库连接异常 的本地化字符串。
  432. /// </summary>
  433. public static string _21 {
  434. get {
  435. return ResourceManager.GetString("21", resourceCulture);
  436. }
  437. }
  438. /// <summary>
  439. /// 查找类似 未找到相应库位 的本地化字符串。
  440. /// </summary>
  441. public static string _21004 {
  442. get {
  443. return ResourceManager.GetString("21004", resourceCulture);
  444. }
  445. }
  446. /// <summary>
  447. /// 查找类似 库位状态更新失败 的本地化字符串。
  448. /// </summary>
  449. public static string _21005 {
  450. get {
  451. return ResourceManager.GetString("21005", resourceCulture);
  452. }
  453. }
  454. /// <summary>
  455. /// 查找类似 更新库位属主用户失败 的本地化字符串。
  456. /// </summary>
  457. public static string _21010 {
  458. get {
  459. return ResourceManager.GetString("21010", resourceCulture);
  460. }
  461. }
  462. /// <summary>
  463. /// 查找类似 更新仓单属主用户失败 的本地化字符串。
  464. /// </summary>
  465. public static string _21011 {
  466. get {
  467. return ResourceManager.GetString("21011", resourceCulture);
  468. }
  469. }
  470. /// <summary>
  471. /// 查找类似 库位状态错误 的本地化字符串。
  472. /// </summary>
  473. public static string _21012 {
  474. get {
  475. return ResourceManager.GetString("21012", resourceCulture);
  476. }
  477. }
  478. /// <summary>
  479. /// 查找类似 没有找到商品交易属性 的本地化字符串。
  480. /// </summary>
  481. public static string _21016 {
  482. get {
  483. return ResourceManager.GetString("21016", resourceCulture);
  484. }
  485. }
  486. /// <summary>
  487. /// 查找类似 库位编号重复 的本地化字符串。
  488. /// </summary>
  489. public static string _21019 {
  490. get {
  491. return ResourceManager.GetString("21019", resourceCulture);
  492. }
  493. }
  494. /// <summary>
  495. /// 查找类似 数据库DataSet操作异常 的本地化字符串。
  496. /// </summary>
  497. public static string _22 {
  498. get {
  499. return ResourceManager.GetString("22", resourceCulture);
  500. }
  501. }
  502. /// <summary>
  503. /// 查找类似 数据库绑定参数异常 的本地化字符串。
  504. /// </summary>
  505. public static string _23 {
  506. get {
  507. return ResourceManager.GetString("23", resourceCulture);
  508. }
  509. }
  510. /// <summary>
  511. /// 查找类似 数据库执行操作异常 的本地化字符串。
  512. /// </summary>
  513. public static string _24 {
  514. get {
  515. return ResourceManager.GetString("24", resourceCulture);
  516. }
  517. }
  518. /// <summary>
  519. /// 查找类似 数据库提交事务失败 的本地化字符串。
  520. /// </summary>
  521. public static string _25 {
  522. get {
  523. return ResourceManager.GetString("25", resourceCulture);
  524. }
  525. }
  526. /// <summary>
  527. /// 查找类似 数据库回滚事务失败 的本地化字符串。
  528. /// </summary>
  529. public static string _26 {
  530. get {
  531. return ResourceManager.GetString("26", resourceCulture);
  532. }
  533. }
  534. /// <summary>
  535. /// 查找类似 不支持的数据库类型 的本地化字符串。
  536. /// </summary>
  537. public static string _27 {
  538. get {
  539. return ResourceManager.GetString("27", resourceCulture);
  540. }
  541. }
  542. /// <summary>
  543. /// 查找类似 数据库设置隔离等级异常 的本地化字符串。
  544. /// </summary>
  545. public static string _28 {
  546. get {
  547. return ResourceManager.GetString("28", resourceCulture);
  548. }
  549. }
  550. /// <summary>
  551. /// 查找类似 数据库设置自动提交异常 的本地化字符串。
  552. /// </summary>
  553. public static string _29 {
  554. get {
  555. return ResourceManager.GetString("29", resourceCulture);
  556. }
  557. }
  558. /// <summary>
  559. /// 查找类似 断开连接异常 的本地化字符串。
  560. /// </summary>
  561. public static string _30 {
  562. get {
  563. return ResourceManager.GetString("30", resourceCulture);
  564. }
  565. }
  566. /// <summary>
  567. /// 查找类似 委托订单类型不存在 的本地化字符串。
  568. /// </summary>
  569. public static string _3001 {
  570. get {
  571. return ResourceManager.GetString("3001", resourceCulture);
  572. }
  573. }
  574. /// <summary>
  575. /// 查找类似 委托账户状态不对 的本地化字符串。
  576. /// </summary>
  577. public static string _3002 {
  578. get {
  579. return ResourceManager.GetString("3002", resourceCulture);
  580. }
  581. }
  582. /// <summary>
  583. /// 查找类似 账号为空 的本地化字符串。
  584. /// </summary>
  585. public static string _3003 {
  586. get {
  587. return ResourceManager.GetString("3003", resourceCulture);
  588. }
  589. }
  590. /// <summary>
  591. /// 查找类似 二级委托单号无效 的本地化字符串。
  592. /// </summary>
  593. public static string _3004 {
  594. get {
  595. return ResourceManager.GetString("3004", resourceCulture);
  596. }
  597. }
  598. /// <summary>
  599. /// 查找类似 操作员为空 的本地化字符串。
  600. /// </summary>
  601. public static string _3005 {
  602. get {
  603. return ResourceManager.GetString("3005", resourceCulture);
  604. }
  605. }
  606. /// <summary>
  607. /// 查找类似 错误的校验类型 的本地化字符串。
  608. /// </summary>
  609. public static string _3006 {
  610. get {
  611. return ResourceManager.GetString("3006", resourceCulture);
  612. }
  613. }
  614. /// <summary>
  615. /// 查找类似 有效时间为空 的本地化字符串。
  616. /// </summary>
  617. public static string _3007 {
  618. get {
  619. return ResourceManager.GetString("3007", resourceCulture);
  620. }
  621. }
  622. /// <summary>
  623. /// 查找类似 有效时间错误 的本地化字符串。
  624. /// </summary>
  625. public static string _3008 {
  626. get {
  627. return ResourceManager.GetString("3008", resourceCulture);
  628. }
  629. }
  630. /// <summary>
  631. /// 查找类似 会员编号为空 的本地化字符串。
  632. /// </summary>
  633. public static string _3009 {
  634. get {
  635. return ResourceManager.GetString("3009", resourceCulture);
  636. }
  637. }
  638. /// <summary>
  639. /// 查找类似 会员编号错误 的本地化字符串。
  640. /// </summary>
  641. public static string _3010 {
  642. get {
  643. return ResourceManager.GetString("3010", resourceCulture);
  644. }
  645. }
  646. /// <summary>
  647. /// 查找类似 特别会员编号为空 的本地化字符串。
  648. /// </summary>
  649. public static string _3011 {
  650. get {
  651. return ResourceManager.GetString("3011", resourceCulture);
  652. }
  653. }
  654. /// <summary>
  655. /// 查找类似 买卖方向无效 的本地化字符串。
  656. /// </summary>
  657. public static string _3012 {
  658. get {
  659. return ResourceManager.GetString("3012", resourceCulture);
  660. }
  661. }
  662. /// <summary>
  663. /// 查找类似 关联单号无效 的本地化字符串。
  664. /// </summary>
  665. public static string _3013 {
  666. get {
  667. return ResourceManager.GetString("3013", resourceCulture);
  668. }
  669. }
  670. /// <summary>
  671. /// 查找类似 止盈或止损价格无效 的本地化字符串。
  672. /// </summary>
  673. public static string _3014 {
  674. get {
  675. return ResourceManager.GetString("3014", resourceCulture);
  676. }
  677. }
  678. /// <summary>
  679. /// 查找类似 委托账户没有交易权限 的本地化字符串。
  680. /// </summary>
  681. public static string _3015 {
  682. get {
  683. return ResourceManager.GetString("3015", resourceCulture);
  684. }
  685. }
  686. /// <summary>
  687. /// 查找类似 该商品不在连续现货委托状态 的本地化字符串。
  688. /// </summary>
  689. public static string _3016 {
  690. get {
  691. return ResourceManager.GetString("3016", resourceCulture);
  692. }
  693. }
  694. /// <summary>
  695. /// 查找类似 内容权限不存在 的本地化字符串。
  696. /// </summary>
  697. public static string _3017 {
  698. get {
  699. return ResourceManager.GetString("3017", resourceCulture);
  700. }
  701. }
  702. /// <summary>
  703. /// 查找类似 委托没有改单据类型权限 的本地化字符串。
  704. /// </summary>
  705. public static string _3018 {
  706. get {
  707. return ResourceManager.GetString("3018", resourceCulture);
  708. }
  709. }
  710. /// <summary>
  711. /// 查找类似 该商品不在挂牌委托状态 的本地化字符串。
  712. /// </summary>
  713. public static string _3019 {
  714. get {
  715. return ResourceManager.GetString("3019", resourceCulture);
  716. }
  717. }
  718. /// <summary>
  719. /// 查找类似 该商品当前状态不能撤单 的本地化字符串。
  720. /// </summary>
  721. public static string _3020 {
  722. get {
  723. return ResourceManager.GetString("3020", resourceCulture);
  724. }
  725. }
  726. /// <summary>
  727. /// 查找类似 委托错误单据数量 的本地化字符串。
  728. /// </summary>
  729. public static string _3021 {
  730. get {
  731. return ResourceManager.GetString("3021", resourceCulture);
  732. }
  733. }
  734. /// <summary>
  735. /// 查找类似 委托解冻资金失败 的本地化字符串。
  736. /// </summary>
  737. public static string _3022 {
  738. get {
  739. return ResourceManager.GetString("3022", resourceCulture);
  740. }
  741. }
  742. /// <summary>
  743. /// 查找类似 委托订单不存在 的本地化字符串。
  744. /// </summary>
  745. public static string _3023 {
  746. get {
  747. return ResourceManager.GetString("3023", resourceCulture);
  748. }
  749. }
  750. /// <summary>
  751. /// 查找类似 委托单保存失败 的本地化字符串。
  752. /// </summary>
  753. public static string _3024 {
  754. get {
  755. return ResourceManager.GetString("3024", resourceCulture);
  756. }
  757. }
  758. /// <summary>
  759. /// 查找类似 委托撮合失败 的本地化字符串。
  760. /// </summary>
  761. public static string _3025 {
  762. get {
  763. return ResourceManager.GetString("3025", resourceCulture);
  764. }
  765. }
  766. /// <summary>
  767. /// 查找类似 当前行情价无效 的本地化字符串。
  768. /// </summary>
  769. public static string _3026 {
  770. get {
  771. return ResourceManager.GetString("3026", resourceCulture);
  772. }
  773. }
  774. /// <summary>
  775. /// 查找类似 委托账号保证金不足 的本地化字符串。
  776. /// </summary>
  777. public static string _3027 {
  778. get {
  779. return ResourceManager.GetString("3027", resourceCulture);
  780. }
  781. }
  782. /// <summary>
  783. /// 查找类似 委托账号不存在 的本地化字符串。
  784. /// </summary>
  785. public static string _3028 {
  786. get {
  787. return ResourceManager.GetString("3028", resourceCulture);
  788. }
  789. }
  790. /// <summary>
  791. /// 查找类似 账号对应的资金账户不存在 的本地化字符串。
  792. /// </summary>
  793. public static string _3029 {
  794. get {
  795. return ResourceManager.GetString("3029", resourceCulture);
  796. }
  797. }
  798. /// <summary>
  799. /// 查找类似 委托账户未激活 的本地化字符串。
  800. /// </summary>
  801. public static string _3030 {
  802. get {
  803. return ResourceManager.GetString("3030", resourceCulture);
  804. }
  805. }
  806. /// <summary>
  807. /// 查找类似 委托账户冻结 的本地化字符串。
  808. /// </summary>
  809. public static string _3031 {
  810. get {
  811. return ResourceManager.GetString("3031", resourceCulture);
  812. }
  813. }
  814. /// <summary>
  815. /// 查找类似 委托账户受限 的本地化字符串。
  816. /// </summary>
  817. public static string _3032 {
  818. get {
  819. return ResourceManager.GetString("3032", resourceCulture);
  820. }
  821. }
  822. /// <summary>
  823. /// 查找类似 委托账户注销 的本地化字符串。
  824. /// </summary>
  825. public static string _3033 {
  826. get {
  827. return ResourceManager.GetString("3033", resourceCulture);
  828. }
  829. }
  830. /// <summary>
  831. /// 查找类似 特别会员账号不存在 的本地化字符串。
  832. /// </summary>
  833. public static string _3034 {
  834. get {
  835. return ResourceManager.GetString("3034", resourceCulture);
  836. }
  837. }
  838. /// <summary>
  839. /// 查找类似 特别会员账号对应的资金账户不存在 的本地化字符串。
  840. /// </summary>
  841. public static string _3035 {
  842. get {
  843. return ResourceManager.GetString("3035", resourceCulture);
  844. }
  845. }
  846. /// <summary>
  847. /// 查找类似 特别会员账户未激活 的本地化字符串。
  848. /// </summary>
  849. public static string _3036 {
  850. get {
  851. return ResourceManager.GetString("3036", resourceCulture);
  852. }
  853. }
  854. /// <summary>
  855. /// 查找类似 特别会员账户冻结 的本地化字符串。
  856. /// </summary>
  857. public static string _3037 {
  858. get {
  859. return ResourceManager.GetString("3037", resourceCulture);
  860. }
  861. }
  862. /// <summary>
  863. /// 查找类似 特别会员账户受限 的本地化字符串。
  864. /// </summary>
  865. public static string _3038 {
  866. get {
  867. return ResourceManager.GetString("3038", resourceCulture);
  868. }
  869. }
  870. /// <summary>
  871. /// 查找类似 特别会员账户注销 的本地化字符串。
  872. /// </summary>
  873. public static string _3039 {
  874. get {
  875. return ResourceManager.GetString("3039", resourceCulture);
  876. }
  877. }
  878. /// <summary>
  879. /// 查找类似 委托商品不存在 的本地化字符串。
  880. /// </summary>
  881. public static string _3040 {
  882. get {
  883. return ResourceManager.GetString("3040", resourceCulture);
  884. }
  885. }
  886. /// <summary>
  887. /// 查找类似 委托权限定义不存在 的本地化字符串。
  888. /// </summary>
  889. public static string _3041 {
  890. get {
  891. return ResourceManager.GetString("3041", resourceCulture);
  892. }
  893. }
  894. /// <summary>
  895. /// 查找类似 委托账户无下单权限 的本地化字符串。
  896. /// </summary>
  897. public static string _3042 {
  898. get {
  899. return ResourceManager.GetString("3042", resourceCulture);
  900. }
  901. }
  902. /// <summary>
  903. /// 查找类似 商品参数无该订单类型权限 的本地化字符串。
  904. /// </summary>
  905. public static string _3043 {
  906. get {
  907. return ResourceManager.GetString("3043", resourceCulture);
  908. }
  909. }
  910. /// <summary>
  911. /// 查找类似 商品无该订单类型权限 的本地化字符串。
  912. /// </summary>
  913. public static string _3044 {
  914. get {
  915. return ResourceManager.GetString("3044", resourceCulture);
  916. }
  917. }
  918. /// <summary>
  919. /// 查找类似 委托下单商品不存在 的本地化字符串。
  920. /// </summary>
  921. public static string _3045 {
  922. get {
  923. return ResourceManager.GetString("3045", resourceCulture);
  924. }
  925. }
  926. /// <summary>
  927. /// 查找类似 委托商品代码为空 的本地化字符串。
  928. /// </summary>
  929. public static string _3046 {
  930. get {
  931. return ResourceManager.GetString("3046", resourceCulture);
  932. }
  933. }
  934. /// <summary>
  935. /// 查找类似 委托下单商品不在开市状态 的本地化字符串。
  936. /// </summary>
  937. public static string _3047 {
  938. get {
  939. return ResourceManager.GetString("3047", resourceCulture);
  940. }
  941. }
  942. /// <summary>
  943. /// 查找类似 委托商品未包含对应订单类型 的本地化字符串。
  944. /// </summary>
  945. public static string _3048 {
  946. get {
  947. return ResourceManager.GetString("3048", resourceCulture);
  948. }
  949. }
  950. /// <summary>
  951. /// 查找类似 委托数量小于等于零 的本地化字符串。
  952. /// </summary>
  953. public static string _3049 {
  954. get {
  955. return ResourceManager.GetString("3049", resourceCulture);
  956. }
  957. }
  958. /// <summary>
  959. /// 查找类似 委托数量小于此商品单笔最小买入数量 的本地化字符串。
  960. /// </summary>
  961. public static string _3050 {
  962. get {
  963. return ResourceManager.GetString("3050", resourceCulture);
  964. }
  965. }
  966. /// <summary>
  967. /// 查找类似 委托数量大于此商品单笔最大买入数量 的本地化字符串。
  968. /// </summary>
  969. public static string _3051 {
  970. get {
  971. return ResourceManager.GetString("3051", resourceCulture);
  972. }
  973. }
  974. /// <summary>
  975. /// 查找类似 委托订单价格不正确 的本地化字符串。
  976. /// </summary>
  977. public static string _3052 {
  978. get {
  979. return ResourceManager.GetString("3052", resourceCulture);
  980. }
  981. }
  982. /// <summary>
  983. /// 查找类似 止盈或止损价格为空 的本地化字符串。
  984. /// </summary>
  985. public static string _3053 {
  986. get {
  987. return ResourceManager.GetString("3053", resourceCulture);
  988. }
  989. }
  990. /// <summary>
  991. /// 查找类似 委托账号没有持仓汇总 的本地化字符串。
  992. /// </summary>
  993. public static string _3054 {
  994. get {
  995. return ResourceManager.GetString("3054", resourceCulture);
  996. }
  997. }
  998. /// <summary>
  999. /// 查找类似 委托持仓商品不存在 的本地化字符串。
  1000. /// </summary>
  1001. public static string _3055 {
  1002. get {
  1003. return ResourceManager.GetString("3055", resourceCulture);
  1004. }
  1005. }
  1006. /// <summary>
  1007. /// 查找类似 委托超出最大买持仓数量 的本地化字符串。
  1008. /// </summary>
  1009. public static string _3056 {
  1010. get {
  1011. return ResourceManager.GetString("3056", resourceCulture);
  1012. }
  1013. }
  1014. /// <summary>
  1015. /// 查找类似 委托超出最大卖持仓数量 的本地化字符串。
  1016. /// </summary>
  1017. public static string _3057 {
  1018. get {
  1019. return ResourceManager.GetString("3057", resourceCulture);
  1020. }
  1021. }
  1022. /// <summary>
  1023. /// 查找类似 委托超出持仓数量 的本地化字符串。
  1024. /// </summary>
  1025. public static string _3058 {
  1026. get {
  1027. return ResourceManager.GetString("3058", resourceCulture);
  1028. }
  1029. }
  1030. /// <summary>
  1031. /// 查找类似 委托关联委托单无效 的本地化字符串。
  1032. /// </summary>
  1033. public static string _3059 {
  1034. get {
  1035. return ResourceManager.GetString("3059", resourceCulture);
  1036. }
  1037. }
  1038. /// <summary>
  1039. /// 查找类似 委托关联持仓单无效 的本地化字符串。
  1040. /// </summary>
  1041. public static string _3060 {
  1042. get {
  1043. return ResourceManager.GetString("3060", resourceCulture);
  1044. }
  1045. }
  1046. /// <summary>
  1047. /// 查找类似 关联持仓单数量为零 的本地化字符串。
  1048. /// </summary>
  1049. public static string _3061 {
  1050. get {
  1051. return ResourceManager.GetString("3061", resourceCulture);
  1052. }
  1053. }
  1054. /// <summary>
  1055. /// 查找类似 不允许双边持仓 的本地化字符串。
  1056. /// </summary>
  1057. public static string _3062 {
  1058. get {
  1059. return ResourceManager.GetString("3062", resourceCulture);
  1060. }
  1061. }
  1062. /// <summary>
  1063. /// 查找类似 行情超时 的本地化字符串。
  1064. /// </summary>
  1065. public static string _3063 {
  1066. get {
  1067. return ResourceManager.GetString("3063", resourceCulture);
  1068. }
  1069. }
  1070. /// <summary>
  1071. /// 查找类似 错误的买卖点差 的本地化字符串。
  1072. /// </summary>
  1073. public static string _3064 {
  1074. get {
  1075. return ResourceManager.GetString("3064", resourceCulture);
  1076. }
  1077. }
  1078. /// <summary>
  1079. /// 查找类似 劵金额为零 的本地化字符串。
  1080. /// </summary>
  1081. public static string _3065 {
  1082. get {
  1083. return ResourceManager.GetString("3065", resourceCulture);
  1084. }
  1085. }
  1086. /// <summary>
  1087. /// 查找类似 不支持买卖点差 的本地化字符串。
  1088. /// </summary>
  1089. public static string _3066 {
  1090. get {
  1091. return ResourceManager.GetString("3066", resourceCulture);
  1092. }
  1093. }
  1094. /// <summary>
  1095. /// 查找类似 当前阶段不支持撤单 的本地化字符串。
  1096. /// </summary>
  1097. public static string _3067 {
  1098. get {
  1099. return ResourceManager.GetString("3067", resourceCulture);
  1100. }
  1101. }
  1102. /// <summary>
  1103. /// 查找类似 会员不支持投资者买入 的本地化字符串。
  1104. /// </summary>
  1105. public static string _3068 {
  1106. get {
  1107. return ResourceManager.GetString("3068", resourceCulture);
  1108. }
  1109. }
  1110. /// <summary>
  1111. /// 查找类似 会员不支持投资者卖出 的本地化字符串。
  1112. /// </summary>
  1113. public static string _3069 {
  1114. get {
  1115. return ResourceManager.GetString("3069", resourceCulture);
  1116. }
  1117. }
  1118. /// <summary>
  1119. /// 查找类似 会员处于对冲状态 的本地化字符串。
  1120. /// </summary>
  1121. public static string _3070 {
  1122. get {
  1123. return ResourceManager.GetString("3070", resourceCulture);
  1124. }
  1125. }
  1126. /// <summary>
  1127. /// 查找类似 账号处于人工冻结状态 的本地化字符串。
  1128. /// </summary>
  1129. public static string _3071 {
  1130. get {
  1131. return ResourceManager.GetString("3071", resourceCulture);
  1132. }
  1133. }
  1134. /// <summary>
  1135. /// 查找类似 该商品不在理财委托状态 的本地化字符串。
  1136. /// </summary>
  1137. public static string _3072 {
  1138. get {
  1139. return ResourceManager.GetString("3072", resourceCulture);
  1140. }
  1141. }
  1142. /// <summary>
  1143. /// 查找类似 委托数不是最小买入数量或申购单位的整数倍 的本地化字符串。
  1144. /// </summary>
  1145. public static string _3073 {
  1146. get {
  1147. return ResourceManager.GetString("3073", resourceCulture);
  1148. }
  1149. }
  1150. /// <summary>
  1151. /// 查找类似 委托数不是最小卖出数量的整数倍 的本地化字符串。
  1152. /// </summary>
  1153. public static string _3074 {
  1154. get {
  1155. return ResourceManager.GetString("3074", resourceCulture);
  1156. }
  1157. }
  1158. /// <summary>
  1159. /// 查找类似 交收权限规则未找到 的本地化字符串。
  1160. /// </summary>
  1161. public static string _3075 {
  1162. get {
  1163. return ResourceManager.GetString("3075", resourceCulture);
  1164. }
  1165. }
  1166. /// <summary>
  1167. /// 查找类似 商品不允许卖买入 的本地化字符串。
  1168. /// </summary>
  1169. public static string _3076 {
  1170. get {
  1171. return ResourceManager.GetString("3076", resourceCulture);
  1172. }
  1173. }
  1174. /// <summary>
  1175. /// 查找类似 超出用户最大可申购数量 的本地化字符串。
  1176. /// </summary>
  1177. public static string _3077 {
  1178. get {
  1179. return ResourceManager.GetString("3077", resourceCulture);
  1180. }
  1181. }
  1182. /// <summary>
  1183. /// 查找类似 卖出成功但是反手买入失败 的本地化字符串。
  1184. /// </summary>
  1185. public static string _3078 {
  1186. get {
  1187. return ResourceManager.GetString("3078", resourceCulture);
  1188. }
  1189. }
  1190. /// <summary>
  1191. /// 查找类似 会员交易员开平方向有误 的本地化字符串。
  1192. /// </summary>
  1193. public static string _3079 {
  1194. get {
  1195. return ResourceManager.GetString("3079", resourceCulture);
  1196. }
  1197. }
  1198. /// <summary>
  1199. /// 查找类似 会员当前不允许创建订单增加持仓汇总 的本地化字符串。
  1200. /// </summary>
  1201. public static string _3080 {
  1202. get {
  1203. return ResourceManager.GetString("3080", resourceCulture);
  1204. }
  1205. }
  1206. /// <summary>
  1207. /// 查找类似 无委托消息头 的本地化字符串。
  1208. /// </summary>
  1209. public static string _3081 {
  1210. get {
  1211. return ResourceManager.GetString("3081", resourceCulture);
  1212. }
  1213. }
  1214. /// <summary>
  1215. /// 查找类似 错误的委托类型 的本地化字符串。
  1216. /// </summary>
  1217. public static string _3082 {
  1218. get {
  1219. return ResourceManager.GetString("3082", resourceCulture);
  1220. }
  1221. }
  1222. /// <summary>
  1223. /// 查找类似 无客户端流水号 的本地化字符串。
  1224. /// </summary>
  1225. public static string _3083 {
  1226. get {
  1227. return ResourceManager.GetString("3083", resourceCulture);
  1228. }
  1229. }
  1230. /// <summary>
  1231. /// 查找类似 无商品ID 的本地化字符串。
  1232. /// </summary>
  1233. public static string _3084 {
  1234. get {
  1235. return ResourceManager.GetString("3084", resourceCulture);
  1236. }
  1237. }
  1238. /// <summary>
  1239. /// 查找类似 错误的客户端时间格式 的本地化字符串。
  1240. /// </summary>
  1241. public static string _3085 {
  1242. get {
  1243. return ResourceManager.GetString("3085", resourceCulture);
  1244. }
  1245. }
  1246. /// <summary>
  1247. /// 查找类似 错误的客户端类型 的本地化字符串。
  1248. /// </summary>
  1249. public static string _3086 {
  1250. get {
  1251. return ResourceManager.GetString("3086", resourceCulture);
  1252. }
  1253. }
  1254. /// <summary>
  1255. /// 查找类似 重复的客户端流水号 的本地化字符串。
  1256. /// </summary>
  1257. public static string _3087 {
  1258. get {
  1259. return ResourceManager.GetString("3087", resourceCulture);
  1260. }
  1261. }
  1262. /// <summary>
  1263. /// 查找类似 买卖值错误 的本地化字符串。
  1264. /// </summary>
  1265. public static string _3088 {
  1266. get {
  1267. return ResourceManager.GetString("3088", resourceCulture);
  1268. }
  1269. }
  1270. /// <summary>
  1271. /// 查找类似 下单类型错误 的本地化字符串。
  1272. /// </summary>
  1273. public static string _3089 {
  1274. get {
  1275. return ResourceManager.GetString("3089", resourceCulture);
  1276. }
  1277. }
  1278. /// <summary>
  1279. /// 查找类似 取价方式错误 的本地化字符串。
  1280. /// </summary>
  1281. public static string _3090 {
  1282. get {
  1283. return ResourceManager.GetString("3090", resourceCulture);
  1284. }
  1285. }
  1286. /// <summary>
  1287. /// 查找类似 关联持仓单方向错误 的本地化字符串。
  1288. /// </summary>
  1289. public static string _3091 {
  1290. get {
  1291. return ResourceManager.GetString("3091", resourceCulture);
  1292. }
  1293. }
  1294. /// <summary>
  1295. /// 查找类似 委托数量大于关联持仓单可平持仓数量 的本地化字符串。
  1296. /// </summary>
  1297. public static string _3092 {
  1298. get {
  1299. return ResourceManager.GetString("3092", resourceCulture);
  1300. }
  1301. }
  1302. /// <summary>
  1303. /// 查找类似 委托数量大于可平持仓数量 的本地化字符串。
  1304. /// </summary>
  1305. public static string _3093 {
  1306. get {
  1307. return ResourceManager.GetString("3093", resourceCulture);
  1308. }
  1309. }
  1310. /// <summary>
  1311. /// 查找类似 委托消息头无关联单号 的本地化字符串。
  1312. /// </summary>
  1313. public static string _3094 {
  1314. get {
  1315. return ResourceManager.GetString("3094", resourceCulture);
  1316. }
  1317. }
  1318. /// <summary>
  1319. /// 查找类似 数据库中无最小买入数或申购单位参数 的本地化字符串。
  1320. /// </summary>
  1321. public static string _3095 {
  1322. get {
  1323. return ResourceManager.GetString("3095", resourceCulture);
  1324. }
  1325. }
  1326. /// <summary>
  1327. /// 查找类似 数据库中无最大买入数参数 的本地化字符串。
  1328. /// </summary>
  1329. public static string _3096 {
  1330. get {
  1331. return ResourceManager.GetString("3096", resourceCulture);
  1332. }
  1333. }
  1334. /// <summary>
  1335. /// 查找类似 账户无此商品交易权限 的本地化字符串。
  1336. /// </summary>
  1337. public static string _3097 {
  1338. get {
  1339. return ResourceManager.GetString("3097", resourceCulture);
  1340. }
  1341. }
  1342. /// <summary>
  1343. /// 查找类似 委托关联委托单状态无效 的本地化字符串。
  1344. /// </summary>
  1345. public static string _3098 {
  1346. get {
  1347. return ResourceManager.GetString("3098", resourceCulture);
  1348. }
  1349. }
  1350. /// <summary>
  1351. /// 查找类似 委托消息无反手买入标志 的本地化字符串。
  1352. /// </summary>
  1353. public static string _3099 {
  1354. get {
  1355. return ResourceManager.GetString("3099", resourceCulture);
  1356. }
  1357. }
  1358. /// <summary>
  1359. /// 查找类似 结果集体字段序号越界 的本地化字符串。
  1360. /// </summary>
  1361. public static string _31 {
  1362. get {
  1363. return ResourceManager.GetString("31", resourceCulture);
  1364. }
  1365. }
  1366. /// <summary>
  1367. /// 查找类似 数据库缺少账户状态或运行阶段的交易规则 的本地化字符串。
  1368. /// </summary>
  1369. public static string _3100 {
  1370. get {
  1371. return ResourceManager.GetString("3100", resourceCulture);
  1372. }
  1373. }
  1374. /// <summary>
  1375. /// 查找类似 数据库中无买最大持仓数参数 的本地化字符串。
  1376. /// </summary>
  1377. public static string _3101 {
  1378. get {
  1379. return ResourceManager.GetString("3101", resourceCulture);
  1380. }
  1381. }
  1382. /// <summary>
  1383. /// 查找类似 数据库中无卖最大持仓数参数 的本地化字符串。
  1384. /// </summary>
  1385. public static string _3102 {
  1386. get {
  1387. return ResourceManager.GetString("3102", resourceCulture);
  1388. }
  1389. }
  1390. /// <summary>
  1391. /// 查找类似 账户类型不是会员 的本地化字符串。
  1392. /// </summary>
  1393. public static string _3103 {
  1394. get {
  1395. return ResourceManager.GetString("3103", resourceCulture);
  1396. }
  1397. }
  1398. /// <summary>
  1399. /// 查找类似 限价卖出暂不支持部分卖出 的本地化字符串。
  1400. /// </summary>
  1401. public static string _3104 {
  1402. get {
  1403. return ResourceManager.GetString("3104", resourceCulture);
  1404. }
  1405. }
  1406. /// <summary>
  1407. /// 查找类似 当前账户不能平其他账户的单据 的本地化字符串。
  1408. /// </summary>
  1409. public static string _3105 {
  1410. get {
  1411. return ResourceManager.GetString("3105", resourceCulture);
  1412. }
  1413. }
  1414. /// <summary>
  1415. /// 查找类似 错误的委托账户类型 的本地化字符串。
  1416. /// </summary>
  1417. public static string _3106 {
  1418. get {
  1419. return ResourceManager.GetString("3106", resourceCulture);
  1420. }
  1421. }
  1422. /// <summary>
  1423. /// 查找类似 无可用连续现货关系,确定对手失败 的本地化字符串。
  1424. /// </summary>
  1425. public static string _3107 {
  1426. get {
  1427. return ResourceManager.GetString("3107", resourceCulture);
  1428. }
  1429. }
  1430. /// <summary>
  1431. /// 查找类似 运行阶段不是申购中 的本地化字符串。
  1432. /// </summary>
  1433. public static string _3108 {
  1434. get {
  1435. return ResourceManager.GetString("3108", resourceCulture);
  1436. }
  1437. }
  1438. /// <summary>
  1439. /// 查找类似 运行阶段不是待发售 的本地化字符串。
  1440. /// </summary>
  1441. public static string _3109 {
  1442. get {
  1443. return ResourceManager.GetString("3109", resourceCulture);
  1444. }
  1445. }
  1446. /// <summary>
  1447. /// 查找类似 发售账户受限 的本地化字符串。
  1448. /// </summary>
  1449. public static string _3110 {
  1450. get {
  1451. return ResourceManager.GetString("3110", resourceCulture);
  1452. }
  1453. }
  1454. /// <summary>
  1455. /// 查找类似 当前账户不能撤其他账户的单据 的本地化字符串。
  1456. /// </summary>
  1457. public static string _3111 {
  1458. get {
  1459. return ResourceManager.GetString("3111", resourceCulture);
  1460. }
  1461. }
  1462. /// <summary>
  1463. /// 查找类似 改单数量不为0且不能与原单据数量相同 的本地化字符串。
  1464. /// </summary>
  1465. public static string _3112 {
  1466. get {
  1467. return ResourceManager.GetString("3112", resourceCulture);
  1468. }
  1469. }
  1470. /// <summary>
  1471. /// 查找类似 数据库中无最大申购持仓数量 的本地化字符串。
  1472. /// </summary>
  1473. public static string _3113 {
  1474. get {
  1475. return ResourceManager.GetString("3113", resourceCulture);
  1476. }
  1477. }
  1478. /// <summary>
  1479. /// 查找类似 申购数量超过最大申购持仓数量 的本地化字符串。
  1480. /// </summary>
  1481. public static string _3114 {
  1482. get {
  1483. return ResourceManager.GetString("3114", resourceCulture);
  1484. }
  1485. }
  1486. /// <summary>
  1487. /// 查找类似 触发类型值错误 的本地化字符串。
  1488. /// </summary>
  1489. public static string _3115 {
  1490. get {
  1491. return ResourceManager.GetString("3115", resourceCulture);
  1492. }
  1493. }
  1494. /// <summary>
  1495. /// 查找类似 触发价格值错误 的本地化字符串。
  1496. /// </summary>
  1497. public static string _3116 {
  1498. get {
  1499. return ResourceManager.GetString("3116", resourceCulture);
  1500. }
  1501. }
  1502. /// <summary>
  1503. /// 查找类似 消息头无UUID 的本地化字符串。
  1504. /// </summary>
  1505. public static string _3117 {
  1506. get {
  1507. return ResourceManager.GetString("3117", resourceCulture);
  1508. }
  1509. }
  1510. /// <summary>
  1511. /// 查找类似 数据库无此预埋单 的本地化字符串。
  1512. /// </summary>
  1513. public static string _3118 {
  1514. get {
  1515. return ResourceManager.GetString("3118", resourceCulture);
  1516. }
  1517. }
  1518. /// <summary>
  1519. /// 查找类似 撤单时,预埋单不在订单在市状态 的本地化字符串。
  1520. /// </summary>
  1521. public static string _3119 {
  1522. get {
  1523. return ResourceManager.GetString("3119", resourceCulture);
  1524. }
  1525. }
  1526. /// <summary>
  1527. /// 查找类似 买方向,委托价格高于涨停价 的本地化字符串。
  1528. /// </summary>
  1529. public static string _3120 {
  1530. get {
  1531. return ResourceManager.GetString("3120", resourceCulture);
  1532. }
  1533. }
  1534. /// <summary>
  1535. /// 查找类似 卖方向,委托价格底于跌停价 的本地化字符串。
  1536. /// </summary>
  1537. public static string _3121 {
  1538. get {
  1539. return ResourceManager.GetString("3121", resourceCulture);
  1540. }
  1541. }
  1542. /// <summary>
  1543. /// 查找类似 未查询到此商品的涨跌停价 的本地化字符串。
  1544. /// </summary>
  1545. public static string _3122 {
  1546. get {
  1547. return ResourceManager.GetString("3122", resourceCulture);
  1548. }
  1549. }
  1550. /// <summary>
  1551. /// 查找类似 委托价格不在此商品涨跌停价区间 的本地化字符串。
  1552. /// </summary>
  1553. public static string _3123 {
  1554. get {
  1555. return ResourceManager.GetString("3123", resourceCulture);
  1556. }
  1557. }
  1558. /// <summary>
  1559. /// 查找类似 挂牌市场受限状态只允许卖出持仓 的本地化字符串。
  1560. /// </summary>
  1561. public static string _3124 {
  1562. get {
  1563. return ResourceManager.GetString("3124", resourceCulture);
  1564. }
  1565. }
  1566. /// <summary>
  1567. /// 查找类似 交易模式错误 的本地化字符串。
  1568. /// </summary>
  1569. public static string _3125 {
  1570. get {
  1571. return ResourceManager.GetString("3125", resourceCulture);
  1572. }
  1573. }
  1574. /// <summary>
  1575. /// 查找类似 账户类型不是投资者 的本地化字符串。
  1576. /// </summary>
  1577. public static string _3126 {
  1578. get {
  1579. return ResourceManager.GetString("3126", resourceCulture);
  1580. }
  1581. }
  1582. /// <summary>
  1583. /// 查找类似 下单类型不是改单 的本地化字符串。
  1584. /// </summary>
  1585. public static string _3127 {
  1586. get {
  1587. return ResourceManager.GetString("3127", resourceCulture);
  1588. }
  1589. }
  1590. /// <summary>
  1591. /// 查找类似 止盈止损单不在在市状态 的本地化字符串。
  1592. /// </summary>
  1593. public static string _3128 {
  1594. get {
  1595. return ResourceManager.GetString("3128", resourceCulture);
  1596. }
  1597. }
  1598. /// <summary>
  1599. /// 查找类似 止盈止损主单不在已成状态 的本地化字符串。
  1600. /// </summary>
  1601. public static string _3129 {
  1602. get {
  1603. return ResourceManager.GetString("3129", resourceCulture);
  1604. }
  1605. }
  1606. /// <summary>
  1607. /// 查找类似 商品不在连续交易阶段,不允许下市价单 的本地化字符串。
  1608. /// </summary>
  1609. public static string _3130 {
  1610. get {
  1611. return ResourceManager.GetString("3130", resourceCulture);
  1612. }
  1613. }
  1614. /// <summary>
  1615. /// 查找类似 当前反方向持仓有冻结数量,不允许下先平后建单 的本地化字符串。
  1616. /// </summary>
  1617. public static string _3131 {
  1618. get {
  1619. return ResourceManager.GetString("3131", resourceCulture);
  1620. }
  1621. }
  1622. /// <summary>
  1623. /// 查找类似 数据库无最大持仓量参数 的本地化字符串。
  1624. /// </summary>
  1625. public static string _3132 {
  1626. get {
  1627. return ResourceManager.GetString("3132", resourceCulture);
  1628. }
  1629. }
  1630. /// <summary>
  1631. /// 查找类似 下单数量不允许超过最大持仓量 的本地化字符串。
  1632. /// </summary>
  1633. public static string _3133 {
  1634. get {
  1635. return ResourceManager.GetString("3133", resourceCulture);
  1636. }
  1637. }
  1638. /// <summary>
  1639. /// 查找类似 最小买入数量或申购单位值不能为0 的本地化字符串。
  1640. /// </summary>
  1641. public static string _3134 {
  1642. get {
  1643. return ResourceManager.GetString("3134", resourceCulture);
  1644. }
  1645. }
  1646. /// <summary>
  1647. /// 查找类似 没有找到可接单的结算会员 的本地化字符串。
  1648. /// </summary>
  1649. public static string _3135 {
  1650. get {
  1651. return ResourceManager.GetString("3135", resourceCulture);
  1652. }
  1653. }
  1654. /// <summary>
  1655. /// 查找类似 下单数量不允许超过当前商品组最大持仓量 的本地化字符串。
  1656. /// </summary>
  1657. public static string _3136 {
  1658. get {
  1659. return ResourceManager.GetString("3136", resourceCulture);
  1660. }
  1661. }
  1662. /// <summary>
  1663. /// 查找类似 未找到可用对手关系 的本地化字符串。
  1664. /// </summary>
  1665. public static string _3137 {
  1666. get {
  1667. return ResourceManager.GetString("3137", resourceCulture);
  1668. }
  1669. }
  1670. /// <summary>
  1671. /// 查找类似 竞价全额模式只允许买建仓,卖平仓 的本地化字符串。
  1672. /// </summary>
  1673. public static string _3138 {
  1674. get {
  1675. return ResourceManager.GetString("3138", resourceCulture);
  1676. }
  1677. }
  1678. /// <summary>
  1679. /// 查找类似 数据库中无商品持仓天数限制参数 的本地化字符串。
  1680. /// </summary>
  1681. public static string _3139 {
  1682. get {
  1683. return ResourceManager.GetString("3139", resourceCulture);
  1684. }
  1685. }
  1686. /// <summary>
  1687. /// 查找类似 持仓单持仓天数小于限制天数 的本地化字符串。
  1688. /// </summary>
  1689. public static string _3140 {
  1690. get {
  1691. return ResourceManager.GetString("3140", resourceCulture);
  1692. }
  1693. }
  1694. /// <summary>
  1695. /// 查找类似 平仓数量必须是单笔最小交易数量整数倍,如果不是,则平仓数量必须等于可平数量 的本地化字符串。
  1696. /// </summary>
  1697. public static string _3141 {
  1698. get {
  1699. return ResourceManager.GetString("3141", resourceCulture);
  1700. }
  1701. }
  1702. /// <summary>
  1703. /// 查找类似 市场ID为空 的本地化字符串。
  1704. /// </summary>
  1705. public static string _3142 {
  1706. get {
  1707. return ResourceManager.GetString("3142", resourceCulture);
  1708. }
  1709. }
  1710. /// <summary>
  1711. /// 查找类似 请求市场ID非法 的本地化字符串。
  1712. /// </summary>
  1713. public static string _3143 {
  1714. get {
  1715. return ResourceManager.GetString("3143", resourceCulture);
  1716. }
  1717. }
  1718. /// <summary>
  1719. /// 查找类似 市场ID不匹配 的本地化字符串。
  1720. /// </summary>
  1721. public static string _3144 {
  1722. get {
  1723. return ResourceManager.GetString("3144", resourceCulture);
  1724. }
  1725. }
  1726. /// <summary>
  1727. /// 查找类似 未选定摘牌类型 的本地化字符串。
  1728. /// </summary>
  1729. public static string _3145 {
  1730. get {
  1731. return ResourceManager.GetString("3145", resourceCulture);
  1732. }
  1733. }
  1734. /// <summary>
  1735. /// 查找类似 不允许摘相同账号的挂牌单据 的本地化字符串。
  1736. /// </summary>
  1737. public static string _3146 {
  1738. get {
  1739. return ResourceManager.GetString("3146", resourceCulture);
  1740. }
  1741. }
  1742. /// <summary>
  1743. /// 查找类似 请求账户ID非法 的本地化字符串。
  1744. /// </summary>
  1745. public static string _3147 {
  1746. get {
  1747. return ResourceManager.GetString("3147", resourceCulture);
  1748. }
  1749. }
  1750. /// <summary>
  1751. /// 查找类似 请求参数不全 的本地化字符串。
  1752. /// </summary>
  1753. public static string _3148 {
  1754. get {
  1755. return ResourceManager.GetString("3148", resourceCulture);
  1756. }
  1757. }
  1758. /// <summary>
  1759. /// 查找类似 委托用户ID为空 的本地化字符串。
  1760. /// </summary>
  1761. public static string _3149 {
  1762. get {
  1763. return ResourceManager.GetString("3149", resourceCulture);
  1764. }
  1765. }
  1766. /// <summary>
  1767. /// 查找类似 委托用户无账户权限 的本地化字符串。
  1768. /// </summary>
  1769. public static string _3150 {
  1770. get {
  1771. return ResourceManager.GetString("3150", resourceCulture);
  1772. }
  1773. }
  1774. /// <summary>
  1775. /// 查找类似 关联用户账户状态不支持委托类型 的本地化字符串。
  1776. /// </summary>
  1777. public static string _3151 {
  1778. get {
  1779. return ResourceManager.GetString("3151", resourceCulture);
  1780. }
  1781. }
  1782. /// <summary>
  1783. /// 查找类似 小于最小建仓数量 的本地化字符串。
  1784. /// </summary>
  1785. public static string _3152 {
  1786. get {
  1787. return ResourceManager.GetString("3152", resourceCulture);
  1788. }
  1789. }
  1790. /// <summary>
  1791. /// 查找类似 大于最大建仓数量 的本地化字符串。
  1792. /// </summary>
  1793. public static string _3153 {
  1794. get {
  1795. return ResourceManager.GetString("3153", resourceCulture);
  1796. }
  1797. }
  1798. /// <summary>
  1799. /// 查找类似 市场未开市 的本地化字符串。
  1800. /// </summary>
  1801. public static string _3154 {
  1802. get {
  1803. return ResourceManager.GetString("3154", resourceCulture);
  1804. }
  1805. }
  1806. /// <summary>
  1807. /// 查找类似 目标挂牌单据已失效 的本地化字符串。
  1808. /// </summary>
  1809. public static string _3155 {
  1810. get {
  1811. return ResourceManager.GetString("3155", resourceCulture);
  1812. }
  1813. }
  1814. /// <summary>
  1815. /// 查找类似 错误的数据库类型 的本地化字符串。
  1816. /// </summary>
  1817. public static string _32 {
  1818. get {
  1819. return ResourceManager.GetString("32", resourceCulture);
  1820. }
  1821. }
  1822. /// <summary>
  1823. /// 查找类似 冻结持仓汇总失败 的本地化字符串。
  1824. /// </summary>
  1825. public static string _3200 {
  1826. get {
  1827. return ResourceManager.GetString("3200", resourceCulture);
  1828. }
  1829. }
  1830. /// <summary>
  1831. /// 查找类似 冻结持仓失败 的本地化字符串。
  1832. /// </summary>
  1833. public static string _3201 {
  1834. get {
  1835. return ResourceManager.GetString("3201", resourceCulture);
  1836. }
  1837. }
  1838. /// <summary>
  1839. /// 查找类似 解冻持仓汇总失败 的本地化字符串。
  1840. /// </summary>
  1841. public static string _3202 {
  1842. get {
  1843. return ResourceManager.GetString("3202", resourceCulture);
  1844. }
  1845. }
  1846. /// <summary>
  1847. /// 查找类似 解冻持仓失败 的本地化字符串。
  1848. /// </summary>
  1849. public static string _3203 {
  1850. get {
  1851. return ResourceManager.GetString("3203", resourceCulture);
  1852. }
  1853. }
  1854. /// <summary>
  1855. /// 查找类似 成交数量大于冻结数量 的本地化字符串。
  1856. /// </summary>
  1857. public static string _3204 {
  1858. get {
  1859. return ResourceManager.GetString("3204", resourceCulture);
  1860. }
  1861. }
  1862. /// <summary>
  1863. /// 查找类似 成交数量大于持仓数量 的本地化字符串。
  1864. /// </summary>
  1865. public static string _3205 {
  1866. get {
  1867. return ResourceManager.GetString("3205", resourceCulture);
  1868. }
  1869. }
  1870. /// <summary>
  1871. /// 查找类似 商品不是开市状态 的本地化字符串。
  1872. /// </summary>
  1873. public static string _3206 {
  1874. get {
  1875. return ResourceManager.GetString("3206", resourceCulture);
  1876. }
  1877. }
  1878. /// <summary>
  1879. /// 查找类似 没有找到对应的持仓单 的本地化字符串。
  1880. /// </summary>
  1881. public static string _3207 {
  1882. get {
  1883. return ResourceManager.GetString("3207", resourceCulture);
  1884. }
  1885. }
  1886. /// <summary>
  1887. /// 查找类似 持仓单有部分数量被冻结 的本地化字符串。
  1888. /// </summary>
  1889. public static string _3208 {
  1890. get {
  1891. return ResourceManager.GetString("3208", resourceCulture);
  1892. }
  1893. }
  1894. /// <summary>
  1895. /// 查找类似 持仓汇总可用数量不足 的本地化字符串。
  1896. /// </summary>
  1897. public static string _3209 {
  1898. get {
  1899. return ResourceManager.GetString("3209", resourceCulture);
  1900. }
  1901. }
  1902. /// <summary>
  1903. /// 查找类似 查找投资者对应的交易会员失败 的本地化字符串。
  1904. /// </summary>
  1905. public static string _3210 {
  1906. get {
  1907. return ResourceManager.GetString("3210", resourceCulture);
  1908. }
  1909. }
  1910. /// <summary>
  1911. /// 查找类似 没有设置混合模式下会员报价 的本地化字符串。
  1912. /// </summary>
  1913. public static string _3211 {
  1914. get {
  1915. return ResourceManager.GetString("3211", resourceCulture);
  1916. }
  1917. }
  1918. /// <summary>
  1919. /// 查找类似 撤单失败,同一张单据不允许被重复撤单 的本地化字符串。
  1920. /// </summary>
  1921. public static string _3212 {
  1922. get {
  1923. return ResourceManager.GetString("3212", resourceCulture);
  1924. }
  1925. }
  1926. /// <summary>
  1927. /// 查找类似 交割请求数据无效 的本地化字符串。
  1928. /// </summary>
  1929. public static string _3213 {
  1930. get {
  1931. return ResourceManager.GetString("3213", resourceCulture);
  1932. }
  1933. }
  1934. /// <summary>
  1935. /// 查找类似 数据源配置错误 的本地化字符串。
  1936. /// </summary>
  1937. public static string _33 {
  1938. get {
  1939. return ResourceManager.GetString("33", resourceCulture);
  1940. }
  1941. }
  1942. /// <summary>
  1943. /// 查找类似 获取斩仓对应的持仓失败 的本地化字符串。
  1944. /// </summary>
  1945. public static string _3300 {
  1946. get {
  1947. return ResourceManager.GetString("3300", resourceCulture);
  1948. }
  1949. }
  1950. /// <summary>
  1951. /// 查找类似 计算斩仓手续费失败 的本地化字符串。
  1952. /// </summary>
  1953. public static string _3301 {
  1954. get {
  1955. return ResourceManager.GetString("3301", resourceCulture);
  1956. }
  1957. }
  1958. /// <summary>
  1959. /// 查找类似 账户委托回应失败 的本地化字符串。
  1960. /// </summary>
  1961. public static string _3302 {
  1962. get {
  1963. return ResourceManager.GetString("3302", resourceCulture);
  1964. }
  1965. }
  1966. /// <summary>
  1967. /// 查找类似 账户成交回应失败 的本地化字符串。
  1968. /// </summary>
  1969. public static string _3303 {
  1970. get {
  1971. return ResourceManager.GetString("3303", resourceCulture);
  1972. }
  1973. }
  1974. /// <summary>
  1975. /// 查找类似 冻结会员头寸失败 的本地化字符串。
  1976. /// </summary>
  1977. public static string _3304 {
  1978. get {
  1979. return ResourceManager.GetString("3304", resourceCulture);
  1980. }
  1981. }
  1982. /// <summary>
  1983. /// 查找类似 获取会员头寸失败 的本地化字符串。
  1984. /// </summary>
  1985. public static string _3305 {
  1986. get {
  1987. return ResourceManager.GetString("3305", resourceCulture);
  1988. }
  1989. }
  1990. /// <summary>
  1991. /// 查找类似 SqlStatement非法 的本地化字符串。
  1992. /// </summary>
  1993. public static string _34 {
  1994. get {
  1995. return ResourceManager.GetString("34", resourceCulture);
  1996. }
  1997. }
  1998. /// <summary>
  1999. /// 查找类似 没有市场信息 的本地化字符串。
  2000. /// </summary>
  2001. public static string _3400 {
  2002. get {
  2003. return ResourceManager.GetString("3400", resourceCulture);
  2004. }
  2005. }
  2006. /// <summary>
  2007. /// 查找类似 没有结算计划 的本地化字符串。
  2008. /// </summary>
  2009. public static string _3401 {
  2010. get {
  2011. return ResourceManager.GetString("3401", resourceCulture);
  2012. }
  2013. }
  2014. /// <summary>
  2015. /// 查找类似 获取结算价TIK失败 的本地化字符串。
  2016. /// </summary>
  2017. public static string _3402 {
  2018. get {
  2019. return ResourceManager.GetString("3402", resourceCulture);
  2020. }
  2021. }
  2022. /// <summary>
  2023. /// 查找类似 不是所有商品都有行情TIK 的本地化字符串。
  2024. /// </summary>
  2025. public static string _3403 {
  2026. get {
  2027. return ResourceManager.GetString("3403", resourceCulture);
  2028. }
  2029. }
  2030. /// <summary>
  2031. /// 查找类似 找不到上次商品结算信息 的本地化字符串。
  2032. /// </summary>
  2033. public static string _3404 {
  2034. get {
  2035. return ResourceManager.GetString("3404", resourceCulture);
  2036. }
  2037. }
  2038. /// <summary>
  2039. /// 查找类似 更新涨跌停价到商品属性表失败 的本地化字符串。
  2040. /// </summary>
  2041. public static string _3405 {
  2042. get {
  2043. return ResourceManager.GetString("3405", resourceCulture);
  2044. }
  2045. }
  2046. /// <summary>
  2047. /// 查找类似 协议转让失败 的本地化字符串。
  2048. /// </summary>
  2049. public static string _3406 {
  2050. get {
  2051. return ResourceManager.GetString("3406", resourceCulture);
  2052. }
  2053. }
  2054. /// <summary>
  2055. /// 查找类似 到期单撤单失败 的本地化字符串。
  2056. /// </summary>
  2057. public static string _3407 {
  2058. get {
  2059. return ResourceManager.GetString("3407", resourceCulture);
  2060. }
  2061. }
  2062. /// <summary>
  2063. /// 查找类似 等待资金响应超时 的本地化字符串。
  2064. /// </summary>
  2065. public static string _3408 {
  2066. get {
  2067. return ResourceManager.GetString("3408", resourceCulture);
  2068. }
  2069. }
  2070. /// <summary>
  2071. /// 查找类似 资金请求失败 的本地化字符串。
  2072. /// </summary>
  2073. public static string _3409 {
  2074. get {
  2075. return ResourceManager.GetString("3409", resourceCulture);
  2076. }
  2077. }
  2078. /// <summary>
  2079. /// 查找类似 费用分成创建源单据失败 的本地化字符串。
  2080. /// </summary>
  2081. public static string _3410 {
  2082. get {
  2083. return ResourceManager.GetString("3410", resourceCulture);
  2084. }
  2085. }
  2086. /// <summary>
  2087. /// 查找类似 费用分成创建目标失败 的本地化字符串。
  2088. /// </summary>
  2089. public static string _3411 {
  2090. get {
  2091. return ResourceManager.GetString("3411", resourceCulture);
  2092. }
  2093. }
  2094. /// <summary>
  2095. /// 查找类似 费用分成加载目标失败 的本地化字符串。
  2096. /// </summary>
  2097. public static string _3412 {
  2098. get {
  2099. return ResourceManager.GetString("3412", resourceCulture);
  2100. }
  2101. }
  2102. /// <summary>
  2103. /// 查找类似 费用分成没有目标账号 的本地化字符串。
  2104. /// </summary>
  2105. public static string _3413 {
  2106. get {
  2107. return ResourceManager.GetString("3413", resourceCulture);
  2108. }
  2109. }
  2110. /// <summary>
  2111. /// 查找类似 费用分成插入账号分成日志失败 的本地化字符串。
  2112. /// </summary>
  2113. public static string _3414 {
  2114. get {
  2115. return ResourceManager.GetString("3414", resourceCulture);
  2116. }
  2117. }
  2118. /// <summary>
  2119. /// 查找类似 费用分成查询分成类型失败 的本地化字符串。
  2120. /// </summary>
  2121. public static string _3415 {
  2122. get {
  2123. return ResourceManager.GetString("3415", resourceCulture);
  2124. }
  2125. }
  2126. /// <summary>
  2127. /// 查找类似 费用分成没有分成类型 的本地化字符串。
  2128. /// </summary>
  2129. public static string _3416 {
  2130. get {
  2131. return ResourceManager.GetString("3416", resourceCulture);
  2132. }
  2133. }
  2134. /// <summary>
  2135. /// 查找类似 费用分成账号数据在分成之前 的本地化字符串。
  2136. /// </summary>
  2137. public static string _3417 {
  2138. get {
  2139. return ResourceManager.GetString("3417", resourceCulture);
  2140. }
  2141. }
  2142. /// <summary>
  2143. /// 查找类似 费用分成检查节点失败 的本地化字符串。
  2144. /// </summary>
  2145. public static string _3418 {
  2146. get {
  2147. return ResourceManager.GetString("3418", resourceCulture);
  2148. }
  2149. }
  2150. /// <summary>
  2151. /// 查找类似 费用分成找不到源单据 的本地化字符串。
  2152. /// </summary>
  2153. public static string _3419 {
  2154. get {
  2155. return ResourceManager.GetString("3419", resourceCulture);
  2156. }
  2157. }
  2158. /// <summary>
  2159. /// 查找类似 费用分成找不到目标账号 的本地化字符串。
  2160. /// </summary>
  2161. public static string _3420 {
  2162. get {
  2163. return ResourceManager.GetString("3420", resourceCulture);
  2164. }
  2165. }
  2166. /// <summary>
  2167. /// 查找类似 费用分成插入目标单据失败 的本地化字符串。
  2168. /// </summary>
  2169. public static string _3421 {
  2170. get {
  2171. return ResourceManager.GetString("3421", resourceCulture);
  2172. }
  2173. }
  2174. /// <summary>
  2175. /// 查找类似 费用分成加载账号日志失败 的本地化字符串。
  2176. /// </summary>
  2177. public static string _3422 {
  2178. get {
  2179. return ResourceManager.GetString("3422", resourceCulture);
  2180. }
  2181. }
  2182. /// <summary>
  2183. /// 查找类似 费用分成没有目标单据产生 的本地化字符串。
  2184. /// </summary>
  2185. public static string _3423 {
  2186. get {
  2187. return ResourceManager.GetString("3423", resourceCulture);
  2188. }
  2189. }
  2190. /// <summary>
  2191. /// 查找类似 费用分成未创建目标 的本地化字符串。
  2192. /// </summary>
  2193. public static string _3424 {
  2194. get {
  2195. return ResourceManager.GetString("3424", resourceCulture);
  2196. }
  2197. }
  2198. /// <summary>
  2199. /// 查找类似 费用分成源单据金额与目标单据金额不匹配 的本地化字符串。
  2200. /// </summary>
  2201. public static string _3425 {
  2202. get {
  2203. return ResourceManager.GetString("3425", resourceCulture);
  2204. }
  2205. }
  2206. /// <summary>
  2207. /// 查找类似 费用分成目标单据金额与目标账户金额不匹配 的本地化字符串。
  2208. /// </summary>
  2209. public static string _3426 {
  2210. get {
  2211. return ResourceManager.GetString("3426", resourceCulture);
  2212. }
  2213. }
  2214. /// <summary>
  2215. /// 查找类似 费用分成没有账号分配 的本地化字符串。
  2216. /// </summary>
  2217. public static string _3427 {
  2218. get {
  2219. return ResourceManager.GetString("3427", resourceCulture);
  2220. }
  2221. }
  2222. /// <summary>
  2223. /// 查找类似 费用分成资金响应超时 的本地化字符串。
  2224. /// </summary>
  2225. public static string _3428 {
  2226. get {
  2227. return ResourceManager.GetString("3428", resourceCulture);
  2228. }
  2229. }
  2230. /// <summary>
  2231. /// 查找类似 费用分成未知错误 的本地化字符串。
  2232. /// </summary>
  2233. public static string _3429 {
  2234. get {
  2235. return ResourceManager.GetString("3429", resourceCulture);
  2236. }
  2237. }
  2238. /// <summary>
  2239. /// 查找类似 费用分成资金返回错误 的本地化字符串。
  2240. /// </summary>
  2241. public static string _3430 {
  2242. get {
  2243. return ResourceManager.GetString("3430", resourceCulture);
  2244. }
  2245. }
  2246. /// <summary>
  2247. /// 查找类似 导到历史表失败 的本地化字符串。
  2248. /// </summary>
  2249. public static string _3431 {
  2250. get {
  2251. return ResourceManager.GetString("3431", resourceCulture);
  2252. }
  2253. }
  2254. /// <summary>
  2255. /// 查找类似 没有可结算的商品 的本地化字符串。
  2256. /// </summary>
  2257. public static string _3432 {
  2258. get {
  2259. return ResourceManager.GetString("3432", resourceCulture);
  2260. }
  2261. }
  2262. /// <summary>
  2263. /// 查找类似 商品发行价没有配置 的本地化字符串。
  2264. /// </summary>
  2265. public static string _3433 {
  2266. get {
  2267. return ResourceManager.GetString("3433", resourceCulture);
  2268. }
  2269. }
  2270. /// <summary>
  2271. /// 查找类似 商品上市日不是下个交易日不能结算 的本地化字符串。
  2272. /// </summary>
  2273. public static string _3434 {
  2274. get {
  2275. return ResourceManager.GetString("3434", resourceCulture);
  2276. }
  2277. }
  2278. /// <summary>
  2279. /// 查找类似 结算撤销预买单失败 的本地化字符串。
  2280. /// </summary>
  2281. public static string _3435 {
  2282. get {
  2283. return ResourceManager.GetString("3435", resourceCulture);
  2284. }
  2285. }
  2286. /// <summary>
  2287. /// 查找类似 结算请求与结算工作模式不一致 的本地化字符串。
  2288. /// </summary>
  2289. public static string _3436 {
  2290. get {
  2291. return ResourceManager.GetString("3436", resourceCulture);
  2292. }
  2293. }
  2294. /// <summary>
  2295. /// 查找类似 到期强平撤单失败 的本地化字符串。
  2296. /// </summary>
  2297. public static string _3437 {
  2298. get {
  2299. return ResourceManager.GetString("3437", resourceCulture);
  2300. }
  2301. }
  2302. /// <summary>
  2303. /// 查找类似 到期强平失败 的本地化字符串。
  2304. /// </summary>
  2305. public static string _3438 {
  2306. get {
  2307. return ResourceManager.GetString("3438", resourceCulture);
  2308. }
  2309. }
  2310. /// <summary>
  2311. /// 查找类似 无效的分成金额 的本地化字符串。
  2312. /// </summary>
  2313. public static string _3439 {
  2314. get {
  2315. return ResourceManager.GetString("3439", resourceCulture);
  2316. }
  2317. }
  2318. /// <summary>
  2319. /// 查找类似 无效的分成目标账号 的本地化字符串。
  2320. /// </summary>
  2321. public static string _3440 {
  2322. get {
  2323. return ResourceManager.GetString("3440", resourceCulture);
  2324. }
  2325. }
  2326. /// <summary>
  2327. /// 查找类似 分成比例超出100% 的本地化字符串。
  2328. /// </summary>
  2329. public static string _3441 {
  2330. get {
  2331. return ResourceManager.GetString("3441", resourceCulture);
  2332. }
  2333. }
  2334. /// <summary>
  2335. /// 查找类似 分成比例不足100% 的本地化字符串。
  2336. /// </summary>
  2337. public static string _3442 {
  2338. get {
  2339. return ResourceManager.GetString("3442", resourceCulture);
  2340. }
  2341. }
  2342. /// <summary>
  2343. /// 查找类似 获取涨跌停交易规则失败 的本地化字符串。
  2344. /// </summary>
  2345. public static string _3443 {
  2346. get {
  2347. return ResourceManager.GetString("3443", resourceCulture);
  2348. }
  2349. }
  2350. /// <summary>
  2351. /// 查找类似 首次结算但发行日期不是下一个交易日 的本地化字符串。
  2352. /// </summary>
  2353. public static string _3444 {
  2354. get {
  2355. return ResourceManager.GetString("3444", resourceCulture);
  2356. }
  2357. }
  2358. /// <summary>
  2359. /// 查找类似 商品没有配置到期处理方式 的本地化字符串。
  2360. /// </summary>
  2361. public static string _3445 {
  2362. get {
  2363. return ResourceManager.GetString("3445", resourceCulture);
  2364. }
  2365. }
  2366. /// <summary>
  2367. /// 查找类似 到期无效交易服务返回失败 的本地化字符串。
  2368. /// </summary>
  2369. public static string _3446 {
  2370. get {
  2371. return ResourceManager.GetString("3446", resourceCulture);
  2372. }
  2373. }
  2374. /// <summary>
  2375. /// 查找类似 此交易日已经结算过 的本地化字符串。
  2376. /// </summary>
  2377. public static string _3447 {
  2378. get {
  2379. return ResourceManager.GetString("3447", resourceCulture);
  2380. }
  2381. }
  2382. /// <summary>
  2383. /// 查找类似 下一个交易日比当前交易日小 的本地化字符串。
  2384. /// </summary>
  2385. public static string _3448 {
  2386. get {
  2387. return ResourceManager.GetString("3448", resourceCulture);
  2388. }
  2389. }
  2390. /// <summary>
  2391. /// 查找类似 有部分单据在交易过程中存在错误 的本地化字符串。
  2392. /// </summary>
  2393. public static string _3449 {
  2394. get {
  2395. return ResourceManager.GetString("3449", resourceCulture);
  2396. }
  2397. }
  2398. /// <summary>
  2399. /// 查找类似 结算单据试算平衡处理失败 的本地化字符串。
  2400. /// </summary>
  2401. public static string _3450 {
  2402. get {
  2403. return ResourceManager.GetString("3450", resourceCulture);
  2404. }
  2405. }
  2406. /// <summary>
  2407. /// 查找类似 结算委托单撤单处理失败 的本地化字符串。
  2408. /// </summary>
  2409. public static string _3451 {
  2410. get {
  2411. return ResourceManager.GetString("3451", resourceCulture);
  2412. }
  2413. }
  2414. /// <summary>
  2415. /// 查找类似 结算预埋单撤单处理失败 的本地化字符串。
  2416. /// </summary>
  2417. public static string _3452 {
  2418. get {
  2419. return ResourceManager.GetString("3452", resourceCulture);
  2420. }
  2421. }
  2422. /// <summary>
  2423. /// 查找类似 结算结算价节点处理失败 的本地化字符串。
  2424. /// </summary>
  2425. public static string _3453 {
  2426. get {
  2427. return ResourceManager.GetString("3453", resourceCulture);
  2428. }
  2429. }
  2430. /// <summary>
  2431. /// 查找类似 结算持仓单备份处理失败 的本地化字符串。
  2432. /// </summary>
  2433. public static string _3454 {
  2434. get {
  2435. return ResourceManager.GetString("3454", resourceCulture);
  2436. }
  2437. }
  2438. /// <summary>
  2439. /// 查找类似 结算持仓单到期解冻处理失败 的本地化字符串。
  2440. /// </summary>
  2441. public static string _3455 {
  2442. get {
  2443. return ResourceManager.GetString("3455", resourceCulture);
  2444. }
  2445. }
  2446. /// <summary>
  2447. /// 查找类似 结算价不能为0 的本地化字符串。
  2448. /// </summary>
  2449. public static string _3456 {
  2450. get {
  2451. return ResourceManager.GetString("3456", resourceCulture);
  2452. }
  2453. }
  2454. /// <summary>
  2455. /// 查找类似 获取基本sql语句错误 的本地化字符串。
  2456. /// </summary>
  2457. public static string _35 {
  2458. get {
  2459. return ResourceManager.GetString("35", resourceCulture);
  2460. }
  2461. }
  2462. /// <summary>
  2463. /// 查找类似 SqlStatement没有找到 的本地化字符串。
  2464. /// </summary>
  2465. public static string _36 {
  2466. get {
  2467. return ResourceManager.GetString("36", resourceCulture);
  2468. }
  2469. }
  2470. /// <summary>
  2471. /// 查找类似 分页参数非法 的本地化字符串。
  2472. /// </summary>
  2473. public static string _37 {
  2474. get {
  2475. return ResourceManager.GetString("37", resourceCulture);
  2476. }
  2477. }
  2478. /// <summary>
  2479. /// 查找类似 不支持的数据类型 的本地化字符串。
  2480. /// </summary>
  2481. public static string _38 {
  2482. get {
  2483. return ResourceManager.GetString("38", resourceCulture);
  2484. }
  2485. }
  2486. /// <summary>
  2487. /// 查找类似 取数据库记录失败 的本地化字符串。
  2488. /// </summary>
  2489. public static string _39 {
  2490. get {
  2491. return ResourceManager.GetString("39", resourceCulture);
  2492. }
  2493. }
  2494. /// <summary>
  2495. /// 查找类似 空指针异常 的本地化字符串。
  2496. /// </summary>
  2497. public static string _40 {
  2498. get {
  2499. return ResourceManager.GetString("40", resourceCulture);
  2500. }
  2501. }
  2502. /// <summary>
  2503. /// 查找类似 内存不足 的本地化字符串。
  2504. /// </summary>
  2505. public static string _4001 {
  2506. get {
  2507. return ResourceManager.GetString("4001", resourceCulture);
  2508. }
  2509. }
  2510. /// <summary>
  2511. /// 查找类似 没有协议头 的本地化字符串。
  2512. /// </summary>
  2513. public static string _4002 {
  2514. get {
  2515. return ResourceManager.GetString("4002", resourceCulture);
  2516. }
  2517. }
  2518. /// <summary>
  2519. /// 查找类似 没有账户ID 的本地化字符串。
  2520. /// </summary>
  2521. public static string _4003 {
  2522. get {
  2523. return ResourceManager.GetString("4003", resourceCulture);
  2524. }
  2525. }
  2526. /// <summary>
  2527. /// 查找类似 账户不存在 的本地化字符串。
  2528. /// </summary>
  2529. public static string _4004 {
  2530. get {
  2531. return ResourceManager.GetString("4004", resourceCulture);
  2532. }
  2533. }
  2534. /// <summary>
  2535. /// 查找类似 没有业务编码 的本地化字符串。
  2536. /// </summary>
  2537. public static string _4005 {
  2538. get {
  2539. return ResourceManager.GetString("4005", resourceCulture);
  2540. }
  2541. }
  2542. /// <summary>
  2543. /// 查找类似 没有关联委托单号 的本地化字符串。
  2544. /// </summary>
  2545. public static string _4006 {
  2546. get {
  2547. return ResourceManager.GetString("4006", resourceCulture);
  2548. }
  2549. }
  2550. /// <summary>
  2551. /// 查找类似 没有命令码 的本地化字符串。
  2552. /// </summary>
  2553. public static string _4007 {
  2554. get {
  2555. return ResourceManager.GetString("4007", resourceCulture);
  2556. }
  2557. }
  2558. /// <summary>
  2559. /// 查找类似 解析子命令失败 的本地化字符串。
  2560. /// </summary>
  2561. public static string _4008 {
  2562. get {
  2563. return ResourceManager.GetString("4008", resourceCulture);
  2564. }
  2565. }
  2566. /// <summary>
  2567. /// 查找类似 没有操作类型 的本地化字符串。
  2568. /// </summary>
  2569. public static string _4009 {
  2570. get {
  2571. return ResourceManager.GetString("4009", resourceCulture);
  2572. }
  2573. }
  2574. /// <summary>
  2575. /// 查找类似 无效操作类型 的本地化字符串。
  2576. /// </summary>
  2577. public static string _4010 {
  2578. get {
  2579. return ResourceManager.GetString("4010", resourceCulture);
  2580. }
  2581. }
  2582. /// <summary>
  2583. /// 查找类似 资金不足 的本地化字符串。
  2584. /// </summary>
  2585. public static string _4011 {
  2586. get {
  2587. return ResourceManager.GetString("4011", resourceCulture);
  2588. }
  2589. }
  2590. /// <summary>
  2591. /// 查找类似 没有商品ID 的本地化字符串。
  2592. /// </summary>
  2593. public static string _4012 {
  2594. get {
  2595. return ResourceManager.GetString("4012", resourceCulture);
  2596. }
  2597. }
  2598. /// <summary>
  2599. /// 查找类似 没有买卖方向 的本地化字符串。
  2600. /// </summary>
  2601. public static string _4013 {
  2602. get {
  2603. return ResourceManager.GetString("4013", resourceCulture);
  2604. }
  2605. }
  2606. /// <summary>
  2607. /// 查找类似 不存在商品 的本地化字符串。
  2608. /// </summary>
  2609. public static string _4014 {
  2610. get {
  2611. return ResourceManager.GetString("4014", resourceCulture);
  2612. }
  2613. }
  2614. /// <summary>
  2615. /// 查找类似 头寸不足 的本地化字符串。
  2616. /// </summary>
  2617. public static string _4015 {
  2618. get {
  2619. return ResourceManager.GetString("4015", resourceCulture);
  2620. }
  2621. }
  2622. /// <summary>
  2623. /// 查找类似 交易参数不存在 的本地化字符串。
  2624. /// </summary>
  2625. public static string _4016 {
  2626. get {
  2627. return ResourceManager.GetString("4016", resourceCulture);
  2628. }
  2629. }
  2630. /// <summary>
  2631. /// 查找类似 没有变更类型 的本地化字符串。
  2632. /// </summary>
  2633. public static string _4017 {
  2634. get {
  2635. return ResourceManager.GetString("4017", resourceCulture);
  2636. }
  2637. }
  2638. /// <summary>
  2639. /// 查找类似 无效变更类型 的本地化字符串。
  2640. /// </summary>
  2641. public static string _4018 {
  2642. get {
  2643. return ResourceManager.GetString("4018", resourceCulture);
  2644. }
  2645. }
  2646. /// <summary>
  2647. /// 查找类似 没有查询掩码 的本地化字符串。
  2648. /// </summary>
  2649. public static string _4019 {
  2650. get {
  2651. return ResourceManager.GetString("4019", resourceCulture);
  2652. }
  2653. }
  2654. /// <summary>
  2655. /// 查找类似 无效买卖方向 的本地化字符串。
  2656. /// </summary>
  2657. public static string _4020 {
  2658. get {
  2659. return ResourceManager.GetString("4020", resourceCulture);
  2660. }
  2661. }
  2662. /// <summary>
  2663. /// 查找类似 无效交易模式 的本地化字符串。
  2664. /// </summary>
  2665. public static string _4021 {
  2666. get {
  2667. return ResourceManager.GetString("4021", resourceCulture);
  2668. }
  2669. }
  2670. /// <summary>
  2671. /// 查找类似 无效交易属性 的本地化字符串。
  2672. /// </summary>
  2673. public static string _4022 {
  2674. get {
  2675. return ResourceManager.GetString("4022", resourceCulture);
  2676. }
  2677. }
  2678. /// <summary>
  2679. /// 查找类似 违反唯一性 的本地化字符串。
  2680. /// </summary>
  2681. public static string _4023 {
  2682. get {
  2683. return ResourceManager.GetString("4023", resourceCulture);
  2684. }
  2685. }
  2686. /// <summary>
  2687. /// 查找类似 没有交易日 的本地化字符串。
  2688. /// </summary>
  2689. public static string _4024 {
  2690. get {
  2691. return ResourceManager.GetString("4024", resourceCulture);
  2692. }
  2693. }
  2694. /// <summary>
  2695. /// 查找类似 无效交易日 的本地化字符串。
  2696. /// </summary>
  2697. public static string _4025 {
  2698. get {
  2699. return ResourceManager.GetString("4025", resourceCulture);
  2700. }
  2701. }
  2702. /// <summary>
  2703. /// 查找类似 格式化交易日失败 的本地化字符串。
  2704. /// </summary>
  2705. public static string _4026 {
  2706. get {
  2707. return ResourceManager.GetString("4026", resourceCulture);
  2708. }
  2709. }
  2710. /// <summary>
  2711. /// 查找类似 没有市场运行状态 的本地化字符串。
  2712. /// </summary>
  2713. public static string _4027 {
  2714. get {
  2715. return ResourceManager.GetString("4027", resourceCulture);
  2716. }
  2717. }
  2718. /// <summary>
  2719. /// 查找类似 查询数据库失败 的本地化字符串。
  2720. /// </summary>
  2721. public static string _4028 {
  2722. get {
  2723. return ResourceManager.GetString("4028", resourceCulture);
  2724. }
  2725. }
  2726. /// <summary>
  2727. /// 查找类似 记录不存在 的本地化字符串。
  2728. /// </summary>
  2729. public static string _4029 {
  2730. get {
  2731. return ResourceManager.GetString("4029", resourceCulture);
  2732. }
  2733. }
  2734. /// <summary>
  2735. /// 查找类似 校验资金失败 的本地化字符串。
  2736. /// </summary>
  2737. public static string _4030 {
  2738. get {
  2739. return ResourceManager.GetString("4030", resourceCulture);
  2740. }
  2741. }
  2742. /// <summary>
  2743. /// 查找类似 校验头寸失败 的本地化字符串。
  2744. /// </summary>
  2745. public static string _4031 {
  2746. get {
  2747. return ResourceManager.GetString("4031", resourceCulture);
  2748. }
  2749. }
  2750. /// <summary>
  2751. /// 查找类似 获取浮动盈亏失败 的本地化字符串。
  2752. /// </summary>
  2753. public static string _4032 {
  2754. get {
  2755. return ResourceManager.GetString("4032", resourceCulture);
  2756. }
  2757. }
  2758. /// <summary>
  2759. /// 查找类似 数据库事务失败 的本地化字符串。
  2760. /// </summary>
  2761. public static string _4033 {
  2762. get {
  2763. return ResourceManager.GetString("4033", resourceCulture);
  2764. }
  2765. }
  2766. /// <summary>
  2767. /// 查找类似 缺少必要字段 的本地化字符串。
  2768. /// </summary>
  2769. public static string _4034 {
  2770. get {
  2771. return ResourceManager.GetString("4034", resourceCulture);
  2772. }
  2773. }
  2774. /// <summary>
  2775. /// 查找类似 没有用户ID 的本地化字符串。
  2776. /// </summary>
  2777. public static string _4035 {
  2778. get {
  2779. return ResourceManager.GetString("4035", resourceCulture);
  2780. }
  2781. }
  2782. /// <summary>
  2783. /// 查找类似 用户不存在错误 的本地化字符串。
  2784. /// </summary>
  2785. public static string _4036 {
  2786. get {
  2787. return ResourceManager.GetString("4036", resourceCulture);
  2788. }
  2789. }
  2790. /// <summary>
  2791. /// 查找类似 超过最大持仓量 的本地化字符串。
  2792. /// </summary>
  2793. public static string _4037 {
  2794. get {
  2795. return ResourceManager.GetString("4037", resourceCulture);
  2796. }
  2797. }
  2798. /// <summary>
  2799. /// 查找类似 没有市场ID 的本地化字符串。
  2800. /// </summary>
  2801. public static string _4038 {
  2802. get {
  2803. return ResourceManager.GetString("4038", resourceCulture);
  2804. }
  2805. }
  2806. /// <summary>
  2807. /// 查找类似 预结算成功 的本地化字符串。
  2808. /// </summary>
  2809. public static string _4039 {
  2810. get {
  2811. return ResourceManager.GetString("4039", resourceCulture);
  2812. }
  2813. }
  2814. /// <summary>
  2815. /// 查找类似 数量正负号错误 的本地化字符串。
  2816. /// </summary>
  2817. public static string _4040 {
  2818. get {
  2819. return ResourceManager.GetString("4040", resourceCulture);
  2820. }
  2821. }
  2822. /// <summary>
  2823. /// 查找类似 金额正负号错误 的本地化字符串。
  2824. /// </summary>
  2825. public static string _4041 {
  2826. get {
  2827. return ResourceManager.GetString("4041", resourceCulture);
  2828. }
  2829. }
  2830. /// <summary>
  2831. /// 查找类似 手数变负异常 的本地化字符串。
  2832. /// </summary>
  2833. public static string _4042 {
  2834. get {
  2835. return ResourceManager.GetString("4042", resourceCulture);
  2836. }
  2837. }
  2838. /// <summary>
  2839. /// 查找类似 金额变负异常 的本地化字符串。
  2840. /// </summary>
  2841. public static string _4043 {
  2842. get {
  2843. return ResourceManager.GetString("4043", resourceCulture);
  2844. }
  2845. }
  2846. /// <summary>
  2847. /// 查找类似 没有保证金配置 的本地化字符串。
  2848. /// </summary>
  2849. public static string _4044 {
  2850. get {
  2851. return ResourceManager.GetString("4044", resourceCulture);
  2852. }
  2853. }
  2854. /// <summary>
  2855. /// 查找类似 更新占用保证金失败 的本地化字符串。
  2856. /// </summary>
  2857. public static string _4045 {
  2858. get {
  2859. return ResourceManager.GetString("4045", resourceCulture);
  2860. }
  2861. }
  2862. /// <summary>
  2863. /// 查找类似 达到最大连接数量 的本地化字符串。
  2864. /// </summary>
  2865. public static string _41 {
  2866. get {
  2867. return ResourceManager.GetString("41", resourceCulture);
  2868. }
  2869. }
  2870. /// <summary>
  2871. /// 查找类似 不受管理的连接 的本地化字符串。
  2872. /// </summary>
  2873. public static string _42 {
  2874. get {
  2875. return ResourceManager.GetString("42", resourceCulture);
  2876. }
  2877. }
  2878. /// <summary>
  2879. /// 查找类似 字段类型非法 的本地化字符串。
  2880. /// </summary>
  2881. public static string _43 {
  2882. get {
  2883. return ResourceManager.GetString("43", resourceCulture);
  2884. }
  2885. }
  2886. /// <summary>
  2887. /// 查找类似 不支持批量执行 的本地化字符串。
  2888. /// </summary>
  2889. public static string _44 {
  2890. get {
  2891. return ResourceManager.GetString("44", resourceCulture);
  2892. }
  2893. }
  2894. /// <summary>
  2895. /// 查找类似 创建statement失败 的本地化字符串。
  2896. /// </summary>
  2897. public static string _45 {
  2898. get {
  2899. return ResourceManager.GetString("45", resourceCulture);
  2900. }
  2901. }
  2902. /// <summary>
  2903. /// 查找类似 行情未找到 的本地化字符串。
  2904. /// </summary>
  2905. public static string _4506 {
  2906. get {
  2907. return ResourceManager.GetString("4506", resourceCulture);
  2908. }
  2909. }
  2910. /// <summary>
  2911. /// 查找类似 参数类型不一至(批量处理绑定参数时) 的本地化字符串。
  2912. /// </summary>
  2913. public static string _46 {
  2914. get {
  2915. return ResourceManager.GetString("46", resourceCulture);
  2916. }
  2917. }
  2918. /// <summary>
  2919. /// 查找类似 超过最大的批量执行记录数 的本地化字符串。
  2920. /// </summary>
  2921. public static string _47 {
  2922. get {
  2923. return ResourceManager.GetString("47", resourceCulture);
  2924. }
  2925. }
  2926. /// <summary>
  2927. /// 查找类似 内存数据序列化到Protobuf失败(调函数SerializeToArray失败) 的本地化字符串。
  2928. /// </summary>
  2929. public static string _48 {
  2930. get {
  2931. return ResourceManager.GetString("48", resourceCulture);
  2932. }
  2933. }
  2934. /// <summary>
  2935. /// 查找类似 收到不希望收到的FUNCTIONCODE 的本地化字符串。
  2936. /// </summary>
  2937. public static string _49 {
  2938. get {
  2939. return ResourceManager.GetString("49", resourceCulture);
  2940. }
  2941. }
  2942. /// <summary>
  2943. /// 查找类似 没有用户账号记录 的本地化字符串。
  2944. /// </summary>
  2945. public static string _50 {
  2946. get {
  2947. return ResourceManager.GetString("50", resourceCulture);
  2948. }
  2949. }
  2950. /// <summary>
  2951. /// 查找类似 无效的查询参数 的本地化字符串。
  2952. /// </summary>
  2953. public static string _5001 {
  2954. get {
  2955. return ResourceManager.GetString("5001", resourceCulture);
  2956. }
  2957. }
  2958. /// <summary>
  2959. /// 查找类似 没有用户信息记录 的本地化字符串。
  2960. /// </summary>
  2961. public static string _51 {
  2962. get {
  2963. return ResourceManager.GetString("51", resourceCulture);
  2964. }
  2965. }
  2966. /// <summary>
  2967. /// 查找类似 没有登录账号信息 的本地化字符串。
  2968. /// </summary>
  2969. public static string _52 {
  2970. get {
  2971. return ResourceManager.GetString("52", resourceCulture);
  2972. }
  2973. }
  2974. /// <summary>
  2975. /// 查找类似 没有帐户签约记录 的本地化字符串。
  2976. /// </summary>
  2977. public static string _53 {
  2978. get {
  2979. return ResourceManager.GetString("53", resourceCulture);
  2980. }
  2981. }
  2982. /// <summary>
  2983. /// 查找类似 业务处理中 的本地化字符串。
  2984. /// </summary>
  2985. public static string _6001 {
  2986. get {
  2987. return ResourceManager.GetString("6001", resourceCulture);
  2988. }
  2989. }
  2990. /// <summary>
  2991. /// 查找类似 获取托管银签到签退信息失败 的本地化字符串。
  2992. /// </summary>
  2993. public static string _6002 {
  2994. get {
  2995. return ResourceManager.GetString("6002", resourceCulture);
  2996. }
  2997. }
  2998. /// <summary>
  2999. /// 查找类似 托管银没有为签到 的本地化字符串。
  3000. /// </summary>
  3001. public static string _6003 {
  3002. get {
  3003. return ResourceManager.GetString("6003", resourceCulture);
  3004. }
  3005. }
  3006. /// <summary>
  3007. /// 查找类似 获取公共配置失败 的本地化字符串。
  3008. /// </summary>
  3009. public static string _6004 {
  3010. get {
  3011. return ResourceManager.GetString("6004", resourceCulture);
  3012. }
  3013. }
  3014. /// <summary>
  3015. /// 查找类似 币种校验失败(与托管银行币种不一致) 的本地化字符串。
  3016. /// </summary>
  3017. public static string _6005 {
  3018. get {
  3019. return ResourceManager.GetString("6005", resourceCulture);
  3020. }
  3021. }
  3022. /// <summary>
  3023. /// 查找类似 该银行禁止发起签约 的本地化字符串。
  3024. /// </summary>
  3025. public static string _6006 {
  3026. get {
  3027. return ResourceManager.GetString("6006", resourceCulture);
  3028. }
  3029. }
  3030. /// <summary>
  3031. /// 查找类似 等待审核 的本地化字符串。
  3032. /// </summary>
  3033. public static string _6007 {
  3034. get {
  3035. return ResourceManager.GetString("6007", resourceCulture);
  3036. }
  3037. }
  3038. /// <summary>
  3039. /// 查找类似 错误码转换失败 的本地化字符串。
  3040. /// </summary>
  3041. public static string _6008 {
  3042. get {
  3043. return ResourceManager.GetString("6008", resourceCulture);
  3044. }
  3045. }
  3046. /// <summary>
  3047. /// 查找类似 获取缓存失败 的本地化字符串。
  3048. /// </summary>
  3049. public static string _6009 {
  3050. get {
  3051. return ResourceManager.GetString("6009", resourceCulture);
  3052. }
  3053. }
  3054. /// <summary>
  3055. /// 查找类似 业务重复 的本地化字符串。
  3056. /// </summary>
  3057. public static string _6010 {
  3058. get {
  3059. return ResourceManager.GetString("6010", resourceCulture);
  3060. }
  3061. }
  3062. /// <summary>
  3063. /// 查找类似 解析报文失败 的本地化字符串。
  3064. /// </summary>
  3065. public static string _6011 {
  3066. get {
  3067. return ResourceManager.GetString("6011", resourceCulture);
  3068. }
  3069. }
  3070. /// <summary>
  3071. /// 查找类似 账户服务冻结资金失败 的本地化字符串。
  3072. /// </summary>
  3073. public static string _6012 {
  3074. get {
  3075. return ResourceManager.GetString("6012", resourceCulture);
  3076. }
  3077. }
  3078. /// <summary>
  3079. /// 查找类似 获取msg表的记录失败 的本地化字符串。
  3080. /// </summary>
  3081. public static string _6013 {
  3082. get {
  3083. return ResourceManager.GetString("6013", resourceCulture);
  3084. }
  3085. }
  3086. /// <summary>
  3087. /// 查找类似 无法反序列化MSG表记录的对象内容 的本地化字符串。
  3088. /// </summary>
  3089. public static string _6014 {
  3090. get {
  3091. return ResourceManager.GetString("6014", resourceCulture);
  3092. }
  3093. }
  3094. /// <summary>
  3095. /// 查找类似 获取数据库记录失败 的本地化字符串。
  3096. /// </summary>
  3097. public static string _6015 {
  3098. get {
  3099. return ResourceManager.GetString("6015", resourceCulture);
  3100. }
  3101. }
  3102. /// <summary>
  3103. /// 查找类似 系统错误 的本地化字符串。
  3104. /// </summary>
  3105. public static string _6016 {
  3106. get {
  3107. return ResourceManager.GetString("6016", resourceCulture);
  3108. }
  3109. }
  3110. /// <summary>
  3111. /// 查找类似 账户服务解冻资金失败 的本地化字符串。
  3112. /// </summary>
  3113. public static string _6017 {
  3114. get {
  3115. return ResourceManager.GetString("6017", resourceCulture);
  3116. }
  3117. }
  3118. /// <summary>
  3119. /// 查找类似 账户服务扣款(出金)失败 的本地化字符串。
  3120. /// </summary>
  3121. public static string _6018 {
  3122. get {
  3123. return ResourceManager.GetString("6018", resourceCulture);
  3124. }
  3125. }
  3126. /// <summary>
  3127. /// 查找类似 客户签约状态不在业务允许范围内 的本地化字符串。
  3128. /// </summary>
  3129. public static string _6019 {
  3130. get {
  3131. return ResourceManager.GetString("6019", resourceCulture);
  3132. }
  3133. }
  3134. /// <summary>
  3135. /// 查找类似 系统禁止出金 的本地化字符串。
  3136. /// </summary>
  3137. public static string _6020 {
  3138. get {
  3139. return ResourceManager.GetString("6020", resourceCulture);
  3140. }
  3141. }
  3142. /// <summary>
  3143. /// 查找类似 出金金额太小 的本地化字符串。
  3144. /// </summary>
  3145. public static string _6021 {
  3146. get {
  3147. return ResourceManager.GetString("6021", resourceCulture);
  3148. }
  3149. }
  3150. /// <summary>
  3151. /// 查找类似 出金金额太大 的本地化字符串。
  3152. /// </summary>
  3153. public static string _6022 {
  3154. get {
  3155. return ResourceManager.GetString("6022", resourceCulture);
  3156. }
  3157. }
  3158. /// <summary>
  3159. /// 查找类似 出金次数超限制 的本地化字符串。
  3160. /// </summary>
  3161. public static string _6023 {
  3162. get {
  3163. return ResourceManager.GetString("6023", resourceCulture);
  3164. }
  3165. }
  3166. /// <summary>
  3167. /// 查找类似 出金总金额超限制 的本地化字符串。
  3168. /// </summary>
  3169. public static string _6024 {
  3170. get {
  3171. return ResourceManager.GetString("6024", resourceCulture);
  3172. }
  3173. }
  3174. /// <summary>
  3175. /// 查找类似 计算手续费失败 的本地化字符串。
  3176. /// </summary>
  3177. public static string _6025 {
  3178. get {
  3179. return ResourceManager.GetString("6025", resourceCulture);
  3180. }
  3181. }
  3182. /// <summary>
  3183. /// 查找类似 资金密码错误 的本地化字符串。
  3184. /// </summary>
  3185. public static string _6026 {
  3186. get {
  3187. return ResourceManager.GetString("6026", resourceCulture);
  3188. }
  3189. }
  3190. /// <summary>
  3191. /// 查找类似 金额太大,需要审核 的本地化字符串。
  3192. /// </summary>
  3193. public static string _6027 {
  3194. get {
  3195. return ResourceManager.GetString("6027", resourceCulture);
  3196. }
  3197. }
  3198. /// <summary>
  3199. /// 查找类似 解冻扣款中 的本地化字符串。
  3200. /// </summary>
  3201. public static string _6028 {
  3202. get {
  3203. return ResourceManager.GetString("6028", resourceCulture);
  3204. }
  3205. }
  3206. /// <summary>
  3207. /// 查找类似 账户服务扣款中 的本地化字符串。
  3208. /// </summary>
  3209. public static string _6029 {
  3210. get {
  3211. return ResourceManager.GetString("6029", resourceCulture);
  3212. }
  3213. }
  3214. /// <summary>
  3215. /// 查找类似 账户服务入金中 的本地化字符串。
  3216. /// </summary>
  3217. public static string _6030 {
  3218. get {
  3219. return ResourceManager.GetString("6030", resourceCulture);
  3220. }
  3221. }
  3222. /// <summary>
  3223. /// 查找类似 账户服务解冻中 的本地化字符串。
  3224. /// </summary>
  3225. public static string _6031 {
  3226. get {
  3227. return ResourceManager.GetString("6031", resourceCulture);
  3228. }
  3229. }
  3230. /// <summary>
  3231. /// 查找类似 系统禁止入金 的本地化字符串。
  3232. /// </summary>
  3233. public static string _6032 {
  3234. get {
  3235. return ResourceManager.GetString("6032", resourceCulture);
  3236. }
  3237. }
  3238. /// <summary>
  3239. /// 查找类似 入金金额太小 的本地化字符串。
  3240. /// </summary>
  3241. public static string _6033 {
  3242. get {
  3243. return ResourceManager.GetString("6033", resourceCulture);
  3244. }
  3245. }
  3246. /// <summary>
  3247. /// 查找类似 入金金额太大 的本地化字符串。
  3248. /// </summary>
  3249. public static string _6034 {
  3250. get {
  3251. return ResourceManager.GetString("6034", resourceCulture);
  3252. }
  3253. }
  3254. /// <summary>
  3255. /// 查找类似 入金次数超限制 的本地化字符串。
  3256. /// </summary>
  3257. public static string _6035 {
  3258. get {
  3259. return ResourceManager.GetString("6035", resourceCulture);
  3260. }
  3261. }
  3262. /// <summary>
  3263. /// 查找类似 入金总金额超限制 的本地化字符串。
  3264. /// </summary>
  3265. public static string _6036 {
  3266. get {
  3267. return ResourceManager.GetString("6036", resourceCulture);
  3268. }
  3269. }
  3270. /// <summary>
  3271. /// 查找类似 入金处理中 的本地化字符串。
  3272. /// </summary>
  3273. public static string _6037 {
  3274. get {
  3275. return ResourceManager.GetString("6037", resourceCulture);
  3276. }
  3277. }
  3278. /// <summary>
  3279. /// 查找类似 系统找不到这样的流水号 的本地化字符串。
  3280. /// </summary>
  3281. public static string _6038 {
  3282. get {
  3283. return ResourceManager.GetString("6038", resourceCulture);
  3284. }
  3285. }
  3286. /// <summary>
  3287. /// 查找类似 账户服务操作失败 的本地化字符串。
  3288. /// </summary>
  3289. public static string _6039 {
  3290. get {
  3291. return ResourceManager.GetString("6039", resourceCulture);
  3292. }
  3293. }
  3294. /// <summary>
  3295. /// 查找类似 客户已经处于已签约状态 的本地化字符串。
  3296. /// </summary>
  3297. public static string _6040 {
  3298. get {
  3299. return ResourceManager.GetString("6040", resourceCulture);
  3300. }
  3301. }
  3302. /// <summary>
  3303. /// 查找类似 客户当前的签约状态不允许再发起签约 的本地化字符串。
  3304. /// </summary>
  3305. public static string _6041 {
  3306. get {
  3307. return ResourceManager.GetString("6041", resourceCulture);
  3308. }
  3309. }
  3310. /// <summary>
  3311. /// 查找类似 系统禁止解约 的本地化字符串。
  3312. /// </summary>
  3313. public static string _6042 {
  3314. get {
  3315. return ResourceManager.GetString("6042", resourceCulture);
  3316. }
  3317. }
  3318. /// <summary>
  3319. /// 查找类似 客户已经处于解约状态 的本地化字符串。
  3320. /// </summary>
  3321. public static string _6043 {
  3322. get {
  3323. return ResourceManager.GetString("6043", resourceCulture);
  3324. }
  3325. }
  3326. /// <summary>
  3327. /// 查找类似 客户不是签约状态,不能解约 的本地化字符串。
  3328. /// </summary>
  3329. public static string _6044 {
  3330. get {
  3331. return ResourceManager.GetString("6044", resourceCulture);
  3332. }
  3333. }
  3334. /// <summary>
  3335. /// 查找类似 客户当前状态不能解约 的本地化字符串。
  3336. /// </summary>
  3337. public static string _6045 {
  3338. get {
  3339. return ResourceManager.GetString("6045", resourceCulture);
  3340. }
  3341. }
  3342. /// <summary>
  3343. /// 查找类似 账户服务冻结资金中 的本地化字符串。
  3344. /// </summary>
  3345. public static string _6046 {
  3346. get {
  3347. return ResourceManager.GetString("6046", resourceCulture);
  3348. }
  3349. }
  3350. /// <summary>
  3351. /// 查找类似 读取文件失败 的本地化字符串。
  3352. /// </summary>
  3353. public static string _6047 {
  3354. get {
  3355. return ResourceManager.GetString("6047", resourceCulture);
  3356. }
  3357. }
  3358. /// <summary>
  3359. /// 查找类似 写入文件失败 的本地化字符串。
  3360. /// </summary>
  3361. public static string _6048 {
  3362. get {
  3363. return ResourceManager.GetString("6048", resourceCulture);
  3364. }
  3365. }
  3366. /// <summary>
  3367. /// 查找类似 审核已拒绝次申请 的本地化字符串。
  3368. /// </summary>
  3369. public static string _6049 {
  3370. get {
  3371. return ResourceManager.GetString("6049", resourceCulture);
  3372. }
  3373. }
  3374. /// <summary>
  3375. /// 查找类似 对账结果:成功 的本地化字符串。
  3376. /// </summary>
  3377. public static string _6050 {
  3378. get {
  3379. return ResourceManager.GetString("6050", resourceCulture);
  3380. }
  3381. }
  3382. /// <summary>
  3383. /// 查找类似 对账结果:平台成功,金额不一致 的本地化字符串。
  3384. /// </summary>
  3385. public static string _6051 {
  3386. get {
  3387. return ResourceManager.GetString("6051", resourceCulture);
  3388. }
  3389. }
  3390. /// <summary>
  3391. /// 查找类似 对账结果:平台缺失(银行存在系统不存在) 的本地化字符串。
  3392. /// </summary>
  3393. public static string _6052 {
  3394. get {
  3395. return ResourceManager.GetString("6052", resourceCulture);
  3396. }
  3397. }
  3398. /// <summary>
  3399. /// 查找类似 对账结果:银行成功,平台失败 的本地化字符串。
  3400. /// </summary>
  3401. public static string _6053 {
  3402. get {
  3403. return ResourceManager.GetString("6053", resourceCulture);
  3404. }
  3405. }
  3406. /// <summary>
  3407. /// 查找类似 对账结果:银行成功,平台处理中 的本地化字符串。
  3408. /// </summary>
  3409. public static string _6054 {
  3410. get {
  3411. return ResourceManager.GetString("6054", resourceCulture);
  3412. }
  3413. }
  3414. /// <summary>
  3415. /// 查找类似 对账结果:平台成功,银行不成功 的本地化字符串。
  3416. /// </summary>
  3417. public static string _6055 {
  3418. get {
  3419. return ResourceManager.GetString("6055", resourceCulture);
  3420. }
  3421. }
  3422. /// <summary>
  3423. /// 查找类似 对账结果:平台处理中,银行不成功 的本地化字符串。
  3424. /// </summary>
  3425. public static string _6056 {
  3426. get {
  3427. return ResourceManager.GetString("6056", resourceCulture);
  3428. }
  3429. }
  3430. /// <summary>
  3431. /// 查找类似 对账结果:平台处理中,金额不一致 的本地化字符串。
  3432. /// </summary>
  3433. public static string _6057 {
  3434. get {
  3435. return ResourceManager.GetString("6057", resourceCulture);
  3436. }
  3437. }
  3438. /// <summary>
  3439. /// 查找类似 对账结果:平台失败,金额不一致 的本地化字符串。
  3440. /// </summary>
  3441. public static string _6058 {
  3442. get {
  3443. return ResourceManager.GetString("6058", resourceCulture);
  3444. }
  3445. }
  3446. /// <summary>
  3447. /// 查找类似 对账结果:平台成功,账户服务操作失败 的本地化字符串。
  3448. /// </summary>
  3449. public static string _6059 {
  3450. get {
  3451. return ResourceManager.GetString("6059", resourceCulture);
  3452. }
  3453. }
  3454. /// <summary>
  3455. /// 查找类似 对账结果:平台失败,账户服务解冻资金失败 的本地化字符串。
  3456. /// </summary>
  3457. public static string _6060 {
  3458. get {
  3459. return ResourceManager.GetString("6060", resourceCulture);
  3460. }
  3461. }
  3462. /// <summary>
  3463. /// 查找类似 行情中断 的本地化字符串。
  3464. /// </summary>
  3465. public static string _7001 {
  3466. get {
  3467. return ResourceManager.GetString("7001", resourceCulture);
  3468. }
  3469. }
  3470. /// <summary>
  3471. /// 查找类似 没找到投资者账户信息 的本地化字符串。
  3472. /// </summary>
  3473. public static string _8001 {
  3474. get {
  3475. return ResourceManager.GetString("8001", resourceCulture);
  3476. }
  3477. }
  3478. /// <summary>
  3479. /// 查找类似 没找到交割关系 的本地化字符串。
  3480. /// </summary>
  3481. public static string _8002 {
  3482. get {
  3483. return ResourceManager.GetString("8002", resourceCulture);
  3484. }
  3485. }
  3486. /// <summary>
  3487. /// 查找类似 交割申请日期不在允许范围内 的本地化字符串。
  3488. /// </summary>
  3489. public static string _8003 {
  3490. get {
  3491. return ResourceManager.GetString("8003", resourceCulture);
  3492. }
  3493. }
  3494. /// <summary>
  3495. /// 查找类似 交割申请数量小于最小交割手数 的本地化字符串。
  3496. /// </summary>
  3497. public static string _8004 {
  3498. get {
  3499. return ResourceManager.GetString("8004", resourceCulture);
  3500. }
  3501. }
  3502. /// <summary>
  3503. /// 查找类似 创建交割委托处理对象失败 的本地化字符串。
  3504. /// </summary>
  3505. public static string _8005 {
  3506. get {
  3507. return ResourceManager.GetString("8005", resourceCulture);
  3508. }
  3509. }
  3510. /// <summary>
  3511. /// 查找类似 未提供主商品ID 的本地化字符串。
  3512. /// </summary>
  3513. public static string _8006 {
  3514. get {
  3515. return ResourceManager.GetString("8006", resourceCulture);
  3516. }
  3517. }
  3518. /// <summary>
  3519. /// 查找类似 未提供主商品市场ID 的本地化字符串。
  3520. /// </summary>
  3521. public static string _8007 {
  3522. get {
  3523. return ResourceManager.GetString("8007", resourceCulture);
  3524. }
  3525. }
  3526. /// <summary>
  3527. /// 查找类似 未提供主商品手数 的本地化字符串。
  3528. /// </summary>
  3529. public static string _8008 {
  3530. get {
  3531. return ResourceManager.GetString("8008", resourceCulture);
  3532. }
  3533. }
  3534. /// <summary>
  3535. /// 查找类似 未提供交割商品ID 的本地化字符串。
  3536. /// </summary>
  3537. public static string _8009 {
  3538. get {
  3539. return ResourceManager.GetString("8009", resourceCulture);
  3540. }
  3541. }
  3542. /// <summary>
  3543. /// 查找类似 未提供交割手数 的本地化字符串。
  3544. /// </summary>
  3545. public static string _8010 {
  3546. get {
  3547. return ResourceManager.GetString("8010", resourceCulture);
  3548. }
  3549. }
  3550. /// <summary>
  3551. /// 查找类似 未提供交割仓单明细 的本地化字符串。
  3552. /// </summary>
  3553. public static string _8011 {
  3554. get {
  3555. return ResourceManager.GetString("8011", resourceCulture);
  3556. }
  3557. }
  3558. /// <summary>
  3559. /// 查找类似 未提供仓单账号 的本地化字符串。
  3560. /// </summary>
  3561. public static string _8012 {
  3562. get {
  3563. return ResourceManager.GetString("8012", resourceCulture);
  3564. }
  3565. }
  3566. /// <summary>
  3567. /// 查找类似 未提供仓单手数 的本地化字符串。
  3568. /// </summary>
  3569. public static string _8013 {
  3570. get {
  3571. return ResourceManager.GetString("8013", resourceCulture);
  3572. }
  3573. }
  3574. /// <summary>
  3575. /// 查找类似 交割主商品市场未开市 的本地化字符串。
  3576. /// </summary>
  3577. public static string _8014 {
  3578. get {
  3579. return ResourceManager.GetString("8014", resourceCulture);
  3580. }
  3581. }
  3582. /// <summary>
  3583. /// 查找类似 主商品状态异常 的本地化字符串。
  3584. /// </summary>
  3585. public static string _8015 {
  3586. get {
  3587. return ResourceManager.GetString("8015", resourceCulture);
  3588. }
  3589. }
  3590. /// <summary>
  3591. /// 查找类似 辅商品已退市,不能发起交割 的本地化字符串。
  3592. /// </summary>
  3593. public static string _8016 {
  3594. get {
  3595. return ResourceManager.GetString("8016", resourceCulture);
  3596. }
  3597. }
  3598. /// <summary>
  3599. /// 查找类似 账户状态异常 的本地化字符串。
  3600. /// </summary>
  3601. public static string _8017 {
  3602. get {
  3603. return ResourceManager.GetString("8017", resourceCulture);
  3604. }
  3605. }
  3606. /// <summary>
  3607. /// 查找类似 商品交割关系不匹配 的本地化字符串。
  3608. /// </summary>
  3609. public static string _8018 {
  3610. get {
  3611. return ResourceManager.GetString("8018", resourceCulture);
  3612. }
  3613. }
  3614. /// <summary>
  3615. /// 查找类似 主副商品不符合合约系数 的本地化字符串。
  3616. /// </summary>
  3617. public static string _8019 {
  3618. get {
  3619. return ResourceManager.GetString("8019", resourceCulture);
  3620. }
  3621. }
  3622. /// <summary>
  3623. /// 查找类似 仓单校验失败 的本地化字符串。
  3624. /// </summary>
  3625. public static string _8020 {
  3626. get {
  3627. return ResourceManager.GetString("8020", resourceCulture);
  3628. }
  3629. }
  3630. /// <summary>
  3631. /// 查找类似 未知命令 的本地化字符串。
  3632. /// </summary>
  3633. public static string _8021 {
  3634. get {
  3635. return ResourceManager.GetString("8021", resourceCulture);
  3636. }
  3637. }
  3638. /// <summary>
  3639. /// 查找类似 找不到交割价 的本地化字符串。
  3640. /// </summary>
  3641. public static string _8022 {
  3642. get {
  3643. return ResourceManager.GetString("8022", resourceCulture);
  3644. }
  3645. }
  3646. /// <summary>
  3647. /// 查找类似 找不到交割申报单号 的本地化字符串。
  3648. /// </summary>
  3649. public static string _8023 {
  3650. get {
  3651. return ResourceManager.GetString("8023", resourceCulture);
  3652. }
  3653. }
  3654. /// <summary>
  3655. /// 查找类似 找不到交割成交单号 的本地化字符串。
  3656. /// </summary>
  3657. public static string _8024 {
  3658. get {
  3659. return ResourceManager.GetString("8024", resourceCulture);
  3660. }
  3661. }
  3662. /// <summary>
  3663. /// 查找类似 子命令解析失败 的本地化字符串。
  3664. /// </summary>
  3665. public static string _8025 {
  3666. get {
  3667. return ResourceManager.GetString("8025", resourceCulture);
  3668. }
  3669. }
  3670. /// <summary>
  3671. /// 查找类似 交割审核消息解析失败 的本地化字符串。
  3672. /// </summary>
  3673. public static string _8026 {
  3674. get {
  3675. return ResourceManager.GetString("8026", resourceCulture);
  3676. }
  3677. }
  3678. /// <summary>
  3679. /// 查找类似 未提供审核状态 的本地化字符串。
  3680. /// </summary>
  3681. public static string _8027 {
  3682. get {
  3683. return ResourceManager.GetString("8027", resourceCulture);
  3684. }
  3685. }
  3686. /// <summary>
  3687. /// 查找类似 未提供审核日期 的本地化字符串。
  3688. /// </summary>
  3689. public static string _8028 {
  3690. get {
  3691. return ResourceManager.GetString("8028", resourceCulture);
  3692. }
  3693. }
  3694. /// <summary>
  3695. /// 查找类似 未提供操作人 的本地化字符串。
  3696. /// </summary>
  3697. public static string _8029 {
  3698. get {
  3699. return ResourceManager.GetString("8029", resourceCulture);
  3700. }
  3701. }
  3702. /// <summary>
  3703. /// 查找类似 未提供仓单手数 的本地化字符串。
  3704. /// </summary>
  3705. public static string _8030 {
  3706. get {
  3707. return ResourceManager.GetString("8030", resourceCulture);
  3708. }
  3709. }
  3710. /// <summary>
  3711. /// 查找类似 未提供品牌ID 的本地化字符串。
  3712. /// </summary>
  3713. public static string _8031 {
  3714. get {
  3715. return ResourceManager.GetString("8031", resourceCulture);
  3716. }
  3717. }
  3718. /// <summary>
  3719. /// 查找类似 未提供品质ID 的本地化字符串。
  3720. /// </summary>
  3721. public static string _8032 {
  3722. get {
  3723. return ResourceManager.GetString("8032", resourceCulture);
  3724. }
  3725. }
  3726. /// <summary>
  3727. /// 查找类似 未提供规格ID 的本地化字符串。
  3728. /// </summary>
  3729. public static string _8033 {
  3730. get {
  3731. return ResourceManager.GetString("8033", resourceCulture);
  3732. }
  3733. }
  3734. /// <summary>
  3735. /// 查找类似 未提供仓单ID 的本地化字符串。
  3736. /// </summary>
  3737. public static string _8034 {
  3738. get {
  3739. return ResourceManager.GetString("8034", resourceCulture);
  3740. }
  3741. }
  3742. /// <summary>
  3743. /// 查找类似 未提供月份ID 的本地化字符串。
  3744. /// </summary>
  3745. public static string _8035 {
  3746. get {
  3747. return ResourceManager.GetString("8035", resourceCulture);
  3748. }
  3749. }
  3750. /// <summary>
  3751. /// 查找类似 交割市场未开市 的本地化字符串。
  3752. /// </summary>
  3753. public static string _8036 {
  3754. get {
  3755. return ResourceManager.GetString("8036", resourceCulture);
  3756. }
  3757. }
  3758. /// <summary>
  3759. /// 查找类似 没找到市场信息 的本地化字符串。
  3760. /// </summary>
  3761. public static string _9001 {
  3762. get {
  3763. return ResourceManager.GetString("9001", resourceCulture);
  3764. }
  3765. }
  3766. /// <summary>
  3767. /// 查找类似 系统状态错误 的本地化字符串。
  3768. /// </summary>
  3769. public static string _9002 {
  3770. get {
  3771. return ResourceManager.GetString("9002", resourceCulture);
  3772. }
  3773. }
  3774. /// <summary>
  3775. /// 查找类似 市场状态错误 的本地化字符串。
  3776. /// </summary>
  3777. public static string _9003 {
  3778. get {
  3779. return ResourceManager.GetString("9003", resourceCulture);
  3780. }
  3781. }
  3782. }
  3783. }