| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // 此代码由工具生成。
- // 运行时版本:4.0.30319.34209
- //
- // 对此文件的更改可能会导致不正确的行为,并且如果
- // 重新生成代码,这些更改将会丢失。
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace Muchinfo.MTPClient.CustomException {
- using System;
-
-
- /// <summary>
- /// 一个强类型的资源类,用于查找本地化的字符串等。
- /// </summary>
- // 此类是由 StronglyTypedResourceBuilder
- // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。
- // 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen
- // (以 /str 作为命令选项),或重新生成 VS 项目。
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
- public partial class ErrorResources {
-
- private static global::System.Resources.ResourceManager resourceMan;
-
- private static global::System.Globalization.CultureInfo resourceCulture;
-
- [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
- internal ErrorResources() {
- }
-
- /// <summary>
- /// 返回此类使用的缓存的 ResourceManager 实例。
- /// </summary>
- [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
- public static global::System.Resources.ResourceManager ResourceManager {
- get {
- if (object.ReferenceEquals(resourceMan, null)) {
- global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Muchinfo.MTPClient.CustomException.ErrorResources", typeof(ErrorResources).Assembly);
- resourceMan = temp;
- }
- return resourceMan;
- }
- }
-
- /// <summary>
- /// 使用此强类型资源类,为所有资源查找
- /// 重写当前线程的 CurrentUICulture 属性。
- /// </summary>
- [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
- public static global::System.Globalization.CultureInfo Culture {
- get {
- return resourceCulture;
- }
- set {
- resourceCulture = value;
- }
- }
-
- /// <summary>
- /// 查找类似 正确处理 的本地化字符串。
- /// </summary>
- public static string _0 {
- get {
- return ResourceManager.GetString("0", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 数据类型错误,表示proto buffer数据解析失败 的本地化字符串。
- /// </summary>
- public static string _1 {
- get {
- return ResourceManager.GetString("1", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 无法找到履约计划模板 的本地化字符串。
- /// </summary>
- public static string _10001 {
- get {
- return ResourceManager.GetString("10001", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 计划模板没有对应的步骤 的本地化字符串。
- /// </summary>
- public static string _10002 {
- get {
- return ResourceManager.GetString("10002", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 支付比例和不为100% 的本地化字符串。
- /// </summary>
- public static string _10003 {
- get {
- return ResourceManager.GetString("10003", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 收款比例和不为100% 的本地化字符串。
- /// </summary>
- public static string _10004 {
- get {
- return ResourceManager.GetString("10004", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 无法找到履约计划仓单 的本地化字符串。
- /// </summary>
- public static string _10005 {
- get {
- return ResourceManager.GetString("10005", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 无法找到履约计划 的本地化字符串。
- /// </summary>
- public static string _10006 {
- get {
- return ResourceManager.GetString("10006", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 无法找到履约计划步骤 的本地化字符串。
- /// </summary>
- public static string _10007 {
- get {
- return ResourceManager.GetString("10007", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 违约审核校验失败 的本地化字符串。
- /// </summary>
- public static string _10008 {
- get {
- return ResourceManager.GetString("10008", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 违约申请校验失败 的本地化字符串。
- /// </summary>
- public static string _10009 {
- get {
- return ResourceManager.GetString("10009", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 会话超时 的本地化字符串。
- /// </summary>
- public static string _1001 {
- get {
- return ResourceManager.GetString("1001", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 延期申请校验失败 的本地化字符串。
- /// </summary>
- public static string _10010 {
- get {
- return ResourceManager.GetString("10010", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 延期审核校验失败 的本地化字符串。
- /// </summary>
- public static string _10011 {
- get {
- return ResourceManager.GetString("10011", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 履约计划状态不正常 的本地化字符串。
- /// </summary>
- public static string _10012 {
- get {
- return ResourceManager.GetString("10012", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 履约计划步骤已经处理完成 的本地化字符串。
- /// </summary>
- public static string _10013 {
- get {
- return ResourceManager.GetString("10013", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 没有找到总线主题 的本地化字符串。
- /// </summary>
- public static string _10014 {
- get {
- return ResourceManager.GetString("10014", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 没有找到相关仓单信息 的本地化字符串。
- /// </summary>
- public static string _10015 {
- get {
- return ResourceManager.GetString("10015", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 资金密码错误 的本地化字符串。
- /// </summary>
- public static string _1002 {
- get {
- return ResourceManager.GetString("1002", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 账号或密码不匹配 的本地化字符串。
- /// </summary>
- public static string _1003 {
- get {
- return ResourceManager.GetString("1003", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 无效账号 的本地化字符串。
- /// </summary>
- public static string _1004 {
- get {
- return ResourceManager.GetString("1004", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 账号类型不匹配 的本地化字符串。
- /// </summary>
- public static string _1005 {
- get {
- return ResourceManager.GetString("1005", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 账号不在线 的本地化字符串。
- /// </summary>
- public static string _1006 {
- get {
- return ResourceManager.GetString("1006", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 操作权限不够 的本地化字符串。
- /// </summary>
- public static string _1007 {
- get {
- return ResourceManager.GetString("1007", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 会员无账户在线 的本地化字符串。
- /// </summary>
- public static string _1008 {
- get {
- return ResourceManager.GetString("1008", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 账户在别处登录 的本地化字符串。
- /// </summary>
- public static string _1009 {
- get {
- return ResourceManager.GetString("1009", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 值为空 的本地化字符串。
- /// </summary>
- public static string _1010 {
- get {
- return ResourceManager.GetString("1010", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 登录账户已经存在 的本地化字符串。
- /// </summary>
- public static string _1011 {
- get {
- return ResourceManager.GetString("1011", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 软件版本过低不能登陆 的本地化字符串。
- /// </summary>
- public static string _1012 {
- get {
- return ResourceManager.GetString("1012", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 IP地址不在允许范围内 的本地化字符串。
- /// </summary>
- public static string _1013 {
- get {
- return ResourceManager.GetString("1013", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 短信模版为空 的本地化字符串。
- /// </summary>
- public static string _1014 {
- get {
- return ResourceManager.GetString("1014", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 接收手机号码为空 的本地化字符串。
- /// </summary>
- public static string _1015 {
- get {
- return ResourceManager.GetString("1015", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 模板参数不匹配 的本地化字符串。
- /// </summary>
- public static string _1016 {
- get {
- return ResourceManager.GetString("1016", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 短信发送失败 的本地化字符串。
- /// </summary>
- public static string _1017 {
- get {
- return ResourceManager.GetString("1017", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 密码被修改,请重新登录,如有异常请联系管理员 的本地化字符串。
- /// </summary>
- public static string _1018 {
- get {
- return ResourceManager.GetString("1018", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 无效令牌 的本地化字符串。
- /// </summary>
- public static string _1019 {
- get {
- return ResourceManager.GetString("1019", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 登陆账户被锁定 的本地化字符串。
- /// </summary>
- public static string _1020 {
- get {
- return ResourceManager.GetString("1020", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 非法的登陆账户状态 的本地化字符串。
- /// </summary>
- public static string _1021 {
- get {
- return ResourceManager.GetString("1021", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 客户端类型配置不存在 的本地化字符串。
- /// </summary>
- public static string _1022 {
- get {
- return ResourceManager.GetString("1022", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 客户端类型不允许登陆 的本地化字符串。
- /// </summary>
- public static string _1023 {
- get {
- return ResourceManager.GetString("1023", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 撤单失败 的本地化字符串。
- /// </summary>
- public static string _14 {
- get {
- return ResourceManager.GetString("14", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 参数不存在 的本地化字符串。
- /// </summary>
- public static string _17 {
- get {
- return ResourceManager.GetString("17", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 SqlStatement 不存在 的本地化字符串。
- /// </summary>
- public static string _18 {
- get {
- return ResourceManager.GetString("18", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 参数为空 的本地化字符串。
- /// </summary>
- public static string _19 {
- get {
- return ResourceManager.GetString("19", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 配置值非法 的本地化字符串。
- /// </summary>
- public static string _20 {
- get {
- return ResourceManager.GetString("20", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 消息通知模式为空 的本地化字符串。
- /// </summary>
- public static string _2001 {
- get {
- return ResourceManager.GetString("2001", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 消息通知帐号为空 的本地化字符串。
- /// </summary>
- public static string _2002 {
- get {
- return ResourceManager.GetString("2002", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 数据库连接异常 的本地化字符串。
- /// </summary>
- public static string _21 {
- get {
- return ResourceManager.GetString("21", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 未找到相应库位 的本地化字符串。
- /// </summary>
- public static string _21004 {
- get {
- return ResourceManager.GetString("21004", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 库位状态更新失败 的本地化字符串。
- /// </summary>
- public static string _21005 {
- get {
- return ResourceManager.GetString("21005", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 更新库位属主用户失败 的本地化字符串。
- /// </summary>
- public static string _21010 {
- get {
- return ResourceManager.GetString("21010", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 更新仓单属主用户失败 的本地化字符串。
- /// </summary>
- public static string _21011 {
- get {
- return ResourceManager.GetString("21011", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 库位状态错误 的本地化字符串。
- /// </summary>
- public static string _21012 {
- get {
- return ResourceManager.GetString("21012", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 没有找到商品交易属性 的本地化字符串。
- /// </summary>
- public static string _21016 {
- get {
- return ResourceManager.GetString("21016", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 库位编号重复 的本地化字符串。
- /// </summary>
- public static string _21019 {
- get {
- return ResourceManager.GetString("21019", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 数据库DataSet操作异常 的本地化字符串。
- /// </summary>
- public static string _22 {
- get {
- return ResourceManager.GetString("22", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 数据库绑定参数异常 的本地化字符串。
- /// </summary>
- public static string _23 {
- get {
- return ResourceManager.GetString("23", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 数据库执行操作异常 的本地化字符串。
- /// </summary>
- public static string _24 {
- get {
- return ResourceManager.GetString("24", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 数据库提交事务失败 的本地化字符串。
- /// </summary>
- public static string _25 {
- get {
- return ResourceManager.GetString("25", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 数据库回滚事务失败 的本地化字符串。
- /// </summary>
- public static string _26 {
- get {
- return ResourceManager.GetString("26", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 不支持的数据库类型 的本地化字符串。
- /// </summary>
- public static string _27 {
- get {
- return ResourceManager.GetString("27", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 数据库设置隔离等级异常 的本地化字符串。
- /// </summary>
- public static string _28 {
- get {
- return ResourceManager.GetString("28", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 数据库设置自动提交异常 的本地化字符串。
- /// </summary>
- public static string _29 {
- get {
- return ResourceManager.GetString("29", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 断开连接异常 的本地化字符串。
- /// </summary>
- public static string _30 {
- get {
- return ResourceManager.GetString("30", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托订单类型不存在 的本地化字符串。
- /// </summary>
- public static string _3001 {
- get {
- return ResourceManager.GetString("3001", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托账户状态不对 的本地化字符串。
- /// </summary>
- public static string _3002 {
- get {
- return ResourceManager.GetString("3002", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 账号为空 的本地化字符串。
- /// </summary>
- public static string _3003 {
- get {
- return ResourceManager.GetString("3003", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 二级委托单号无效 的本地化字符串。
- /// </summary>
- public static string _3004 {
- get {
- return ResourceManager.GetString("3004", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 操作员为空 的本地化字符串。
- /// </summary>
- public static string _3005 {
- get {
- return ResourceManager.GetString("3005", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 错误的校验类型 的本地化字符串。
- /// </summary>
- public static string _3006 {
- get {
- return ResourceManager.GetString("3006", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 有效时间为空 的本地化字符串。
- /// </summary>
- public static string _3007 {
- get {
- return ResourceManager.GetString("3007", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 有效时间错误 的本地化字符串。
- /// </summary>
- public static string _3008 {
- get {
- return ResourceManager.GetString("3008", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 会员编号为空 的本地化字符串。
- /// </summary>
- public static string _3009 {
- get {
- return ResourceManager.GetString("3009", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 会员编号错误 的本地化字符串。
- /// </summary>
- public static string _3010 {
- get {
- return ResourceManager.GetString("3010", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 特别会员编号为空 的本地化字符串。
- /// </summary>
- public static string _3011 {
- get {
- return ResourceManager.GetString("3011", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 买卖方向无效 的本地化字符串。
- /// </summary>
- public static string _3012 {
- get {
- return ResourceManager.GetString("3012", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 关联单号无效 的本地化字符串。
- /// </summary>
- public static string _3013 {
- get {
- return ResourceManager.GetString("3013", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 止盈或止损价格无效 的本地化字符串。
- /// </summary>
- public static string _3014 {
- get {
- return ResourceManager.GetString("3014", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托账户没有交易权限 的本地化字符串。
- /// </summary>
- public static string _3015 {
- get {
- return ResourceManager.GetString("3015", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 该商品不在连续现货委托状态 的本地化字符串。
- /// </summary>
- public static string _3016 {
- get {
- return ResourceManager.GetString("3016", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 内容权限不存在 的本地化字符串。
- /// </summary>
- public static string _3017 {
- get {
- return ResourceManager.GetString("3017", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托没有改单据类型权限 的本地化字符串。
- /// </summary>
- public static string _3018 {
- get {
- return ResourceManager.GetString("3018", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 该商品不在挂牌委托状态 的本地化字符串。
- /// </summary>
- public static string _3019 {
- get {
- return ResourceManager.GetString("3019", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 该商品当前状态不能撤单 的本地化字符串。
- /// </summary>
- public static string _3020 {
- get {
- return ResourceManager.GetString("3020", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托错误单据数量 的本地化字符串。
- /// </summary>
- public static string _3021 {
- get {
- return ResourceManager.GetString("3021", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托解冻资金失败 的本地化字符串。
- /// </summary>
- public static string _3022 {
- get {
- return ResourceManager.GetString("3022", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托订单不存在 的本地化字符串。
- /// </summary>
- public static string _3023 {
- get {
- return ResourceManager.GetString("3023", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托单保存失败 的本地化字符串。
- /// </summary>
- public static string _3024 {
- get {
- return ResourceManager.GetString("3024", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托撮合失败 的本地化字符串。
- /// </summary>
- public static string _3025 {
- get {
- return ResourceManager.GetString("3025", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 当前行情价无效 的本地化字符串。
- /// </summary>
- public static string _3026 {
- get {
- return ResourceManager.GetString("3026", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托账号保证金不足 的本地化字符串。
- /// </summary>
- public static string _3027 {
- get {
- return ResourceManager.GetString("3027", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托账号不存在 的本地化字符串。
- /// </summary>
- public static string _3028 {
- get {
- return ResourceManager.GetString("3028", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 账号对应的资金账户不存在 的本地化字符串。
- /// </summary>
- public static string _3029 {
- get {
- return ResourceManager.GetString("3029", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托账户未激活 的本地化字符串。
- /// </summary>
- public static string _3030 {
- get {
- return ResourceManager.GetString("3030", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托账户冻结 的本地化字符串。
- /// </summary>
- public static string _3031 {
- get {
- return ResourceManager.GetString("3031", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托账户受限 的本地化字符串。
- /// </summary>
- public static string _3032 {
- get {
- return ResourceManager.GetString("3032", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托账户注销 的本地化字符串。
- /// </summary>
- public static string _3033 {
- get {
- return ResourceManager.GetString("3033", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 特别会员账号不存在 的本地化字符串。
- /// </summary>
- public static string _3034 {
- get {
- return ResourceManager.GetString("3034", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 特别会员账号对应的资金账户不存在 的本地化字符串。
- /// </summary>
- public static string _3035 {
- get {
- return ResourceManager.GetString("3035", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 特别会员账户未激活 的本地化字符串。
- /// </summary>
- public static string _3036 {
- get {
- return ResourceManager.GetString("3036", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 特别会员账户冻结 的本地化字符串。
- /// </summary>
- public static string _3037 {
- get {
- return ResourceManager.GetString("3037", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 特别会员账户受限 的本地化字符串。
- /// </summary>
- public static string _3038 {
- get {
- return ResourceManager.GetString("3038", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 特别会员账户注销 的本地化字符串。
- /// </summary>
- public static string _3039 {
- get {
- return ResourceManager.GetString("3039", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托商品不存在 的本地化字符串。
- /// </summary>
- public static string _3040 {
- get {
- return ResourceManager.GetString("3040", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托权限定义不存在 的本地化字符串。
- /// </summary>
- public static string _3041 {
- get {
- return ResourceManager.GetString("3041", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托账户无下单权限 的本地化字符串。
- /// </summary>
- public static string _3042 {
- get {
- return ResourceManager.GetString("3042", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 商品参数无该订单类型权限 的本地化字符串。
- /// </summary>
- public static string _3043 {
- get {
- return ResourceManager.GetString("3043", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 商品无该订单类型权限 的本地化字符串。
- /// </summary>
- public static string _3044 {
- get {
- return ResourceManager.GetString("3044", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托下单商品不存在 的本地化字符串。
- /// </summary>
- public static string _3045 {
- get {
- return ResourceManager.GetString("3045", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托商品代码为空 的本地化字符串。
- /// </summary>
- public static string _3046 {
- get {
- return ResourceManager.GetString("3046", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托下单商品不在开市状态 的本地化字符串。
- /// </summary>
- public static string _3047 {
- get {
- return ResourceManager.GetString("3047", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托商品未包含对应订单类型 的本地化字符串。
- /// </summary>
- public static string _3048 {
- get {
- return ResourceManager.GetString("3048", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托数量小于等于零 的本地化字符串。
- /// </summary>
- public static string _3049 {
- get {
- return ResourceManager.GetString("3049", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托数量小于此商品单笔最小买入数量 的本地化字符串。
- /// </summary>
- public static string _3050 {
- get {
- return ResourceManager.GetString("3050", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托数量大于此商品单笔最大买入数量 的本地化字符串。
- /// </summary>
- public static string _3051 {
- get {
- return ResourceManager.GetString("3051", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托订单价格不正确 的本地化字符串。
- /// </summary>
- public static string _3052 {
- get {
- return ResourceManager.GetString("3052", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 止盈或止损价格为空 的本地化字符串。
- /// </summary>
- public static string _3053 {
- get {
- return ResourceManager.GetString("3053", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托账号没有持仓汇总 的本地化字符串。
- /// </summary>
- public static string _3054 {
- get {
- return ResourceManager.GetString("3054", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托持仓商品不存在 的本地化字符串。
- /// </summary>
- public static string _3055 {
- get {
- return ResourceManager.GetString("3055", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托超出最大买持仓数量 的本地化字符串。
- /// </summary>
- public static string _3056 {
- get {
- return ResourceManager.GetString("3056", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托超出最大卖持仓数量 的本地化字符串。
- /// </summary>
- public static string _3057 {
- get {
- return ResourceManager.GetString("3057", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托超出持仓数量 的本地化字符串。
- /// </summary>
- public static string _3058 {
- get {
- return ResourceManager.GetString("3058", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托关联委托单无效 的本地化字符串。
- /// </summary>
- public static string _3059 {
- get {
- return ResourceManager.GetString("3059", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托关联持仓单无效 的本地化字符串。
- /// </summary>
- public static string _3060 {
- get {
- return ResourceManager.GetString("3060", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 关联持仓单数量为零 的本地化字符串。
- /// </summary>
- public static string _3061 {
- get {
- return ResourceManager.GetString("3061", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 不允许双边持仓 的本地化字符串。
- /// </summary>
- public static string _3062 {
- get {
- return ResourceManager.GetString("3062", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 行情超时 的本地化字符串。
- /// </summary>
- public static string _3063 {
- get {
- return ResourceManager.GetString("3063", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 错误的买卖点差 的本地化字符串。
- /// </summary>
- public static string _3064 {
- get {
- return ResourceManager.GetString("3064", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 劵金额为零 的本地化字符串。
- /// </summary>
- public static string _3065 {
- get {
- return ResourceManager.GetString("3065", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 不支持买卖点差 的本地化字符串。
- /// </summary>
- public static string _3066 {
- get {
- return ResourceManager.GetString("3066", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 当前阶段不支持撤单 的本地化字符串。
- /// </summary>
- public static string _3067 {
- get {
- return ResourceManager.GetString("3067", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 会员不支持投资者买入 的本地化字符串。
- /// </summary>
- public static string _3068 {
- get {
- return ResourceManager.GetString("3068", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 会员不支持投资者卖出 的本地化字符串。
- /// </summary>
- public static string _3069 {
- get {
- return ResourceManager.GetString("3069", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 会员处于对冲状态 的本地化字符串。
- /// </summary>
- public static string _3070 {
- get {
- return ResourceManager.GetString("3070", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 账号处于人工冻结状态 的本地化字符串。
- /// </summary>
- public static string _3071 {
- get {
- return ResourceManager.GetString("3071", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 该商品不在理财委托状态 的本地化字符串。
- /// </summary>
- public static string _3072 {
- get {
- return ResourceManager.GetString("3072", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托数不是最小买入数量或申购单位的整数倍 的本地化字符串。
- /// </summary>
- public static string _3073 {
- get {
- return ResourceManager.GetString("3073", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托数不是最小卖出数量的整数倍 的本地化字符串。
- /// </summary>
- public static string _3074 {
- get {
- return ResourceManager.GetString("3074", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 交收权限规则未找到 的本地化字符串。
- /// </summary>
- public static string _3075 {
- get {
- return ResourceManager.GetString("3075", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 商品不允许卖买入 的本地化字符串。
- /// </summary>
- public static string _3076 {
- get {
- return ResourceManager.GetString("3076", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 超出用户最大可申购数量 的本地化字符串。
- /// </summary>
- public static string _3077 {
- get {
- return ResourceManager.GetString("3077", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 卖出成功但是反手买入失败 的本地化字符串。
- /// </summary>
- public static string _3078 {
- get {
- return ResourceManager.GetString("3078", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 会员交易员开平方向有误 的本地化字符串。
- /// </summary>
- public static string _3079 {
- get {
- return ResourceManager.GetString("3079", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 会员当前不允许创建订单增加持仓汇总 的本地化字符串。
- /// </summary>
- public static string _3080 {
- get {
- return ResourceManager.GetString("3080", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 无委托消息头 的本地化字符串。
- /// </summary>
- public static string _3081 {
- get {
- return ResourceManager.GetString("3081", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 错误的委托类型 的本地化字符串。
- /// </summary>
- public static string _3082 {
- get {
- return ResourceManager.GetString("3082", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 无客户端流水号 的本地化字符串。
- /// </summary>
- public static string _3083 {
- get {
- return ResourceManager.GetString("3083", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 无商品ID 的本地化字符串。
- /// </summary>
- public static string _3084 {
- get {
- return ResourceManager.GetString("3084", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 错误的客户端时间格式 的本地化字符串。
- /// </summary>
- public static string _3085 {
- get {
- return ResourceManager.GetString("3085", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 错误的客户端类型 的本地化字符串。
- /// </summary>
- public static string _3086 {
- get {
- return ResourceManager.GetString("3086", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 重复的客户端流水号 的本地化字符串。
- /// </summary>
- public static string _3087 {
- get {
- return ResourceManager.GetString("3087", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 买卖值错误 的本地化字符串。
- /// </summary>
- public static string _3088 {
- get {
- return ResourceManager.GetString("3088", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 下单类型错误 的本地化字符串。
- /// </summary>
- public static string _3089 {
- get {
- return ResourceManager.GetString("3089", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 取价方式错误 的本地化字符串。
- /// </summary>
- public static string _3090 {
- get {
- return ResourceManager.GetString("3090", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 关联持仓单方向错误 的本地化字符串。
- /// </summary>
- public static string _3091 {
- get {
- return ResourceManager.GetString("3091", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托数量大于关联持仓单可平持仓数量 的本地化字符串。
- /// </summary>
- public static string _3092 {
- get {
- return ResourceManager.GetString("3092", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托数量大于可平持仓数量 的本地化字符串。
- /// </summary>
- public static string _3093 {
- get {
- return ResourceManager.GetString("3093", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托消息头无关联单号 的本地化字符串。
- /// </summary>
- public static string _3094 {
- get {
- return ResourceManager.GetString("3094", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 数据库中无最小买入数或申购单位参数 的本地化字符串。
- /// </summary>
- public static string _3095 {
- get {
- return ResourceManager.GetString("3095", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 数据库中无最大买入数参数 的本地化字符串。
- /// </summary>
- public static string _3096 {
- get {
- return ResourceManager.GetString("3096", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 账户无此商品交易权限 的本地化字符串。
- /// </summary>
- public static string _3097 {
- get {
- return ResourceManager.GetString("3097", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托关联委托单状态无效 的本地化字符串。
- /// </summary>
- public static string _3098 {
- get {
- return ResourceManager.GetString("3098", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托消息无反手买入标志 的本地化字符串。
- /// </summary>
- public static string _3099 {
- get {
- return ResourceManager.GetString("3099", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 结果集体字段序号越界 的本地化字符串。
- /// </summary>
- public static string _31 {
- get {
- return ResourceManager.GetString("31", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 数据库缺少账户状态或运行阶段的交易规则 的本地化字符串。
- /// </summary>
- public static string _3100 {
- get {
- return ResourceManager.GetString("3100", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 数据库中无买最大持仓数参数 的本地化字符串。
- /// </summary>
- public static string _3101 {
- get {
- return ResourceManager.GetString("3101", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 数据库中无卖最大持仓数参数 的本地化字符串。
- /// </summary>
- public static string _3102 {
- get {
- return ResourceManager.GetString("3102", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 账户类型不是会员 的本地化字符串。
- /// </summary>
- public static string _3103 {
- get {
- return ResourceManager.GetString("3103", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 限价卖出暂不支持部分卖出 的本地化字符串。
- /// </summary>
- public static string _3104 {
- get {
- return ResourceManager.GetString("3104", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 当前账户不能平其他账户的单据 的本地化字符串。
- /// </summary>
- public static string _3105 {
- get {
- return ResourceManager.GetString("3105", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 错误的委托账户类型 的本地化字符串。
- /// </summary>
- public static string _3106 {
- get {
- return ResourceManager.GetString("3106", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 无可用连续现货关系,确定对手失败 的本地化字符串。
- /// </summary>
- public static string _3107 {
- get {
- return ResourceManager.GetString("3107", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 运行阶段不是申购中 的本地化字符串。
- /// </summary>
- public static string _3108 {
- get {
- return ResourceManager.GetString("3108", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 运行阶段不是待发售 的本地化字符串。
- /// </summary>
- public static string _3109 {
- get {
- return ResourceManager.GetString("3109", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 发售账户受限 的本地化字符串。
- /// </summary>
- public static string _3110 {
- get {
- return ResourceManager.GetString("3110", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 当前账户不能撤其他账户的单据 的本地化字符串。
- /// </summary>
- public static string _3111 {
- get {
- return ResourceManager.GetString("3111", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 改单数量不为0且不能与原单据数量相同 的本地化字符串。
- /// </summary>
- public static string _3112 {
- get {
- return ResourceManager.GetString("3112", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 数据库中无最大申购持仓数量 的本地化字符串。
- /// </summary>
- public static string _3113 {
- get {
- return ResourceManager.GetString("3113", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 申购数量超过最大申购持仓数量 的本地化字符串。
- /// </summary>
- public static string _3114 {
- get {
- return ResourceManager.GetString("3114", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 触发类型值错误 的本地化字符串。
- /// </summary>
- public static string _3115 {
- get {
- return ResourceManager.GetString("3115", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 触发价格值错误 的本地化字符串。
- /// </summary>
- public static string _3116 {
- get {
- return ResourceManager.GetString("3116", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 消息头无UUID 的本地化字符串。
- /// </summary>
- public static string _3117 {
- get {
- return ResourceManager.GetString("3117", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 数据库无此预埋单 的本地化字符串。
- /// </summary>
- public static string _3118 {
- get {
- return ResourceManager.GetString("3118", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 撤单时,预埋单不在订单在市状态 的本地化字符串。
- /// </summary>
- public static string _3119 {
- get {
- return ResourceManager.GetString("3119", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 买方向,委托价格高于涨停价 的本地化字符串。
- /// </summary>
- public static string _3120 {
- get {
- return ResourceManager.GetString("3120", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 卖方向,委托价格底于跌停价 的本地化字符串。
- /// </summary>
- public static string _3121 {
- get {
- return ResourceManager.GetString("3121", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 未查询到此商品的涨跌停价 的本地化字符串。
- /// </summary>
- public static string _3122 {
- get {
- return ResourceManager.GetString("3122", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托价格不在此商品涨跌停价区间 的本地化字符串。
- /// </summary>
- public static string _3123 {
- get {
- return ResourceManager.GetString("3123", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 挂牌市场受限状态只允许卖出持仓 的本地化字符串。
- /// </summary>
- public static string _3124 {
- get {
- return ResourceManager.GetString("3124", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 交易模式错误 的本地化字符串。
- /// </summary>
- public static string _3125 {
- get {
- return ResourceManager.GetString("3125", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 账户类型不是投资者 的本地化字符串。
- /// </summary>
- public static string _3126 {
- get {
- return ResourceManager.GetString("3126", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 下单类型不是改单 的本地化字符串。
- /// </summary>
- public static string _3127 {
- get {
- return ResourceManager.GetString("3127", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 止盈止损单不在在市状态 的本地化字符串。
- /// </summary>
- public static string _3128 {
- get {
- return ResourceManager.GetString("3128", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 止盈止损主单不在已成状态 的本地化字符串。
- /// </summary>
- public static string _3129 {
- get {
- return ResourceManager.GetString("3129", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 商品不在连续交易阶段,不允许下市价单 的本地化字符串。
- /// </summary>
- public static string _3130 {
- get {
- return ResourceManager.GetString("3130", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 当前反方向持仓有冻结数量,不允许下先平后建单 的本地化字符串。
- /// </summary>
- public static string _3131 {
- get {
- return ResourceManager.GetString("3131", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 数据库无最大持仓量参数 的本地化字符串。
- /// </summary>
- public static string _3132 {
- get {
- return ResourceManager.GetString("3132", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 下单数量不允许超过最大持仓量 的本地化字符串。
- /// </summary>
- public static string _3133 {
- get {
- return ResourceManager.GetString("3133", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 最小买入数量或申购单位值不能为0 的本地化字符串。
- /// </summary>
- public static string _3134 {
- get {
- return ResourceManager.GetString("3134", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 没有找到可接单的结算会员 的本地化字符串。
- /// </summary>
- public static string _3135 {
- get {
- return ResourceManager.GetString("3135", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 下单数量不允许超过当前商品组最大持仓量 的本地化字符串。
- /// </summary>
- public static string _3136 {
- get {
- return ResourceManager.GetString("3136", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 未找到可用对手关系 的本地化字符串。
- /// </summary>
- public static string _3137 {
- get {
- return ResourceManager.GetString("3137", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 竞价全额模式只允许买建仓,卖平仓 的本地化字符串。
- /// </summary>
- public static string _3138 {
- get {
- return ResourceManager.GetString("3138", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 数据库中无商品持仓天数限制参数 的本地化字符串。
- /// </summary>
- public static string _3139 {
- get {
- return ResourceManager.GetString("3139", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 持仓单持仓天数小于限制天数 的本地化字符串。
- /// </summary>
- public static string _3140 {
- get {
- return ResourceManager.GetString("3140", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 平仓数量必须是单笔最小交易数量整数倍,如果不是,则平仓数量必须等于可平数量 的本地化字符串。
- /// </summary>
- public static string _3141 {
- get {
- return ResourceManager.GetString("3141", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 市场ID为空 的本地化字符串。
- /// </summary>
- public static string _3142 {
- get {
- return ResourceManager.GetString("3142", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 请求市场ID非法 的本地化字符串。
- /// </summary>
- public static string _3143 {
- get {
- return ResourceManager.GetString("3143", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 市场ID不匹配 的本地化字符串。
- /// </summary>
- public static string _3144 {
- get {
- return ResourceManager.GetString("3144", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 未选定摘牌类型 的本地化字符串。
- /// </summary>
- public static string _3145 {
- get {
- return ResourceManager.GetString("3145", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 不允许摘相同账号的挂牌单据 的本地化字符串。
- /// </summary>
- public static string _3146 {
- get {
- return ResourceManager.GetString("3146", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 请求账户ID非法 的本地化字符串。
- /// </summary>
- public static string _3147 {
- get {
- return ResourceManager.GetString("3147", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 请求参数不全 的本地化字符串。
- /// </summary>
- public static string _3148 {
- get {
- return ResourceManager.GetString("3148", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托用户ID为空 的本地化字符串。
- /// </summary>
- public static string _3149 {
- get {
- return ResourceManager.GetString("3149", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 委托用户无账户权限 的本地化字符串。
- /// </summary>
- public static string _3150 {
- get {
- return ResourceManager.GetString("3150", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 关联用户账户状态不支持委托类型 的本地化字符串。
- /// </summary>
- public static string _3151 {
- get {
- return ResourceManager.GetString("3151", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 小于最小建仓数量 的本地化字符串。
- /// </summary>
- public static string _3152 {
- get {
- return ResourceManager.GetString("3152", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 大于最大建仓数量 的本地化字符串。
- /// </summary>
- public static string _3153 {
- get {
- return ResourceManager.GetString("3153", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 市场未开市 的本地化字符串。
- /// </summary>
- public static string _3154 {
- get {
- return ResourceManager.GetString("3154", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 目标挂牌单据已失效 的本地化字符串。
- /// </summary>
- public static string _3155 {
- get {
- return ResourceManager.GetString("3155", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 错误的数据库类型 的本地化字符串。
- /// </summary>
- public static string _32 {
- get {
- return ResourceManager.GetString("32", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 冻结持仓汇总失败 的本地化字符串。
- /// </summary>
- public static string _3200 {
- get {
- return ResourceManager.GetString("3200", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 冻结持仓失败 的本地化字符串。
- /// </summary>
- public static string _3201 {
- get {
- return ResourceManager.GetString("3201", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 解冻持仓汇总失败 的本地化字符串。
- /// </summary>
- public static string _3202 {
- get {
- return ResourceManager.GetString("3202", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 解冻持仓失败 的本地化字符串。
- /// </summary>
- public static string _3203 {
- get {
- return ResourceManager.GetString("3203", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 成交数量大于冻结数量 的本地化字符串。
- /// </summary>
- public static string _3204 {
- get {
- return ResourceManager.GetString("3204", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 成交数量大于持仓数量 的本地化字符串。
- /// </summary>
- public static string _3205 {
- get {
- return ResourceManager.GetString("3205", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 商品不是开市状态 的本地化字符串。
- /// </summary>
- public static string _3206 {
- get {
- return ResourceManager.GetString("3206", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 没有找到对应的持仓单 的本地化字符串。
- /// </summary>
- public static string _3207 {
- get {
- return ResourceManager.GetString("3207", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 持仓单有部分数量被冻结 的本地化字符串。
- /// </summary>
- public static string _3208 {
- get {
- return ResourceManager.GetString("3208", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 持仓汇总可用数量不足 的本地化字符串。
- /// </summary>
- public static string _3209 {
- get {
- return ResourceManager.GetString("3209", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 查找投资者对应的交易会员失败 的本地化字符串。
- /// </summary>
- public static string _3210 {
- get {
- return ResourceManager.GetString("3210", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 没有设置混合模式下会员报价 的本地化字符串。
- /// </summary>
- public static string _3211 {
- get {
- return ResourceManager.GetString("3211", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 撤单失败,同一张单据不允许被重复撤单 的本地化字符串。
- /// </summary>
- public static string _3212 {
- get {
- return ResourceManager.GetString("3212", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 交割请求数据无效 的本地化字符串。
- /// </summary>
- public static string _3213 {
- get {
- return ResourceManager.GetString("3213", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 数据源配置错误 的本地化字符串。
- /// </summary>
- public static string _33 {
- get {
- return ResourceManager.GetString("33", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 获取斩仓对应的持仓失败 的本地化字符串。
- /// </summary>
- public static string _3300 {
- get {
- return ResourceManager.GetString("3300", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 计算斩仓手续费失败 的本地化字符串。
- /// </summary>
- public static string _3301 {
- get {
- return ResourceManager.GetString("3301", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 账户委托回应失败 的本地化字符串。
- /// </summary>
- public static string _3302 {
- get {
- return ResourceManager.GetString("3302", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 账户成交回应失败 的本地化字符串。
- /// </summary>
- public static string _3303 {
- get {
- return ResourceManager.GetString("3303", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 冻结会员头寸失败 的本地化字符串。
- /// </summary>
- public static string _3304 {
- get {
- return ResourceManager.GetString("3304", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 获取会员头寸失败 的本地化字符串。
- /// </summary>
- public static string _3305 {
- get {
- return ResourceManager.GetString("3305", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 SqlStatement非法 的本地化字符串。
- /// </summary>
- public static string _34 {
- get {
- return ResourceManager.GetString("34", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 没有市场信息 的本地化字符串。
- /// </summary>
- public static string _3400 {
- get {
- return ResourceManager.GetString("3400", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 没有结算计划 的本地化字符串。
- /// </summary>
- public static string _3401 {
- get {
- return ResourceManager.GetString("3401", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 获取结算价TIK失败 的本地化字符串。
- /// </summary>
- public static string _3402 {
- get {
- return ResourceManager.GetString("3402", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 不是所有商品都有行情TIK 的本地化字符串。
- /// </summary>
- public static string _3403 {
- get {
- return ResourceManager.GetString("3403", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 找不到上次商品结算信息 的本地化字符串。
- /// </summary>
- public static string _3404 {
- get {
- return ResourceManager.GetString("3404", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 更新涨跌停价到商品属性表失败 的本地化字符串。
- /// </summary>
- public static string _3405 {
- get {
- return ResourceManager.GetString("3405", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 协议转让失败 的本地化字符串。
- /// </summary>
- public static string _3406 {
- get {
- return ResourceManager.GetString("3406", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 到期单撤单失败 的本地化字符串。
- /// </summary>
- public static string _3407 {
- get {
- return ResourceManager.GetString("3407", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 等待资金响应超时 的本地化字符串。
- /// </summary>
- public static string _3408 {
- get {
- return ResourceManager.GetString("3408", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 资金请求失败 的本地化字符串。
- /// </summary>
- public static string _3409 {
- get {
- return ResourceManager.GetString("3409", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 费用分成创建源单据失败 的本地化字符串。
- /// </summary>
- public static string _3410 {
- get {
- return ResourceManager.GetString("3410", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 费用分成创建目标失败 的本地化字符串。
- /// </summary>
- public static string _3411 {
- get {
- return ResourceManager.GetString("3411", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 费用分成加载目标失败 的本地化字符串。
- /// </summary>
- public static string _3412 {
- get {
- return ResourceManager.GetString("3412", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 费用分成没有目标账号 的本地化字符串。
- /// </summary>
- public static string _3413 {
- get {
- return ResourceManager.GetString("3413", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 费用分成插入账号分成日志失败 的本地化字符串。
- /// </summary>
- public static string _3414 {
- get {
- return ResourceManager.GetString("3414", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 费用分成查询分成类型失败 的本地化字符串。
- /// </summary>
- public static string _3415 {
- get {
- return ResourceManager.GetString("3415", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 费用分成没有分成类型 的本地化字符串。
- /// </summary>
- public static string _3416 {
- get {
- return ResourceManager.GetString("3416", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 费用分成账号数据在分成之前 的本地化字符串。
- /// </summary>
- public static string _3417 {
- get {
- return ResourceManager.GetString("3417", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 费用分成检查节点失败 的本地化字符串。
- /// </summary>
- public static string _3418 {
- get {
- return ResourceManager.GetString("3418", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 费用分成找不到源单据 的本地化字符串。
- /// </summary>
- public static string _3419 {
- get {
- return ResourceManager.GetString("3419", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 费用分成找不到目标账号 的本地化字符串。
- /// </summary>
- public static string _3420 {
- get {
- return ResourceManager.GetString("3420", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 费用分成插入目标单据失败 的本地化字符串。
- /// </summary>
- public static string _3421 {
- get {
- return ResourceManager.GetString("3421", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 费用分成加载账号日志失败 的本地化字符串。
- /// </summary>
- public static string _3422 {
- get {
- return ResourceManager.GetString("3422", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 费用分成没有目标单据产生 的本地化字符串。
- /// </summary>
- public static string _3423 {
- get {
- return ResourceManager.GetString("3423", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 费用分成未创建目标 的本地化字符串。
- /// </summary>
- public static string _3424 {
- get {
- return ResourceManager.GetString("3424", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 费用分成源单据金额与目标单据金额不匹配 的本地化字符串。
- /// </summary>
- public static string _3425 {
- get {
- return ResourceManager.GetString("3425", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 费用分成目标单据金额与目标账户金额不匹配 的本地化字符串。
- /// </summary>
- public static string _3426 {
- get {
- return ResourceManager.GetString("3426", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 费用分成没有账号分配 的本地化字符串。
- /// </summary>
- public static string _3427 {
- get {
- return ResourceManager.GetString("3427", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 费用分成资金响应超时 的本地化字符串。
- /// </summary>
- public static string _3428 {
- get {
- return ResourceManager.GetString("3428", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 费用分成未知错误 的本地化字符串。
- /// </summary>
- public static string _3429 {
- get {
- return ResourceManager.GetString("3429", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 费用分成资金返回错误 的本地化字符串。
- /// </summary>
- public static string _3430 {
- get {
- return ResourceManager.GetString("3430", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 导到历史表失败 的本地化字符串。
- /// </summary>
- public static string _3431 {
- get {
- return ResourceManager.GetString("3431", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 没有可结算的商品 的本地化字符串。
- /// </summary>
- public static string _3432 {
- get {
- return ResourceManager.GetString("3432", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 商品发行价没有配置 的本地化字符串。
- /// </summary>
- public static string _3433 {
- get {
- return ResourceManager.GetString("3433", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 商品上市日不是下个交易日不能结算 的本地化字符串。
- /// </summary>
- public static string _3434 {
- get {
- return ResourceManager.GetString("3434", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 结算撤销预买单失败 的本地化字符串。
- /// </summary>
- public static string _3435 {
- get {
- return ResourceManager.GetString("3435", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 结算请求与结算工作模式不一致 的本地化字符串。
- /// </summary>
- public static string _3436 {
- get {
- return ResourceManager.GetString("3436", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 到期强平撤单失败 的本地化字符串。
- /// </summary>
- public static string _3437 {
- get {
- return ResourceManager.GetString("3437", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 到期强平失败 的本地化字符串。
- /// </summary>
- public static string _3438 {
- get {
- return ResourceManager.GetString("3438", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 无效的分成金额 的本地化字符串。
- /// </summary>
- public static string _3439 {
- get {
- return ResourceManager.GetString("3439", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 无效的分成目标账号 的本地化字符串。
- /// </summary>
- public static string _3440 {
- get {
- return ResourceManager.GetString("3440", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 分成比例超出100% 的本地化字符串。
- /// </summary>
- public static string _3441 {
- get {
- return ResourceManager.GetString("3441", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 分成比例不足100% 的本地化字符串。
- /// </summary>
- public static string _3442 {
- get {
- return ResourceManager.GetString("3442", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 获取涨跌停交易规则失败 的本地化字符串。
- /// </summary>
- public static string _3443 {
- get {
- return ResourceManager.GetString("3443", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 首次结算但发行日期不是下一个交易日 的本地化字符串。
- /// </summary>
- public static string _3444 {
- get {
- return ResourceManager.GetString("3444", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 商品没有配置到期处理方式 的本地化字符串。
- /// </summary>
- public static string _3445 {
- get {
- return ResourceManager.GetString("3445", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 到期无效交易服务返回失败 的本地化字符串。
- /// </summary>
- public static string _3446 {
- get {
- return ResourceManager.GetString("3446", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 此交易日已经结算过 的本地化字符串。
- /// </summary>
- public static string _3447 {
- get {
- return ResourceManager.GetString("3447", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 下一个交易日比当前交易日小 的本地化字符串。
- /// </summary>
- public static string _3448 {
- get {
- return ResourceManager.GetString("3448", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 有部分单据在交易过程中存在错误 的本地化字符串。
- /// </summary>
- public static string _3449 {
- get {
- return ResourceManager.GetString("3449", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 结算单据试算平衡处理失败 的本地化字符串。
- /// </summary>
- public static string _3450 {
- get {
- return ResourceManager.GetString("3450", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 结算委托单撤单处理失败 的本地化字符串。
- /// </summary>
- public static string _3451 {
- get {
- return ResourceManager.GetString("3451", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 结算预埋单撤单处理失败 的本地化字符串。
- /// </summary>
- public static string _3452 {
- get {
- return ResourceManager.GetString("3452", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 结算结算价节点处理失败 的本地化字符串。
- /// </summary>
- public static string _3453 {
- get {
- return ResourceManager.GetString("3453", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 结算持仓单备份处理失败 的本地化字符串。
- /// </summary>
- public static string _3454 {
- get {
- return ResourceManager.GetString("3454", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 结算持仓单到期解冻处理失败 的本地化字符串。
- /// </summary>
- public static string _3455 {
- get {
- return ResourceManager.GetString("3455", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 结算价不能为0 的本地化字符串。
- /// </summary>
- public static string _3456 {
- get {
- return ResourceManager.GetString("3456", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 获取基本sql语句错误 的本地化字符串。
- /// </summary>
- public static string _35 {
- get {
- return ResourceManager.GetString("35", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 SqlStatement没有找到 的本地化字符串。
- /// </summary>
- public static string _36 {
- get {
- return ResourceManager.GetString("36", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 分页参数非法 的本地化字符串。
- /// </summary>
- public static string _37 {
- get {
- return ResourceManager.GetString("37", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 不支持的数据类型 的本地化字符串。
- /// </summary>
- public static string _38 {
- get {
- return ResourceManager.GetString("38", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 取数据库记录失败 的本地化字符串。
- /// </summary>
- public static string _39 {
- get {
- return ResourceManager.GetString("39", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 空指针异常 的本地化字符串。
- /// </summary>
- public static string _40 {
- get {
- return ResourceManager.GetString("40", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 内存不足 的本地化字符串。
- /// </summary>
- public static string _4001 {
- get {
- return ResourceManager.GetString("4001", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 没有协议头 的本地化字符串。
- /// </summary>
- public static string _4002 {
- get {
- return ResourceManager.GetString("4002", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 没有账户ID 的本地化字符串。
- /// </summary>
- public static string _4003 {
- get {
- return ResourceManager.GetString("4003", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 账户不存在 的本地化字符串。
- /// </summary>
- public static string _4004 {
- get {
- return ResourceManager.GetString("4004", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 没有业务编码 的本地化字符串。
- /// </summary>
- public static string _4005 {
- get {
- return ResourceManager.GetString("4005", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 没有关联委托单号 的本地化字符串。
- /// </summary>
- public static string _4006 {
- get {
- return ResourceManager.GetString("4006", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 没有命令码 的本地化字符串。
- /// </summary>
- public static string _4007 {
- get {
- return ResourceManager.GetString("4007", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 解析子命令失败 的本地化字符串。
- /// </summary>
- public static string _4008 {
- get {
- return ResourceManager.GetString("4008", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 没有操作类型 的本地化字符串。
- /// </summary>
- public static string _4009 {
- get {
- return ResourceManager.GetString("4009", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 无效操作类型 的本地化字符串。
- /// </summary>
- public static string _4010 {
- get {
- return ResourceManager.GetString("4010", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 资金不足 的本地化字符串。
- /// </summary>
- public static string _4011 {
- get {
- return ResourceManager.GetString("4011", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 没有商品ID 的本地化字符串。
- /// </summary>
- public static string _4012 {
- get {
- return ResourceManager.GetString("4012", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 没有买卖方向 的本地化字符串。
- /// </summary>
- public static string _4013 {
- get {
- return ResourceManager.GetString("4013", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 不存在商品 的本地化字符串。
- /// </summary>
- public static string _4014 {
- get {
- return ResourceManager.GetString("4014", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 头寸不足 的本地化字符串。
- /// </summary>
- public static string _4015 {
- get {
- return ResourceManager.GetString("4015", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 交易参数不存在 的本地化字符串。
- /// </summary>
- public static string _4016 {
- get {
- return ResourceManager.GetString("4016", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 没有变更类型 的本地化字符串。
- /// </summary>
- public static string _4017 {
- get {
- return ResourceManager.GetString("4017", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 无效变更类型 的本地化字符串。
- /// </summary>
- public static string _4018 {
- get {
- return ResourceManager.GetString("4018", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 没有查询掩码 的本地化字符串。
- /// </summary>
- public static string _4019 {
- get {
- return ResourceManager.GetString("4019", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 无效买卖方向 的本地化字符串。
- /// </summary>
- public static string _4020 {
- get {
- return ResourceManager.GetString("4020", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 无效交易模式 的本地化字符串。
- /// </summary>
- public static string _4021 {
- get {
- return ResourceManager.GetString("4021", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 无效交易属性 的本地化字符串。
- /// </summary>
- public static string _4022 {
- get {
- return ResourceManager.GetString("4022", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 违反唯一性 的本地化字符串。
- /// </summary>
- public static string _4023 {
- get {
- return ResourceManager.GetString("4023", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 没有交易日 的本地化字符串。
- /// </summary>
- public static string _4024 {
- get {
- return ResourceManager.GetString("4024", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 无效交易日 的本地化字符串。
- /// </summary>
- public static string _4025 {
- get {
- return ResourceManager.GetString("4025", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 格式化交易日失败 的本地化字符串。
- /// </summary>
- public static string _4026 {
- get {
- return ResourceManager.GetString("4026", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 没有市场运行状态 的本地化字符串。
- /// </summary>
- public static string _4027 {
- get {
- return ResourceManager.GetString("4027", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 查询数据库失败 的本地化字符串。
- /// </summary>
- public static string _4028 {
- get {
- return ResourceManager.GetString("4028", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 记录不存在 的本地化字符串。
- /// </summary>
- public static string _4029 {
- get {
- return ResourceManager.GetString("4029", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 校验资金失败 的本地化字符串。
- /// </summary>
- public static string _4030 {
- get {
- return ResourceManager.GetString("4030", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 校验头寸失败 的本地化字符串。
- /// </summary>
- public static string _4031 {
- get {
- return ResourceManager.GetString("4031", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 获取浮动盈亏失败 的本地化字符串。
- /// </summary>
- public static string _4032 {
- get {
- return ResourceManager.GetString("4032", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 数据库事务失败 的本地化字符串。
- /// </summary>
- public static string _4033 {
- get {
- return ResourceManager.GetString("4033", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 缺少必要字段 的本地化字符串。
- /// </summary>
- public static string _4034 {
- get {
- return ResourceManager.GetString("4034", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 没有用户ID 的本地化字符串。
- /// </summary>
- public static string _4035 {
- get {
- return ResourceManager.GetString("4035", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 用户不存在错误 的本地化字符串。
- /// </summary>
- public static string _4036 {
- get {
- return ResourceManager.GetString("4036", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 超过最大持仓量 的本地化字符串。
- /// </summary>
- public static string _4037 {
- get {
- return ResourceManager.GetString("4037", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 没有市场ID 的本地化字符串。
- /// </summary>
- public static string _4038 {
- get {
- return ResourceManager.GetString("4038", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 预结算成功 的本地化字符串。
- /// </summary>
- public static string _4039 {
- get {
- return ResourceManager.GetString("4039", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 数量正负号错误 的本地化字符串。
- /// </summary>
- public static string _4040 {
- get {
- return ResourceManager.GetString("4040", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 金额正负号错误 的本地化字符串。
- /// </summary>
- public static string _4041 {
- get {
- return ResourceManager.GetString("4041", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 手数变负异常 的本地化字符串。
- /// </summary>
- public static string _4042 {
- get {
- return ResourceManager.GetString("4042", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 金额变负异常 的本地化字符串。
- /// </summary>
- public static string _4043 {
- get {
- return ResourceManager.GetString("4043", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 没有保证金配置 的本地化字符串。
- /// </summary>
- public static string _4044 {
- get {
- return ResourceManager.GetString("4044", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 更新占用保证金失败 的本地化字符串。
- /// </summary>
- public static string _4045 {
- get {
- return ResourceManager.GetString("4045", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 达到最大连接数量 的本地化字符串。
- /// </summary>
- public static string _41 {
- get {
- return ResourceManager.GetString("41", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 不受管理的连接 的本地化字符串。
- /// </summary>
- public static string _42 {
- get {
- return ResourceManager.GetString("42", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 字段类型非法 的本地化字符串。
- /// </summary>
- public static string _43 {
- get {
- return ResourceManager.GetString("43", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 不支持批量执行 的本地化字符串。
- /// </summary>
- public static string _44 {
- get {
- return ResourceManager.GetString("44", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 创建statement失败 的本地化字符串。
- /// </summary>
- public static string _45 {
- get {
- return ResourceManager.GetString("45", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 行情未找到 的本地化字符串。
- /// </summary>
- public static string _4506 {
- get {
- return ResourceManager.GetString("4506", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 参数类型不一至(批量处理绑定参数时) 的本地化字符串。
- /// </summary>
- public static string _46 {
- get {
- return ResourceManager.GetString("46", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 超过最大的批量执行记录数 的本地化字符串。
- /// </summary>
- public static string _47 {
- get {
- return ResourceManager.GetString("47", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 内存数据序列化到Protobuf失败(调函数SerializeToArray失败) 的本地化字符串。
- /// </summary>
- public static string _48 {
- get {
- return ResourceManager.GetString("48", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 收到不希望收到的FUNCTIONCODE 的本地化字符串。
- /// </summary>
- public static string _49 {
- get {
- return ResourceManager.GetString("49", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 没有用户账号记录 的本地化字符串。
- /// </summary>
- public static string _50 {
- get {
- return ResourceManager.GetString("50", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 无效的查询参数 的本地化字符串。
- /// </summary>
- public static string _5001 {
- get {
- return ResourceManager.GetString("5001", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 没有用户信息记录 的本地化字符串。
- /// </summary>
- public static string _51 {
- get {
- return ResourceManager.GetString("51", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 没有登录账号信息 的本地化字符串。
- /// </summary>
- public static string _52 {
- get {
- return ResourceManager.GetString("52", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 没有帐户签约记录 的本地化字符串。
- /// </summary>
- public static string _53 {
- get {
- return ResourceManager.GetString("53", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 业务处理中 的本地化字符串。
- /// </summary>
- public static string _6001 {
- get {
- return ResourceManager.GetString("6001", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 获取托管银签到签退信息失败 的本地化字符串。
- /// </summary>
- public static string _6002 {
- get {
- return ResourceManager.GetString("6002", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 托管银没有为签到 的本地化字符串。
- /// </summary>
- public static string _6003 {
- get {
- return ResourceManager.GetString("6003", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 获取公共配置失败 的本地化字符串。
- /// </summary>
- public static string _6004 {
- get {
- return ResourceManager.GetString("6004", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 币种校验失败(与托管银行币种不一致) 的本地化字符串。
- /// </summary>
- public static string _6005 {
- get {
- return ResourceManager.GetString("6005", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 该银行禁止发起签约 的本地化字符串。
- /// </summary>
- public static string _6006 {
- get {
- return ResourceManager.GetString("6006", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 等待审核 的本地化字符串。
- /// </summary>
- public static string _6007 {
- get {
- return ResourceManager.GetString("6007", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 错误码转换失败 的本地化字符串。
- /// </summary>
- public static string _6008 {
- get {
- return ResourceManager.GetString("6008", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 获取缓存失败 的本地化字符串。
- /// </summary>
- public static string _6009 {
- get {
- return ResourceManager.GetString("6009", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 业务重复 的本地化字符串。
- /// </summary>
- public static string _6010 {
- get {
- return ResourceManager.GetString("6010", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 解析报文失败 的本地化字符串。
- /// </summary>
- public static string _6011 {
- get {
- return ResourceManager.GetString("6011", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 账户服务冻结资金失败 的本地化字符串。
- /// </summary>
- public static string _6012 {
- get {
- return ResourceManager.GetString("6012", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 获取msg表的记录失败 的本地化字符串。
- /// </summary>
- public static string _6013 {
- get {
- return ResourceManager.GetString("6013", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 无法反序列化MSG表记录的对象内容 的本地化字符串。
- /// </summary>
- public static string _6014 {
- get {
- return ResourceManager.GetString("6014", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 获取数据库记录失败 的本地化字符串。
- /// </summary>
- public static string _6015 {
- get {
- return ResourceManager.GetString("6015", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 系统错误 的本地化字符串。
- /// </summary>
- public static string _6016 {
- get {
- return ResourceManager.GetString("6016", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 账户服务解冻资金失败 的本地化字符串。
- /// </summary>
- public static string _6017 {
- get {
- return ResourceManager.GetString("6017", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 账户服务扣款(出金)失败 的本地化字符串。
- /// </summary>
- public static string _6018 {
- get {
- return ResourceManager.GetString("6018", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 客户签约状态不在业务允许范围内 的本地化字符串。
- /// </summary>
- public static string _6019 {
- get {
- return ResourceManager.GetString("6019", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 系统禁止出金 的本地化字符串。
- /// </summary>
- public static string _6020 {
- get {
- return ResourceManager.GetString("6020", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 出金金额太小 的本地化字符串。
- /// </summary>
- public static string _6021 {
- get {
- return ResourceManager.GetString("6021", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 出金金额太大 的本地化字符串。
- /// </summary>
- public static string _6022 {
- get {
- return ResourceManager.GetString("6022", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 出金次数超限制 的本地化字符串。
- /// </summary>
- public static string _6023 {
- get {
- return ResourceManager.GetString("6023", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 出金总金额超限制 的本地化字符串。
- /// </summary>
- public static string _6024 {
- get {
- return ResourceManager.GetString("6024", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 计算手续费失败 的本地化字符串。
- /// </summary>
- public static string _6025 {
- get {
- return ResourceManager.GetString("6025", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 资金密码错误 的本地化字符串。
- /// </summary>
- public static string _6026 {
- get {
- return ResourceManager.GetString("6026", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 金额太大,需要审核 的本地化字符串。
- /// </summary>
- public static string _6027 {
- get {
- return ResourceManager.GetString("6027", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 解冻扣款中 的本地化字符串。
- /// </summary>
- public static string _6028 {
- get {
- return ResourceManager.GetString("6028", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 账户服务扣款中 的本地化字符串。
- /// </summary>
- public static string _6029 {
- get {
- return ResourceManager.GetString("6029", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 账户服务入金中 的本地化字符串。
- /// </summary>
- public static string _6030 {
- get {
- return ResourceManager.GetString("6030", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 账户服务解冻中 的本地化字符串。
- /// </summary>
- public static string _6031 {
- get {
- return ResourceManager.GetString("6031", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 系统禁止入金 的本地化字符串。
- /// </summary>
- public static string _6032 {
- get {
- return ResourceManager.GetString("6032", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 入金金额太小 的本地化字符串。
- /// </summary>
- public static string _6033 {
- get {
- return ResourceManager.GetString("6033", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 入金金额太大 的本地化字符串。
- /// </summary>
- public static string _6034 {
- get {
- return ResourceManager.GetString("6034", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 入金次数超限制 的本地化字符串。
- /// </summary>
- public static string _6035 {
- get {
- return ResourceManager.GetString("6035", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 入金总金额超限制 的本地化字符串。
- /// </summary>
- public static string _6036 {
- get {
- return ResourceManager.GetString("6036", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 入金处理中 的本地化字符串。
- /// </summary>
- public static string _6037 {
- get {
- return ResourceManager.GetString("6037", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 系统找不到这样的流水号 的本地化字符串。
- /// </summary>
- public static string _6038 {
- get {
- return ResourceManager.GetString("6038", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 账户服务操作失败 的本地化字符串。
- /// </summary>
- public static string _6039 {
- get {
- return ResourceManager.GetString("6039", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 客户已经处于已签约状态 的本地化字符串。
- /// </summary>
- public static string _6040 {
- get {
- return ResourceManager.GetString("6040", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 客户当前的签约状态不允许再发起签约 的本地化字符串。
- /// </summary>
- public static string _6041 {
- get {
- return ResourceManager.GetString("6041", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 系统禁止解约 的本地化字符串。
- /// </summary>
- public static string _6042 {
- get {
- return ResourceManager.GetString("6042", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 客户已经处于解约状态 的本地化字符串。
- /// </summary>
- public static string _6043 {
- get {
- return ResourceManager.GetString("6043", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 客户不是签约状态,不能解约 的本地化字符串。
- /// </summary>
- public static string _6044 {
- get {
- return ResourceManager.GetString("6044", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 客户当前状态不能解约 的本地化字符串。
- /// </summary>
- public static string _6045 {
- get {
- return ResourceManager.GetString("6045", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 账户服务冻结资金中 的本地化字符串。
- /// </summary>
- public static string _6046 {
- get {
- return ResourceManager.GetString("6046", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 读取文件失败 的本地化字符串。
- /// </summary>
- public static string _6047 {
- get {
- return ResourceManager.GetString("6047", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 写入文件失败 的本地化字符串。
- /// </summary>
- public static string _6048 {
- get {
- return ResourceManager.GetString("6048", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 审核已拒绝次申请 的本地化字符串。
- /// </summary>
- public static string _6049 {
- get {
- return ResourceManager.GetString("6049", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 对账结果:成功 的本地化字符串。
- /// </summary>
- public static string _6050 {
- get {
- return ResourceManager.GetString("6050", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 对账结果:平台成功,金额不一致 的本地化字符串。
- /// </summary>
- public static string _6051 {
- get {
- return ResourceManager.GetString("6051", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 对账结果:平台缺失(银行存在系统不存在) 的本地化字符串。
- /// </summary>
- public static string _6052 {
- get {
- return ResourceManager.GetString("6052", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 对账结果:银行成功,平台失败 的本地化字符串。
- /// </summary>
- public static string _6053 {
- get {
- return ResourceManager.GetString("6053", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 对账结果:银行成功,平台处理中 的本地化字符串。
- /// </summary>
- public static string _6054 {
- get {
- return ResourceManager.GetString("6054", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 对账结果:平台成功,银行不成功 的本地化字符串。
- /// </summary>
- public static string _6055 {
- get {
- return ResourceManager.GetString("6055", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 对账结果:平台处理中,银行不成功 的本地化字符串。
- /// </summary>
- public static string _6056 {
- get {
- return ResourceManager.GetString("6056", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 对账结果:平台处理中,金额不一致 的本地化字符串。
- /// </summary>
- public static string _6057 {
- get {
- return ResourceManager.GetString("6057", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 对账结果:平台失败,金额不一致 的本地化字符串。
- /// </summary>
- public static string _6058 {
- get {
- return ResourceManager.GetString("6058", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 对账结果:平台成功,账户服务操作失败 的本地化字符串。
- /// </summary>
- public static string _6059 {
- get {
- return ResourceManager.GetString("6059", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 对账结果:平台失败,账户服务解冻资金失败 的本地化字符串。
- /// </summary>
- public static string _6060 {
- get {
- return ResourceManager.GetString("6060", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 行情中断 的本地化字符串。
- /// </summary>
- public static string _7001 {
- get {
- return ResourceManager.GetString("7001", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 没找到投资者账户信息 的本地化字符串。
- /// </summary>
- public static string _8001 {
- get {
- return ResourceManager.GetString("8001", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 没找到交割关系 的本地化字符串。
- /// </summary>
- public static string _8002 {
- get {
- return ResourceManager.GetString("8002", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 交割申请日期不在允许范围内 的本地化字符串。
- /// </summary>
- public static string _8003 {
- get {
- return ResourceManager.GetString("8003", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 交割申请数量小于最小交割手数 的本地化字符串。
- /// </summary>
- public static string _8004 {
- get {
- return ResourceManager.GetString("8004", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 创建交割委托处理对象失败 的本地化字符串。
- /// </summary>
- public static string _8005 {
- get {
- return ResourceManager.GetString("8005", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 未提供主商品ID 的本地化字符串。
- /// </summary>
- public static string _8006 {
- get {
- return ResourceManager.GetString("8006", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 未提供主商品市场ID 的本地化字符串。
- /// </summary>
- public static string _8007 {
- get {
- return ResourceManager.GetString("8007", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 未提供主商品手数 的本地化字符串。
- /// </summary>
- public static string _8008 {
- get {
- return ResourceManager.GetString("8008", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 未提供交割商品ID 的本地化字符串。
- /// </summary>
- public static string _8009 {
- get {
- return ResourceManager.GetString("8009", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 未提供交割手数 的本地化字符串。
- /// </summary>
- public static string _8010 {
- get {
- return ResourceManager.GetString("8010", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 未提供交割仓单明细 的本地化字符串。
- /// </summary>
- public static string _8011 {
- get {
- return ResourceManager.GetString("8011", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 未提供仓单账号 的本地化字符串。
- /// </summary>
- public static string _8012 {
- get {
- return ResourceManager.GetString("8012", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 未提供仓单手数 的本地化字符串。
- /// </summary>
- public static string _8013 {
- get {
- return ResourceManager.GetString("8013", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 交割主商品市场未开市 的本地化字符串。
- /// </summary>
- public static string _8014 {
- get {
- return ResourceManager.GetString("8014", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 主商品状态异常 的本地化字符串。
- /// </summary>
- public static string _8015 {
- get {
- return ResourceManager.GetString("8015", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 辅商品已退市,不能发起交割 的本地化字符串。
- /// </summary>
- public static string _8016 {
- get {
- return ResourceManager.GetString("8016", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 账户状态异常 的本地化字符串。
- /// </summary>
- public static string _8017 {
- get {
- return ResourceManager.GetString("8017", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 商品交割关系不匹配 的本地化字符串。
- /// </summary>
- public static string _8018 {
- get {
- return ResourceManager.GetString("8018", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 主副商品不符合合约系数 的本地化字符串。
- /// </summary>
- public static string _8019 {
- get {
- return ResourceManager.GetString("8019", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 仓单校验失败 的本地化字符串。
- /// </summary>
- public static string _8020 {
- get {
- return ResourceManager.GetString("8020", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 未知命令 的本地化字符串。
- /// </summary>
- public static string _8021 {
- get {
- return ResourceManager.GetString("8021", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 找不到交割价 的本地化字符串。
- /// </summary>
- public static string _8022 {
- get {
- return ResourceManager.GetString("8022", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 找不到交割申报单号 的本地化字符串。
- /// </summary>
- public static string _8023 {
- get {
- return ResourceManager.GetString("8023", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 找不到交割成交单号 的本地化字符串。
- /// </summary>
- public static string _8024 {
- get {
- return ResourceManager.GetString("8024", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 子命令解析失败 的本地化字符串。
- /// </summary>
- public static string _8025 {
- get {
- return ResourceManager.GetString("8025", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 交割审核消息解析失败 的本地化字符串。
- /// </summary>
- public static string _8026 {
- get {
- return ResourceManager.GetString("8026", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 未提供审核状态 的本地化字符串。
- /// </summary>
- public static string _8027 {
- get {
- return ResourceManager.GetString("8027", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 未提供审核日期 的本地化字符串。
- /// </summary>
- public static string _8028 {
- get {
- return ResourceManager.GetString("8028", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 未提供操作人 的本地化字符串。
- /// </summary>
- public static string _8029 {
- get {
- return ResourceManager.GetString("8029", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 未提供仓单手数 的本地化字符串。
- /// </summary>
- public static string _8030 {
- get {
- return ResourceManager.GetString("8030", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 未提供品牌ID 的本地化字符串。
- /// </summary>
- public static string _8031 {
- get {
- return ResourceManager.GetString("8031", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 未提供品质ID 的本地化字符串。
- /// </summary>
- public static string _8032 {
- get {
- return ResourceManager.GetString("8032", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 未提供规格ID 的本地化字符串。
- /// </summary>
- public static string _8033 {
- get {
- return ResourceManager.GetString("8033", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 未提供仓单ID 的本地化字符串。
- /// </summary>
- public static string _8034 {
- get {
- return ResourceManager.GetString("8034", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 未提供月份ID 的本地化字符串。
- /// </summary>
- public static string _8035 {
- get {
- return ResourceManager.GetString("8035", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 交割市场未开市 的本地化字符串。
- /// </summary>
- public static string _8036 {
- get {
- return ResourceManager.GetString("8036", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 没找到市场信息 的本地化字符串。
- /// </summary>
- public static string _9001 {
- get {
- return ResourceManager.GetString("9001", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 系统状态错误 的本地化字符串。
- /// </summary>
- public static string _9002 {
- get {
- return ResourceManager.GetString("9002", resourceCulture);
- }
- }
-
- /// <summary>
- /// 查找类似 市场状态错误 的本地化字符串。
- /// </summary>
- public static string _9003 {
- get {
- return ResourceManager.GetString("9003", resourceCulture);
- }
- }
- }
- }
|