p13.txt 236 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467
  1. [
  2. {
  3. "id": "2020111783284877",
  4. "center": "长沙",
  5. "areaCode": "M4301",
  6. "areaName": "长沙小微",
  7. "city": "张家界市",
  8. "partScale": 0,
  9. "zbMoney": 0,
  10. "custName": "(押金户)桑植中浩建材有限公司",
  11. "custCode": "C200144871",
  12. "officeAddr": "湖南省张家界市桑植县澧源镇五里桥村五里桥组",
  13. "industryStr": null,
  14. "brandStr": null,
  15. "partUserCount": "0",
  16. "centerCode": "12403",
  17. "notAuthCenter": null,
  18. "cityCode": "430800000000",
  19. "bigChannelCode": "M",
  20. "bigChannelName": "直营渠道",
  21. "smallChannelCode": "HA003",
  22. "smallChannelName": "纯三专海尔产品专卖类(电厨)",
  23. "mdmFlag": 1,
  24. "zhaobMoney": 0,
  25. "zhaobCount": 0,
  26. "signCount": 0,
  27. "partnershipDomainALL": null,
  28. "partnershipDomainPL011": null,
  29. "partnershipDomainPL005": null,
  30. "partnershipDomainPL002": null,
  31. "partnershipDomainPL001": null,
  32. "partnershipDomainSPL007": null,
  33. "partnershipDomainSPL006": null,
  34. "partnershipDomainPL003": null,
  35. "partnershipDomainPL007": null,
  36. "partnershipDomainPL006": null,
  37. "potentialList": [],
  38. "qzType": 0,
  39. "qzFlag": 0,
  40. "enterpriseId": null,
  41. "nowZhaobMoneyD": 0,
  42. "historyZhaobMoneyD": 0,
  43. "nowZhaobMoney": "0",
  44. "historyZhaobMoney": "0",
  45. "collaborationChanges": null,
  46. "collaborationChangesReduce": null,
  47. "partnerType": null,
  48. "partnerTypeCode": null,
  49. "oneYearZhongbD": 0,
  50. "historyZhongbD": 0,
  51. "oneYearZhongb": "0",
  52. "historyZhongb": "0",
  53. "shareUserCode": null,
  54. "shareUserName": null,
  55. "pcShareUserName": null,
  56. "legalPerson": null,
  57. "registerDate": null,
  58. "registerAmount": null,
  59. "address": null,
  60. "partnershipList": [],
  61. "certificateList": [],
  62. "partnership": "空白",
  63. "pcList": [
  64. {
  65. "dataCode": "空白",
  66. "dataName": "全产业",
  67. "tagCode": null
  68. }
  69. ],
  70. "pcChangeList": [],
  71. "importDate": "2020-11-17 00:00:00",
  72. "createByDate": "2023-11-23 18:41:27",
  73. "sevenDayCreateTag": null,
  74. "linkSize": 0
  75. },
  76. {
  77. "id": "2024042334795521",
  78. "center": "长沙",
  79. "areaCode": "M4301",
  80. "areaName": "长沙小微",
  81. "city": null,
  82. "partScale": 0,
  83. "zbMoney": 0,
  84. "custName": "(押金户)常德浩敏建材有限公司",
  85. "custCode": "C200153932",
  86. "officeAddr": "湖南省常德市鼎城区玉霞街道常沅社区双潭路宏泽佳园3-3幢14单元1401室",
  87. "industryStr": null,
  88. "brandStr": null,
  89. "partUserCount": "0",
  90. "centerCode": "12403",
  91. "notAuthCenter": null,
  92. "cityCode": "",
  93. "bigChannelCode": "M",
  94. "bigChannelName": "直营渠道",
  95. "smallChannelCode": "HA011",
  96. "smallChannelName": "纯三专海尔产品专卖类(净水+热水器)",
  97. "mdmFlag": 1,
  98. "zhaobMoney": 0,
  99. "zhaobCount": 0,
  100. "signCount": 0,
  101. "partnershipDomainALL": null,
  102. "partnershipDomainPL011": null,
  103. "partnershipDomainPL005": null,
  104. "partnershipDomainPL002": null,
  105. "partnershipDomainPL001": null,
  106. "partnershipDomainSPL007": null,
  107. "partnershipDomainSPL006": null,
  108. "partnershipDomainPL003": null,
  109. "partnershipDomainPL007": null,
  110. "partnershipDomainPL006": null,
  111. "potentialList": [],
  112. "qzType": 0,
  113. "qzFlag": 0,
  114. "enterpriseId": null,
  115. "nowZhaobMoneyD": 0,
  116. "historyZhaobMoneyD": 0,
  117. "nowZhaobMoney": "0",
  118. "historyZhaobMoney": "0",
  119. "collaborationChanges": null,
  120. "collaborationChangesReduce": null,
  121. "partnerType": null,
  122. "partnerTypeCode": null,
  123. "oneYearZhongbD": 0,
  124. "historyZhongbD": 0,
  125. "oneYearZhongb": "0",
  126. "historyZhongb": "0",
  127. "shareUserCode": null,
  128. "shareUserName": null,
  129. "pcShareUserName": null,
  130. "legalPerson": null,
  131. "registerDate": null,
  132. "registerAmount": null,
  133. "address": null,
  134. "partnershipList": [],
  135. "certificateList": [],
  136. "partnership": "空白",
  137. "pcList": [
  138. {
  139. "dataCode": "空白",
  140. "dataName": "全产业",
  141. "tagCode": null
  142. }
  143. ],
  144. "pcChangeList": [],
  145. "importDate": "2024-04-23 16:04:50",
  146. "createByDate": "2024-04-24 02:50:01",
  147. "sevenDayCreateTag": null,
  148. "linkSize": 0
  149. },
  150. {
  151. "id": "2017030146427179",
  152. "center": "长沙",
  153. "areaCode": "M4301",
  154. "areaName": "长沙小微",
  155. "city": "益阳市",
  156. "partScale": 0,
  157. "zbMoney": 0,
  158. "custName": "益阳市兴旺达电器商贸有限公司",
  159. "custCode": "8800228997",
  160. "officeAddr": "益阳市高新区迎宾路657号",
  161. "industryStr": null,
  162. "brandStr": null,
  163. "partUserCount": "0",
  164. "centerCode": "12403",
  165. "notAuthCenter": null,
  166. "cityCode": "430900000000",
  167. "bigChannelCode": "M",
  168. "bigChannelName": "直营渠道",
  169. "smallChannelCode": "HM005",
  170. "smallChannelName": "准三专产品专营类",
  171. "mdmFlag": 1,
  172. "zhaobMoney": 0,
  173. "zhaobCount": 0,
  174. "signCount": 0,
  175. "partnershipDomainALL": null,
  176. "partnershipDomainPL011": null,
  177. "partnershipDomainPL005": null,
  178. "partnershipDomainPL002": null,
  179. "partnershipDomainPL001": null,
  180. "partnershipDomainSPL007": null,
  181. "partnershipDomainSPL006": null,
  182. "partnershipDomainPL003": null,
  183. "partnershipDomainPL007": null,
  184. "partnershipDomainPL006": null,
  185. "potentialList": [],
  186. "qzType": 0,
  187. "qzFlag": 0,
  188. "enterpriseId": null,
  189. "nowZhaobMoneyD": 0,
  190. "historyZhaobMoneyD": 0,
  191. "nowZhaobMoney": "0",
  192. "historyZhaobMoney": "0",
  193. "collaborationChanges": null,
  194. "collaborationChangesReduce": null,
  195. "partnerType": null,
  196. "partnerTypeCode": null,
  197. "oneYearZhongbD": 0,
  198. "historyZhongbD": 0,
  199. "oneYearZhongb": "0",
  200. "historyZhongb": "0",
  201. "shareUserCode": null,
  202. "shareUserName": null,
  203. "pcShareUserName": null,
  204. "legalPerson": null,
  205. "registerDate": null,
  206. "registerAmount": null,
  207. "address": null,
  208. "partnershipList": [],
  209. "certificateList": [],
  210. "partnership": "空白",
  211. "pcList": [
  212. {
  213. "dataCode": "空白",
  214. "dataName": "全产业",
  215. "tagCode": null
  216. }
  217. ],
  218. "pcChangeList": [],
  219. "importDate": "2017-03-01 00:00:00",
  220. "createByDate": "2023-11-23 18:44:02",
  221. "sevenDayCreateTag": null,
  222. "linkSize": 0
  223. },
  224. {
  225. "id": "2022112256445371",
  226. "center": "长沙",
  227. "areaCode": "M4301",
  228. "areaName": "长沙小微",
  229. "city": "益阳市",
  230. "partScale": 0,
  231. "zbMoney": 0,
  232. "custName": "(押金户)益阳市邦荣商贸有限公司",
  233. "custCode": "C200150729",
  234. "officeAddr": "湖南省益阳市朝阳街道江金社区101室",
  235. "industryStr": null,
  236. "brandStr": null,
  237. "partUserCount": "0",
  238. "centerCode": "12403",
  239. "notAuthCenter": null,
  240. "cityCode": "430900000000",
  241. "bigChannelCode": "M",
  242. "bigChannelName": "直营渠道",
  243. "smallChannelCode": "HA001",
  244. "smallChannelName": "纯三专海尔成套专卖类",
  245. "mdmFlag": 1,
  246. "zhaobMoney": 0,
  247. "zhaobCount": 0,
  248. "signCount": 0,
  249. "partnershipDomainALL": null,
  250. "partnershipDomainPL011": null,
  251. "partnershipDomainPL005": null,
  252. "partnershipDomainPL002": null,
  253. "partnershipDomainPL001": null,
  254. "partnershipDomainSPL007": null,
  255. "partnershipDomainSPL006": null,
  256. "partnershipDomainPL003": null,
  257. "partnershipDomainPL007": null,
  258. "partnershipDomainPL006": null,
  259. "potentialList": [],
  260. "qzType": 0,
  261. "qzFlag": 0,
  262. "enterpriseId": null,
  263. "nowZhaobMoneyD": 0,
  264. "historyZhaobMoneyD": 0,
  265. "nowZhaobMoney": "0",
  266. "historyZhaobMoney": "0",
  267. "collaborationChanges": null,
  268. "collaborationChangesReduce": null,
  269. "partnerType": null,
  270. "partnerTypeCode": null,
  271. "oneYearZhongbD": 0,
  272. "historyZhongbD": 0,
  273. "oneYearZhongb": "0",
  274. "historyZhongb": "0",
  275. "shareUserCode": null,
  276. "shareUserName": null,
  277. "pcShareUserName": null,
  278. "legalPerson": null,
  279. "registerDate": null,
  280. "registerAmount": null,
  281. "address": null,
  282. "partnershipList": [],
  283. "certificateList": [],
  284. "partnership": "空白",
  285. "pcList": [
  286. {
  287. "dataCode": "空白",
  288. "dataName": "全产业",
  289. "tagCode": null
  290. }
  291. ],
  292. "pcChangeList": [],
  293. "importDate": "2022-11-22 14:15:57",
  294. "createByDate": "2023-11-23 18:40:23",
  295. "sevenDayCreateTag": null,
  296. "linkSize": 0
  297. },
  298. {
  299. "id": "2018110923335474",
  300. "center": "长沙",
  301. "areaCode": "M4301",
  302. "areaName": "长沙小微",
  303. "city": null,
  304. "partScale": 0,
  305. "zbMoney": 0,
  306. "custName": "益阳市凯达电器有限责任公司(顺逛专户)",
  307. "custCode": "C200082759",
  308. "officeAddr": "湖南省益阳市金泰路30号",
  309. "industryStr": null,
  310. "brandStr": null,
  311. "partUserCount": "0",
  312. "centerCode": "12403",
  313. "notAuthCenter": null,
  314. "cityCode": null,
  315. "bigChannelCode": "M",
  316. "bigChannelName": "直营渠道",
  317. "smallChannelCode": "HA001",
  318. "smallChannelName": "纯三专海尔成套专卖类",
  319. "mdmFlag": 1,
  320. "zhaobMoney": 0,
  321. "zhaobCount": 0,
  322. "signCount": 0,
  323. "partnershipDomainALL": null,
  324. "partnershipDomainPL011": null,
  325. "partnershipDomainPL005": null,
  326. "partnershipDomainPL002": null,
  327. "partnershipDomainPL001": null,
  328. "partnershipDomainSPL007": null,
  329. "partnershipDomainSPL006": null,
  330. "partnershipDomainPL003": null,
  331. "partnershipDomainPL007": null,
  332. "partnershipDomainPL006": null,
  333. "potentialList": [],
  334. "qzType": 0,
  335. "qzFlag": 0,
  336. "enterpriseId": null,
  337. "nowZhaobMoneyD": 0,
  338. "historyZhaobMoneyD": 0,
  339. "nowZhaobMoney": "0",
  340. "historyZhaobMoney": "0",
  341. "collaborationChanges": null,
  342. "collaborationChangesReduce": null,
  343. "partnerType": null,
  344. "partnerTypeCode": null,
  345. "oneYearZhongbD": 0,
  346. "historyZhongbD": 0,
  347. "oneYearZhongb": "0",
  348. "historyZhongb": "0",
  349. "shareUserCode": null,
  350. "shareUserName": null,
  351. "pcShareUserName": null,
  352. "legalPerson": null,
  353. "registerDate": null,
  354. "registerAmount": null,
  355. "address": null,
  356. "partnershipList": [],
  357. "certificateList": [],
  358. "partnership": "空白",
  359. "pcList": [
  360. {
  361. "dataCode": "空白",
  362. "dataName": "全产业",
  363. "tagCode": null
  364. }
  365. ],
  366. "pcChangeList": [],
  367. "importDate": "2018-11-09 13:15:11",
  368. "createByDate": "2023-11-23 18:48:27",
  369. "sevenDayCreateTag": null,
  370. "linkSize": 0
  371. },
  372. {
  373. "id": "2024102690943637",
  374. "center": "长沙",
  375. "areaCode": "M4301",
  376. "areaName": "长沙小微",
  377. "city": "岳阳市",
  378. "partScale": 0,
  379. "zbMoney": 0,
  380. "custName": "平江县龙海商贸有限公司华容县章华镇迎宾北路海尔专卖店",
  381. "custCode": "8800595039",
  382. "officeAddr": "岳阳市华容县华容县章华镇迎宾北路072-1号",
  383. "industryStr": null,
  384. "brandStr": null,
  385. "partUserCount": "0",
  386. "centerCode": "12403",
  387. "notAuthCenter": null,
  388. "cityCode": "430600000000",
  389. "bigChannelCode": "M",
  390. "bigChannelName": "直营渠道",
  391. "smallChannelCode": "HA016",
  392. "smallChannelName": "纯三专海尔三专全屋集成客户",
  393. "mdmFlag": 1,
  394. "zhaobMoney": 0,
  395. "zhaobCount": 0,
  396. "signCount": 0,
  397. "partnershipDomainALL": null,
  398. "partnershipDomainPL011": null,
  399. "partnershipDomainPL005": null,
  400. "partnershipDomainPL002": null,
  401. "partnershipDomainPL001": null,
  402. "partnershipDomainSPL007": null,
  403. "partnershipDomainSPL006": null,
  404. "partnershipDomainPL003": null,
  405. "partnershipDomainPL007": null,
  406. "partnershipDomainPL006": null,
  407. "potentialList": [],
  408. "qzType": 0,
  409. "qzFlag": 0,
  410. "enterpriseId": null,
  411. "nowZhaobMoneyD": 0,
  412. "historyZhaobMoneyD": 0,
  413. "nowZhaobMoney": "0",
  414. "historyZhaobMoney": "0",
  415. "collaborationChanges": null,
  416. "collaborationChangesReduce": null,
  417. "partnerType": null,
  418. "partnerTypeCode": null,
  419. "oneYearZhongbD": 0,
  420. "historyZhongbD": 0,
  421. "oneYearZhongb": "0",
  422. "historyZhongb": "0",
  423. "shareUserCode": null,
  424. "shareUserName": null,
  425. "pcShareUserName": null,
  426. "legalPerson": null,
  427. "registerDate": null,
  428. "registerAmount": null,
  429. "address": null,
  430. "partnershipList": [],
  431. "certificateList": [],
  432. "partnership": "空白",
  433. "pcList": [
  434. {
  435. "dataCode": "空白",
  436. "dataName": "全产业",
  437. "tagCode": null
  438. }
  439. ],
  440. "pcChangeList": [],
  441. "importDate": "2024-10-26 10:27:13",
  442. "createByDate": "2024-10-27 02:50:02",
  443. "sevenDayCreateTag": null,
  444. "linkSize": 0
  445. },
  446. {
  447. "id": "2018050910665685",
  448. "center": "长沙",
  449. "areaCode": "M4301",
  450. "areaName": "长沙小微",
  451. "city": null,
  452. "partScale": 0,
  453. "zbMoney": 0,
  454. "custName": "湘西佳瑞商贸有限公司点石店",
  455. "custCode": "8800276092",
  456. "officeAddr": "湘西土家族苗族自治州吉首市小溪桥路46号",
  457. "industryStr": null,
  458. "brandStr": null,
  459. "partUserCount": "0",
  460. "centerCode": "12403",
  461. "notAuthCenter": null,
  462. "cityCode": null,
  463. "bigChannelCode": "M",
  464. "bigChannelName": "直营渠道",
  465. "smallChannelCode": "HA001",
  466. "smallChannelName": "纯三专海尔成套专卖类",
  467. "mdmFlag": 1,
  468. "zhaobMoney": 0,
  469. "zhaobCount": 0,
  470. "signCount": 0,
  471. "partnershipDomainALL": null,
  472. "partnershipDomainPL011": null,
  473. "partnershipDomainPL005": null,
  474. "partnershipDomainPL002": null,
  475. "partnershipDomainPL001": null,
  476. "partnershipDomainSPL007": null,
  477. "partnershipDomainSPL006": null,
  478. "partnershipDomainPL003": null,
  479. "partnershipDomainPL007": null,
  480. "partnershipDomainPL006": null,
  481. "potentialList": [],
  482. "qzType": 0,
  483. "qzFlag": 0,
  484. "enterpriseId": null,
  485. "nowZhaobMoneyD": 0,
  486. "historyZhaobMoneyD": 0,
  487. "nowZhaobMoney": "0",
  488. "historyZhaobMoney": "0",
  489. "collaborationChanges": null,
  490. "collaborationChangesReduce": null,
  491. "partnerType": null,
  492. "partnerTypeCode": null,
  493. "oneYearZhongbD": 0,
  494. "historyZhongbD": 0,
  495. "oneYearZhongb": "0",
  496. "historyZhongb": "0",
  497. "shareUserCode": null,
  498. "shareUserName": null,
  499. "pcShareUserName": null,
  500. "legalPerson": null,
  501. "registerDate": null,
  502. "registerAmount": null,
  503. "address": null,
  504. "partnershipList": [],
  505. "certificateList": [],
  506. "partnership": "空白",
  507. "pcList": [
  508. {
  509. "dataCode": "空白",
  510. "dataName": "全产业",
  511. "tagCode": null
  512. }
  513. ],
  514. "pcChangeList": [],
  515. "importDate": "2018-05-09 16:59:43",
  516. "createByDate": "2023-11-23 18:47:55",
  517. "sevenDayCreateTag": null,
  518. "linkSize": 0
  519. },
  520. {
  521. "id": "2024082228415914",
  522. "center": "长沙",
  523. "areaCode": "M4301",
  524. "areaName": "长沙小微",
  525. "city": "邵阳市",
  526. "partScale": 0,
  527. "zbMoney": 0,
  528. "custName": "(押金户)邵阳市双清区永财电器有限公司",
  529. "custCode": "C200154654",
  530. "officeAddr": "湖南省邵阳市双清区兴隆街道宝庆商贸城A13#楼1单元0001016",
  531. "industryStr": null,
  532. "brandStr": null,
  533. "partUserCount": "0",
  534. "centerCode": "12403",
  535. "notAuthCenter": null,
  536. "cityCode": "430500000000",
  537. "bigChannelCode": "M",
  538. "bigChannelName": "直营渠道",
  539. "smallChannelCode": "HA001",
  540. "smallChannelName": "纯三专海尔成套专卖类",
  541. "mdmFlag": 1,
  542. "zhaobMoney": 0,
  543. "zhaobCount": 0,
  544. "signCount": 0,
  545. "partnershipDomainALL": null,
  546. "partnershipDomainPL011": null,
  547. "partnershipDomainPL005": null,
  548. "partnershipDomainPL002": null,
  549. "partnershipDomainPL001": null,
  550. "partnershipDomainSPL007": null,
  551. "partnershipDomainSPL006": null,
  552. "partnershipDomainPL003": null,
  553. "partnershipDomainPL007": null,
  554. "partnershipDomainPL006": null,
  555. "potentialList": [],
  556. "qzType": 0,
  557. "qzFlag": 0,
  558. "enterpriseId": null,
  559. "nowZhaobMoneyD": 0,
  560. "historyZhaobMoneyD": 0,
  561. "nowZhaobMoney": "0",
  562. "historyZhaobMoney": "0",
  563. "collaborationChanges": null,
  564. "collaborationChangesReduce": null,
  565. "partnerType": null,
  566. "partnerTypeCode": null,
  567. "oneYearZhongbD": 0,
  568. "historyZhongbD": 0,
  569. "oneYearZhongb": "0",
  570. "historyZhongb": "0",
  571. "shareUserCode": null,
  572. "shareUserName": null,
  573. "pcShareUserName": null,
  574. "legalPerson": null,
  575. "registerDate": null,
  576. "registerAmount": null,
  577. "address": null,
  578. "partnershipList": [],
  579. "certificateList": [],
  580. "partnership": "空白",
  581. "pcList": [
  582. {
  583. "dataCode": "空白",
  584. "dataName": "全产业",
  585. "tagCode": null
  586. }
  587. ],
  588. "pcChangeList": [],
  589. "importDate": "2024-08-22 16:50:19",
  590. "createByDate": "2024-08-23 02:50:03",
  591. "sevenDayCreateTag": null,
  592. "linkSize": 0
  593. },
  594. {
  595. "id": "2021121345651666",
  596. "center": "长沙",
  597. "areaCode": "M4301",
  598. "areaName": "长沙小微",
  599. "city": null,
  600. "partScale": 0,
  601. "zbMoney": 0,
  602. "custName": "(押金户)邵阳市美宸园商贸有限公司",
  603. "custCode": "C200148549",
  604. "officeAddr": "湖南省邵阳市双清区兴隆街道湘桂黔建材城5#市场3栋2楼",
  605. "industryStr": null,
  606. "brandStr": null,
  607. "partUserCount": "0",
  608. "centerCode": "12403",
  609. "notAuthCenter": null,
  610. "cityCode": null,
  611. "bigChannelCode": "M",
  612. "bigChannelName": "直营渠道",
  613. "smallChannelCode": "HA003",
  614. "smallChannelName": "纯三专海尔产品专卖类(电厨)",
  615. "mdmFlag": 1,
  616. "zhaobMoney": 0,
  617. "zhaobCount": 0,
  618. "signCount": 0,
  619. "partnershipDomainALL": null,
  620. "partnershipDomainPL011": null,
  621. "partnershipDomainPL005": null,
  622. "partnershipDomainPL002": null,
  623. "partnershipDomainPL001": null,
  624. "partnershipDomainSPL007": null,
  625. "partnershipDomainSPL006": null,
  626. "partnershipDomainPL003": null,
  627. "partnershipDomainPL007": null,
  628. "partnershipDomainPL006": null,
  629. "potentialList": [],
  630. "qzType": 0,
  631. "qzFlag": 0,
  632. "enterpriseId": null,
  633. "nowZhaobMoneyD": 0,
  634. "historyZhaobMoneyD": 0,
  635. "nowZhaobMoney": "0",
  636. "historyZhaobMoney": "0",
  637. "collaborationChanges": null,
  638. "collaborationChangesReduce": null,
  639. "partnerType": null,
  640. "partnerTypeCode": null,
  641. "oneYearZhongbD": 0,
  642. "historyZhongbD": 0,
  643. "oneYearZhongb": "0",
  644. "historyZhongb": "0",
  645. "shareUserCode": null,
  646. "shareUserName": null,
  647. "pcShareUserName": null,
  648. "legalPerson": null,
  649. "registerDate": null,
  650. "registerAmount": null,
  651. "address": null,
  652. "partnershipList": [],
  653. "certificateList": [],
  654. "partnership": "空白",
  655. "pcList": [
  656. {
  657. "dataCode": "空白",
  658. "dataName": "全产业",
  659. "tagCode": null
  660. }
  661. ],
  662. "pcChangeList": [],
  663. "importDate": "2021-12-13 00:00:00",
  664. "createByDate": "2023-11-23 18:40:48",
  665. "sevenDayCreateTag": null,
  666. "linkSize": 0
  667. },
  668. {
  669. "id": "2018110923343529",
  670. "center": "长沙",
  671. "areaCode": "M4301",
  672. "areaName": "长沙小微",
  673. "city": null,
  674. "partScale": 0,
  675. "zbMoney": 0,
  676. "custName": "湖南省和盛辉煌商贸有限公司(顺逛专户)",
  677. "custCode": "C200086715",
  678. "officeAddr": "湖南省长沙市芙蓉区湘湖街道望星巷56号C2栋301",
  679. "industryStr": null,
  680. "brandStr": null,
  681. "partUserCount": "0",
  682. "centerCode": "12403",
  683. "notAuthCenter": null,
  684. "cityCode": null,
  685. "bigChannelCode": "M",
  686. "bigChannelName": "直营渠道",
  687. "smallChannelCode": "HA016",
  688. "smallChannelName": "纯三专海尔三专全屋集成客户",
  689. "mdmFlag": 1,
  690. "zhaobMoney": 0,
  691. "zhaobCount": 0,
  692. "signCount": 0,
  693. "partnershipDomainALL": null,
  694. "partnershipDomainPL011": null,
  695. "partnershipDomainPL005": null,
  696. "partnershipDomainPL002": null,
  697. "partnershipDomainPL001": null,
  698. "partnershipDomainSPL007": null,
  699. "partnershipDomainSPL006": null,
  700. "partnershipDomainPL003": null,
  701. "partnershipDomainPL007": null,
  702. "partnershipDomainPL006": null,
  703. "potentialList": [],
  704. "qzType": 0,
  705. "qzFlag": 0,
  706. "enterpriseId": null,
  707. "nowZhaobMoneyD": 0,
  708. "historyZhaobMoneyD": 0,
  709. "nowZhaobMoney": "0",
  710. "historyZhaobMoney": "0",
  711. "collaborationChanges": null,
  712. "collaborationChangesReduce": null,
  713. "partnerType": null,
  714. "partnerTypeCode": null,
  715. "oneYearZhongbD": 0,
  716. "historyZhongbD": 0,
  717. "oneYearZhongb": "0",
  718. "historyZhongb": "0",
  719. "shareUserCode": null,
  720. "shareUserName": null,
  721. "pcShareUserName": null,
  722. "legalPerson": null,
  723. "registerDate": null,
  724. "registerAmount": null,
  725. "address": null,
  726. "partnershipList": [],
  727. "certificateList": [],
  728. "partnership": "空白",
  729. "pcList": [
  730. {
  731. "dataCode": "空白",
  732. "dataName": "全产业",
  733. "tagCode": null
  734. }
  735. ],
  736. "pcChangeList": [],
  737. "importDate": "2018-11-09 13:15:43",
  738. "createByDate": "2023-11-23 18:48:15",
  739. "sevenDayCreateTag": null,
  740. "linkSize": 0
  741. },
  742. {
  743. "id": "2008121982655798",
  744. "center": "长沙",
  745. "areaCode": "M4301",
  746. "areaName": "长沙小微",
  747. "city": "常德市",
  748. "partScale": 0,
  749. "zbMoney": 0,
  750. "custName": "安乡县世丰电器商贸有限责任公司",
  751. "custCode": "8800012843",
  752. "officeAddr": "湖南省常德市安乡县深柳镇深柳居委会洞庭大道中段北圆盘西南侧",
  753. "industryStr": null,
  754. "brandStr": null,
  755. "partUserCount": "0",
  756. "centerCode": "12403",
  757. "notAuthCenter": null,
  758. "cityCode": "430700000000",
  759. "bigChannelCode": "M",
  760. "bigChannelName": "直营渠道",
  761. "smallChannelCode": "HM002",
  762. "smallChannelName": "准三专海尔家电卖场类",
  763. "mdmFlag": 1,
  764. "zhaobMoney": 0,
  765. "zhaobCount": 0,
  766. "signCount": 0,
  767. "partnershipDomainALL": null,
  768. "partnershipDomainPL011": null,
  769. "partnershipDomainPL005": null,
  770. "partnershipDomainPL002": null,
  771. "partnershipDomainPL001": null,
  772. "partnershipDomainSPL007": null,
  773. "partnershipDomainSPL006": null,
  774. "partnershipDomainPL003": null,
  775. "partnershipDomainPL007": null,
  776. "partnershipDomainPL006": null,
  777. "potentialList": [],
  778. "qzType": 0,
  779. "qzFlag": 0,
  780. "enterpriseId": null,
  781. "nowZhaobMoneyD": 0,
  782. "historyZhaobMoneyD": 0,
  783. "nowZhaobMoney": "0",
  784. "historyZhaobMoney": "0",
  785. "collaborationChanges": null,
  786. "collaborationChangesReduce": null,
  787. "partnerType": null,
  788. "partnerTypeCode": null,
  789. "oneYearZhongbD": 0,
  790. "historyZhongbD": 0,
  791. "oneYearZhongb": "0",
  792. "historyZhongb": "0",
  793. "shareUserCode": null,
  794. "shareUserName": null,
  795. "pcShareUserName": null,
  796. "legalPerson": null,
  797. "registerDate": null,
  798. "registerAmount": null,
  799. "address": null,
  800. "partnershipList": [],
  801. "certificateList": [],
  802. "partnership": "空白",
  803. "pcList": [
  804. {
  805. "dataCode": "空白",
  806. "dataName": "全产业",
  807. "tagCode": null
  808. }
  809. ],
  810. "pcChangeList": [],
  811. "importDate": "2008-12-19 00:00:00",
  812. "createByDate": "2023-12-05 02:56:27",
  813. "sevenDayCreateTag": null,
  814. "linkSize": 0
  815. },
  816. {
  817. "id": "2024031209534707",
  818. "center": "长沙",
  819. "areaCode": "M4301",
  820. "areaName": "长沙小微",
  821. "city": null,
  822. "partScale": 0,
  823. "zbMoney": 0,
  824. "custName": "(金融备货空调户)长沙市和美电器贸易有限公司",
  825. "custCode": "C200094658",
  826. "officeAddr": "长沙市望城区月亮岛街道银星村湘江重建地F02栋四楼401",
  827. "industryStr": null,
  828. "brandStr": null,
  829. "partUserCount": "0",
  830. "centerCode": "12403",
  831. "notAuthCenter": null,
  832. "cityCode": "",
  833. "bigChannelCode": "M",
  834. "bigChannelName": "直营渠道",
  835. "smallChannelCode": "HA001",
  836. "smallChannelName": "纯三专海尔成套专卖类",
  837. "mdmFlag": 1,
  838. "zhaobMoney": 0,
  839. "zhaobCount": 0,
  840. "signCount": 0,
  841. "partnershipDomainALL": null,
  842. "partnershipDomainPL011": null,
  843. "partnershipDomainPL005": null,
  844. "partnershipDomainPL002": null,
  845. "partnershipDomainPL001": null,
  846. "partnershipDomainSPL007": null,
  847. "partnershipDomainSPL006": null,
  848. "partnershipDomainPL003": null,
  849. "partnershipDomainPL007": null,
  850. "partnershipDomainPL006": null,
  851. "potentialList": [],
  852. "qzType": 0,
  853. "qzFlag": 0,
  854. "enterpriseId": null,
  855. "nowZhaobMoneyD": 0,
  856. "historyZhaobMoneyD": 0,
  857. "nowZhaobMoney": "0",
  858. "historyZhaobMoney": "0",
  859. "collaborationChanges": null,
  860. "collaborationChangesReduce": null,
  861. "partnerType": null,
  862. "partnerTypeCode": null,
  863. "oneYearZhongbD": 0,
  864. "historyZhongbD": 0,
  865. "oneYearZhongb": "0",
  866. "historyZhongb": "0",
  867. "shareUserCode": null,
  868. "shareUserName": null,
  869. "pcShareUserName": null,
  870. "legalPerson": null,
  871. "registerDate": null,
  872. "registerAmount": null,
  873. "address": null,
  874. "partnershipList": [],
  875. "certificateList": [],
  876. "partnership": "空白",
  877. "pcList": [
  878. {
  879. "dataCode": "空白",
  880. "dataName": "全产业",
  881. "tagCode": null
  882. }
  883. ],
  884. "pcChangeList": [],
  885. "importDate": "2024-03-12 00:00:00",
  886. "createByDate": "2024-03-13 02:50:04",
  887. "sevenDayCreateTag": null,
  888. "linkSize": 0
  889. },
  890. {
  891. "id": "2018110923334878",
  892. "center": "长沙",
  893. "areaCode": "M4301",
  894. "areaName": "长沙小微",
  895. "city": null,
  896. "partScale": 0,
  897. "zbMoney": 0,
  898. "custName": "岳阳市腾峰电器有限公司(顺逛专户)",
  899. "custCode": "C200082461",
  900. "officeAddr": "建湘路天伦城",
  901. "industryStr": null,
  902. "brandStr": null,
  903. "partUserCount": "0",
  904. "centerCode": "12403",
  905. "notAuthCenter": null,
  906. "cityCode": null,
  907. "bigChannelCode": "M",
  908. "bigChannelName": "直营渠道",
  909. "smallChannelCode": "HA002",
  910. "smallChannelName": "纯三专海尔产品专卖类(空调)",
  911. "mdmFlag": 1,
  912. "zhaobMoney": 0,
  913. "zhaobCount": 0,
  914. "signCount": 0,
  915. "partnershipDomainALL": null,
  916. "partnershipDomainPL011": null,
  917. "partnershipDomainPL005": null,
  918. "partnershipDomainPL002": null,
  919. "partnershipDomainPL001": null,
  920. "partnershipDomainSPL007": null,
  921. "partnershipDomainSPL006": null,
  922. "partnershipDomainPL003": null,
  923. "partnershipDomainPL007": null,
  924. "partnershipDomainPL006": null,
  925. "potentialList": [],
  926. "qzType": 0,
  927. "qzFlag": 0,
  928. "enterpriseId": null,
  929. "nowZhaobMoneyD": 0,
  930. "historyZhaobMoneyD": 0,
  931. "nowZhaobMoney": "0",
  932. "historyZhaobMoney": "0",
  933. "collaborationChanges": null,
  934. "collaborationChangesReduce": null,
  935. "partnerType": null,
  936. "partnerTypeCode": null,
  937. "oneYearZhongbD": 0,
  938. "historyZhongbD": 0,
  939. "oneYearZhongb": "0",
  940. "historyZhongb": "0",
  941. "shareUserCode": null,
  942. "shareUserName": null,
  943. "pcShareUserName": null,
  944. "legalPerson": null,
  945. "registerDate": null,
  946. "registerAmount": null,
  947. "address": null,
  948. "partnershipList": [],
  949. "certificateList": [],
  950. "partnership": "空白",
  951. "pcList": [
  952. {
  953. "dataCode": "空白",
  954. "dataName": "全产业",
  955. "tagCode": null
  956. }
  957. ],
  958. "pcChangeList": [],
  959. "importDate": "2018-11-09 13:15:09",
  960. "createByDate": "2023-11-23 18:48:27",
  961. "sevenDayCreateTag": null,
  962. "linkSize": 0
  963. },
  964. {
  965. "id": "2025041179438916",
  966. "center": "长沙",
  967. "areaCode": "M4301",
  968. "areaName": "长沙小微",
  969. "city": "长沙市",
  970. "partScale": 0,
  971. "zbMoney": 0,
  972. "custName": "湖南省源立贸易有限公司居无忧装饰水联网店中店",
  973. "custCode": "8800626665",
  974. "officeAddr": "长沙市浏阳市菊花石路碧桂园领誉二期七街2栋101号",
  975. "industryStr": null,
  976. "brandStr": null,
  977. "partUserCount": "0",
  978. "centerCode": "12403",
  979. "notAuthCenter": null,
  980. "cityCode": "430100000000",
  981. "bigChannelCode": "M",
  982. "bigChannelName": "直营渠道",
  983. "smallChannelCode": "HA011",
  984. "smallChannelName": "纯三专海尔产品专卖类(净水+热水器)",
  985. "mdmFlag": 1,
  986. "zhaobMoney": 0,
  987. "zhaobCount": 0,
  988. "signCount": 0,
  989. "partnershipDomainALL": null,
  990. "partnershipDomainPL011": null,
  991. "partnershipDomainPL005": null,
  992. "partnershipDomainPL002": null,
  993. "partnershipDomainPL001": null,
  994. "partnershipDomainSPL007": null,
  995. "partnershipDomainSPL006": null,
  996. "partnershipDomainPL003": null,
  997. "partnershipDomainPL007": null,
  998. "partnershipDomainPL006": null,
  999. "potentialList": [],
  1000. "qzType": 0,
  1001. "qzFlag": 0,
  1002. "enterpriseId": null,
  1003. "nowZhaobMoneyD": 0,
  1004. "historyZhaobMoneyD": 0,
  1005. "nowZhaobMoney": "0",
  1006. "historyZhaobMoney": "0",
  1007. "collaborationChanges": null,
  1008. "collaborationChangesReduce": null,
  1009. "partnerType": null,
  1010. "partnerTypeCode": null,
  1011. "oneYearZhongbD": 0,
  1012. "historyZhongbD": 0,
  1013. "oneYearZhongb": "0",
  1014. "historyZhongb": "0",
  1015. "shareUserCode": null,
  1016. "shareUserName": null,
  1017. "pcShareUserName": null,
  1018. "legalPerson": null,
  1019. "registerDate": null,
  1020. "registerAmount": null,
  1021. "address": null,
  1022. "partnershipList": [],
  1023. "certificateList": [],
  1024. "partnership": "空白",
  1025. "pcList": [
  1026. {
  1027. "dataCode": "空白",
  1028. "dataName": "全产业",
  1029. "tagCode": null
  1030. }
  1031. ],
  1032. "pcChangeList": [],
  1033. "importDate": "2025-04-11 16:23:56",
  1034. "createByDate": "2025-04-12 02:50:01",
  1035. "sevenDayCreateTag": null,
  1036. "linkSize": 0
  1037. },
  1038. {
  1039. "id": "2010112565905053",
  1040. "center": "长沙",
  1041. "areaCode": "M4301",
  1042. "areaName": "长沙小微",
  1043. "city": "长沙市",
  1044. "partScale": 13.1,
  1045. "zbMoney": 0,
  1046. "custName": "长沙市大川机电工程有限公司",
  1047. "custCode": "8800106014",
  1048. "officeAddr": "长沙市雨花区劳动东路299号鑫天鑫城门面104号",
  1049. "industryStr": "商用空调(1)",
  1050. "brandStr": "海尔",
  1051. "partUserCount": "1",
  1052. "centerCode": "12403",
  1053. "notAuthCenter": null,
  1054. "cityCode": "430100000000",
  1055. "bigChannelCode": "M",
  1056. "bigChannelName": "直营渠道",
  1057. "smallChannelCode": "HA007",
  1058. "smallChannelName": "纯三专工程类",
  1059. "mdmFlag": 1,
  1060. "zhaobMoney": 0,
  1061. "zhaobCount": 0,
  1062. "signCount": 6,
  1063. "partnershipDomainALL": null,
  1064. "partnershipDomainPL011": null,
  1065. "partnershipDomainPL005": null,
  1066. "partnershipDomainPL002": null,
  1067. "partnershipDomainPL001": null,
  1068. "partnershipDomainSPL007": null,
  1069. "partnershipDomainSPL006": null,
  1070. "partnershipDomainPL003": null,
  1071. "partnershipDomainPL007": null,
  1072. "partnershipDomainPL006": null,
  1073. "potentialList": [],
  1074. "qzType": 0,
  1075. "qzFlag": 0,
  1076. "enterpriseId": null,
  1077. "nowZhaobMoneyD": 0,
  1078. "historyZhaobMoneyD": 13,
  1079. "nowZhaobMoney": "0",
  1080. "historyZhaobMoney": "13",
  1081. "collaborationChanges": null,
  1082. "collaborationChangesReduce": null,
  1083. "partnerType": "企业",
  1084. "partnerTypeCode": "91",
  1085. "oneYearZhongbD": 0,
  1086. "historyZhongbD": 0,
  1087. "oneYearZhongb": "0",
  1088. "historyZhongb": "0",
  1089. "shareUserCode": null,
  1090. "shareUserName": null,
  1091. "pcShareUserName": null,
  1092. "legalPerson": null,
  1093. "registerDate": null,
  1094. "registerAmount": null,
  1095. "address": null,
  1096. "partnershipList": [],
  1097. "certificateList": [],
  1098. "partnership": "空白",
  1099. "pcList": [
  1100. {
  1101. "dataCode": "空白",
  1102. "dataName": "全产业",
  1103. "tagCode": null
  1104. }
  1105. ],
  1106. "pcChangeList": [],
  1107. "importDate": "2010-11-25 00:00:00",
  1108. "createByDate": "2023-11-23 18:46:03",
  1109. "sevenDayCreateTag": null,
  1110. "linkSize": 0
  1111. },
  1112. {
  1113. "id": "2012051687081791",
  1114. "center": "长沙",
  1115. "areaCode": "M4301",
  1116. "areaName": "长沙小微",
  1117. "city": null,
  1118. "partScale": 0,
  1119. "zbMoney": 0,
  1120. "custName": "(押金户)宁乡县中南电器贸易有限公司",
  1121. "custCode": "C200106949",
  1122. "officeAddr": "宁乡县玉潭镇人民南路8号",
  1123. "industryStr": null,
  1124. "brandStr": null,
  1125. "partUserCount": "0",
  1126. "centerCode": "12403",
  1127. "notAuthCenter": null,
  1128. "cityCode": "",
  1129. "bigChannelCode": "M",
  1130. "bigChannelName": "直营渠道",
  1131. "smallChannelCode": "HM002",
  1132. "smallChannelName": "准三专海尔家电卖场类",
  1133. "mdmFlag": 1,
  1134. "zhaobMoney": 0,
  1135. "zhaobCount": 0,
  1136. "signCount": 0,
  1137. "partnershipDomainALL": null,
  1138. "partnershipDomainPL011": null,
  1139. "partnershipDomainPL005": null,
  1140. "partnershipDomainPL002": null,
  1141. "partnershipDomainPL001": null,
  1142. "partnershipDomainSPL007": null,
  1143. "partnershipDomainSPL006": null,
  1144. "partnershipDomainPL003": null,
  1145. "partnershipDomainPL007": null,
  1146. "partnershipDomainPL006": null,
  1147. "potentialList": [],
  1148. "qzType": 0,
  1149. "qzFlag": 0,
  1150. "enterpriseId": null,
  1151. "nowZhaobMoneyD": 0,
  1152. "historyZhaobMoneyD": 0,
  1153. "nowZhaobMoney": "0",
  1154. "historyZhaobMoney": "0",
  1155. "collaborationChanges": null,
  1156. "collaborationChangesReduce": null,
  1157. "partnerType": null,
  1158. "partnerTypeCode": null,
  1159. "oneYearZhongbD": 0,
  1160. "historyZhongbD": 0,
  1161. "oneYearZhongb": "0",
  1162. "historyZhongb": "0",
  1163. "shareUserCode": null,
  1164. "shareUserName": null,
  1165. "pcShareUserName": null,
  1166. "legalPerson": null,
  1167. "registerDate": null,
  1168. "registerAmount": null,
  1169. "address": null,
  1170. "partnershipList": [],
  1171. "certificateList": [],
  1172. "partnership": "空白",
  1173. "pcList": [
  1174. {
  1175. "dataCode": "空白",
  1176. "dataName": "全产业",
  1177. "tagCode": null
  1178. }
  1179. ],
  1180. "pcChangeList": [],
  1181. "importDate": "2012-05-16 00:00:00",
  1182. "createByDate": "2023-11-23 18:45:34",
  1183. "sevenDayCreateTag": null,
  1184. "linkSize": 0
  1185. },
  1186. {
  1187. "id": "2018110923350624",
  1188. "center": "长沙",
  1189. "areaCode": "M4301",
  1190. "areaName": "长沙小微",
  1191. "city": null,
  1192. "partScale": 0,
  1193. "zbMoney": 0,
  1194. "custName": "桂阳县和美电器有限责任公司(顺逛专户)",
  1195. "custCode": "C200090245",
  1196. "officeAddr": "桂阳县鹿峰街道蔡伦中路",
  1197. "industryStr": null,
  1198. "brandStr": null,
  1199. "partUserCount": "0",
  1200. "centerCode": "12403",
  1201. "notAuthCenter": null,
  1202. "cityCode": null,
  1203. "bigChannelCode": "M",
  1204. "bigChannelName": "直营渠道",
  1205. "smallChannelCode": "HM002",
  1206. "smallChannelName": "准三专海尔家电卖场类",
  1207. "mdmFlag": 1,
  1208. "zhaobMoney": 0,
  1209. "zhaobCount": 0,
  1210. "signCount": 0,
  1211. "partnershipDomainALL": null,
  1212. "partnershipDomainPL011": null,
  1213. "partnershipDomainPL005": null,
  1214. "partnershipDomainPL002": null,
  1215. "partnershipDomainPL001": null,
  1216. "partnershipDomainSPL007": null,
  1217. "partnershipDomainSPL006": null,
  1218. "partnershipDomainPL003": null,
  1219. "partnershipDomainPL007": null,
  1220. "partnershipDomainPL006": null,
  1221. "potentialList": [],
  1222. "qzType": 0,
  1223. "qzFlag": 0,
  1224. "enterpriseId": null,
  1225. "nowZhaobMoneyD": 0,
  1226. "historyZhaobMoneyD": 0,
  1227. "nowZhaobMoney": "0",
  1228. "historyZhaobMoney": "0",
  1229. "collaborationChanges": null,
  1230. "collaborationChangesReduce": null,
  1231. "partnerType": null,
  1232. "partnerTypeCode": null,
  1233. "oneYearZhongbD": 0,
  1234. "historyZhongbD": 0,
  1235. "oneYearZhongb": "0",
  1236. "historyZhongb": "0",
  1237. "shareUserCode": null,
  1238. "shareUserName": null,
  1239. "pcShareUserName": null,
  1240. "legalPerson": null,
  1241. "registerDate": null,
  1242. "registerAmount": null,
  1243. "address": null,
  1244. "partnershipList": [],
  1245. "certificateList": [],
  1246. "partnership": "空白",
  1247. "pcList": [
  1248. {
  1249. "dataCode": "空白",
  1250. "dataName": "全产业",
  1251. "tagCode": null
  1252. }
  1253. ],
  1254. "pcChangeList": [],
  1255. "importDate": "2018-11-09 13:16:08",
  1256. "createByDate": "2023-11-23 18:48:09",
  1257. "sevenDayCreateTag": null,
  1258. "linkSize": 0
  1259. },
  1260. {
  1261. "id": "2015102035692907",
  1262. "center": "长沙",
  1263. "areaCode": "M4301",
  1264. "areaName": "长沙小微",
  1265. "city": "郴州市",
  1266. "partScale": 9.35,
  1267. "zbMoney": 0,
  1268. "custName": "嘉禾县华君电器销售有限公司",
  1269. "custCode": "8800200074",
  1270. "officeAddr": "湖南省郴州市嘉禾县珠泉镇建设路1号",
  1271. "industryStr": null,
  1272. "brandStr": null,
  1273. "partUserCount": "0",
  1274. "centerCode": "12403",
  1275. "notAuthCenter": null,
  1276. "cityCode": "431000000000",
  1277. "bigChannelCode": "M",
  1278. "bigChannelName": "直营渠道",
  1279. "smallChannelCode": "HM002",
  1280. "smallChannelName": "准三专海尔家电卖场类",
  1281. "mdmFlag": 1,
  1282. "zhaobMoney": 3.04,
  1283. "zhaobCount": 1,
  1284. "signCount": 0,
  1285. "partnershipDomainALL": null,
  1286. "partnershipDomainPL011": null,
  1287. "partnershipDomainPL005": null,
  1288. "partnershipDomainPL002": null,
  1289. "partnershipDomainPL001": null,
  1290. "partnershipDomainSPL007": null,
  1291. "partnershipDomainSPL006": null,
  1292. "partnershipDomainPL003": null,
  1293. "partnershipDomainPL007": null,
  1294. "partnershipDomainPL006": null,
  1295. "potentialList": [],
  1296. "qzType": 0,
  1297. "qzFlag": 0,
  1298. "enterpriseId": null,
  1299. "nowZhaobMoneyD": 0,
  1300. "historyZhaobMoneyD": 0,
  1301. "nowZhaobMoney": "0",
  1302. "historyZhaobMoney": "0",
  1303. "collaborationChanges": null,
  1304. "collaborationChangesReduce": null,
  1305. "partnerType": null,
  1306. "partnerTypeCode": null,
  1307. "oneYearZhongbD": 0,
  1308. "historyZhongbD": 3,
  1309. "oneYearZhongb": "0",
  1310. "historyZhongb": "3",
  1311. "shareUserCode": null,
  1312. "shareUserName": null,
  1313. "pcShareUserName": null,
  1314. "legalPerson": null,
  1315. "registerDate": null,
  1316. "registerAmount": null,
  1317. "address": null,
  1318. "partnershipList": [],
  1319. "certificateList": [],
  1320. "partnership": "空白",
  1321. "pcList": [
  1322. {
  1323. "dataCode": "空白",
  1324. "dataName": "全产业",
  1325. "tagCode": null
  1326. }
  1327. ],
  1328. "pcChangeList": [],
  1329. "importDate": "2015-10-20 18:10:06",
  1330. "createByDate": "2023-11-23 18:44:21",
  1331. "sevenDayCreateTag": null,
  1332. "linkSize": 0
  1333. },
  1334. {
  1335. "id": "2012040956788982",
  1336. "center": "长沙",
  1337. "areaCode": "M4301",
  1338. "areaName": "长沙小微",
  1339. "city": null,
  1340. "partScale": 0,
  1341. "zbMoney": 0,
  1342. "custName": "(工程押金户)新田朝阳电器有限责任公司",
  1343. "custCode": "C200056992",
  1344. "officeAddr": "新田县龙泉镇新华南路14号",
  1345. "industryStr": null,
  1346. "brandStr": null,
  1347. "partUserCount": "0",
  1348. "centerCode": "12403",
  1349. "notAuthCenter": null,
  1350. "cityCode": null,
  1351. "bigChannelCode": "M",
  1352. "bigChannelName": "直营渠道",
  1353. "smallChannelCode": "HM002",
  1354. "smallChannelName": "准三专海尔家电卖场类",
  1355. "mdmFlag": 1,
  1356. "zhaobMoney": 0,
  1357. "zhaobCount": 0,
  1358. "signCount": 0,
  1359. "partnershipDomainALL": null,
  1360. "partnershipDomainPL011": null,
  1361. "partnershipDomainPL005": null,
  1362. "partnershipDomainPL002": null,
  1363. "partnershipDomainPL001": null,
  1364. "partnershipDomainSPL007": null,
  1365. "partnershipDomainSPL006": null,
  1366. "partnershipDomainPL003": null,
  1367. "partnershipDomainPL007": null,
  1368. "partnershipDomainPL006": null,
  1369. "potentialList": [],
  1370. "qzType": 0,
  1371. "qzFlag": 0,
  1372. "enterpriseId": null,
  1373. "nowZhaobMoneyD": 0,
  1374. "historyZhaobMoneyD": 0,
  1375. "nowZhaobMoney": "0",
  1376. "historyZhaobMoney": "0",
  1377. "collaborationChanges": null,
  1378. "collaborationChangesReduce": null,
  1379. "partnerType": null,
  1380. "partnerTypeCode": null,
  1381. "oneYearZhongbD": 0,
  1382. "historyZhongbD": 0,
  1383. "oneYearZhongb": "0",
  1384. "historyZhongb": "0",
  1385. "shareUserCode": null,
  1386. "shareUserName": null,
  1387. "pcShareUserName": null,
  1388. "legalPerson": null,
  1389. "registerDate": null,
  1390. "registerAmount": null,
  1391. "address": null,
  1392. "partnershipList": [],
  1393. "certificateList": [],
  1394. "partnership": "空白",
  1395. "pcList": [
  1396. {
  1397. "dataCode": "空白",
  1398. "dataName": "全产业",
  1399. "tagCode": null
  1400. }
  1401. ],
  1402. "pcChangeList": [],
  1403. "importDate": "2012-04-09 00:00:00",
  1404. "createByDate": "2023-11-23 18:45:43",
  1405. "sevenDayCreateTag": null,
  1406. "linkSize": 0
  1407. },
  1408. {
  1409. "id": "2018110923350722",
  1410. "center": "长沙",
  1411. "areaCode": "M4301",
  1412. "areaName": "长沙小微",
  1413. "city": null,
  1414. "partScale": 0,
  1415. "zbMoney": 0,
  1416. "custName": "临武县阳光家用电器销售有限公司(顺逛专户)",
  1417. "custCode": "C200090294",
  1418. "officeAddr": "郴州市临武县舜峰镇南北街27号门面",
  1419. "industryStr": null,
  1420. "brandStr": null,
  1421. "partUserCount": "0",
  1422. "centerCode": "12403",
  1423. "notAuthCenter": null,
  1424. "cityCode": null,
  1425. "bigChannelCode": "M",
  1426. "bigChannelName": "直营渠道",
  1427. "smallChannelCode": "HM002",
  1428. "smallChannelName": "准三专海尔家电卖场类",
  1429. "mdmFlag": 1,
  1430. "zhaobMoney": 0,
  1431. "zhaobCount": 0,
  1432. "signCount": 0,
  1433. "partnershipDomainALL": null,
  1434. "partnershipDomainPL011": null,
  1435. "partnershipDomainPL005": null,
  1436. "partnershipDomainPL002": null,
  1437. "partnershipDomainPL001": null,
  1438. "partnershipDomainSPL007": null,
  1439. "partnershipDomainSPL006": null,
  1440. "partnershipDomainPL003": null,
  1441. "partnershipDomainPL007": null,
  1442. "partnershipDomainPL006": null,
  1443. "potentialList": [],
  1444. "qzType": 0,
  1445. "qzFlag": 0,
  1446. "enterpriseId": null,
  1447. "nowZhaobMoneyD": 0,
  1448. "historyZhaobMoneyD": 0,
  1449. "nowZhaobMoney": "0",
  1450. "historyZhaobMoney": "0",
  1451. "collaborationChanges": null,
  1452. "collaborationChangesReduce": null,
  1453. "partnerType": null,
  1454. "partnerTypeCode": null,
  1455. "oneYearZhongbD": 0,
  1456. "historyZhongbD": 0,
  1457. "oneYearZhongb": "0",
  1458. "historyZhongb": "0",
  1459. "shareUserCode": null,
  1460. "shareUserName": null,
  1461. "pcShareUserName": null,
  1462. "legalPerson": null,
  1463. "registerDate": null,
  1464. "registerAmount": null,
  1465. "address": null,
  1466. "partnershipList": [],
  1467. "certificateList": [],
  1468. "partnership": "空白",
  1469. "pcList": [
  1470. {
  1471. "dataCode": "空白",
  1472. "dataName": "全产业",
  1473. "tagCode": null
  1474. }
  1475. ],
  1476. "pcChangeList": [],
  1477. "importDate": "2018-11-09 13:16:09",
  1478. "createByDate": "2023-11-23 18:48:07",
  1479. "sevenDayCreateTag": null,
  1480. "linkSize": 0
  1481. },
  1482. {
  1483. "id": "2018110923354289",
  1484. "center": "长沙",
  1485. "areaCode": "M4301",
  1486. "areaName": "长沙小微",
  1487. "city": null,
  1488. "partScale": 0,
  1489. "zbMoney": 0,
  1490. "custName": "邵阳县云阳商务有限公司(顺逛专户)",
  1491. "custCode": "C200092072",
  1492. "officeAddr": "邵阳县大木山凤凰新嘉园门面",
  1493. "industryStr": null,
  1494. "brandStr": null,
  1495. "partUserCount": "0",
  1496. "centerCode": "12403",
  1497. "notAuthCenter": null,
  1498. "cityCode": null,
  1499. "bigChannelCode": "M",
  1500. "bigChannelName": "直营渠道",
  1501. "smallChannelCode": "HM002",
  1502. "smallChannelName": "准三专海尔家电卖场类",
  1503. "mdmFlag": 1,
  1504. "zhaobMoney": 0,
  1505. "zhaobCount": 0,
  1506. "signCount": 0,
  1507. "partnershipDomainALL": null,
  1508. "partnershipDomainPL011": null,
  1509. "partnershipDomainPL005": null,
  1510. "partnershipDomainPL002": null,
  1511. "partnershipDomainPL001": null,
  1512. "partnershipDomainSPL007": null,
  1513. "partnershipDomainSPL006": null,
  1514. "partnershipDomainPL003": null,
  1515. "partnershipDomainPL007": null,
  1516. "partnershipDomainPL006": null,
  1517. "potentialList": [],
  1518. "qzType": 0,
  1519. "qzFlag": 0,
  1520. "enterpriseId": null,
  1521. "nowZhaobMoneyD": 0,
  1522. "historyZhaobMoneyD": 0,
  1523. "nowZhaobMoney": "0",
  1524. "historyZhaobMoney": "0",
  1525. "collaborationChanges": null,
  1526. "collaborationChangesReduce": null,
  1527. "partnerType": null,
  1528. "partnerTypeCode": null,
  1529. "oneYearZhongbD": 0,
  1530. "historyZhongbD": 0,
  1531. "oneYearZhongb": "0",
  1532. "historyZhongb": "0",
  1533. "shareUserCode": null,
  1534. "shareUserName": null,
  1535. "pcShareUserName": null,
  1536. "legalPerson": null,
  1537. "registerDate": null,
  1538. "registerAmount": null,
  1539. "address": null,
  1540. "partnershipList": [],
  1541. "certificateList": [],
  1542. "partnership": "空白",
  1543. "pcList": [
  1544. {
  1545. "dataCode": "空白",
  1546. "dataName": "全产业",
  1547. "tagCode": null
  1548. }
  1549. ],
  1550. "pcChangeList": [],
  1551. "importDate": "2018-11-09 13:16:22",
  1552. "createByDate": "2023-11-23 18:48:04",
  1553. "sevenDayCreateTag": null,
  1554. "linkSize": 0
  1555. },
  1556. {
  1557. "id": "2024090845307447",
  1558. "center": "长沙",
  1559. "areaCode": "M4301",
  1560. "areaName": "长沙小微",
  1561. "city": "邵阳市",
  1562. "partScale": 0,
  1563. "zbMoney": 0,
  1564. "custName": "(押金户)武冈市恒永湘贸易有限公司",
  1565. "custCode": "C200154793",
  1566. "officeAddr": "湖南省邵阳市武冈市迎春亭街道新东路以北方家岭路以西1002室",
  1567. "industryStr": null,
  1568. "brandStr": null,
  1569. "partUserCount": "0",
  1570. "centerCode": "12403",
  1571. "notAuthCenter": null,
  1572. "cityCode": "430500000000",
  1573. "bigChannelCode": "M",
  1574. "bigChannelName": "直营渠道",
  1575. "smallChannelCode": "HA001",
  1576. "smallChannelName": "纯三专海尔成套专卖类",
  1577. "mdmFlag": 1,
  1578. "zhaobMoney": 0,
  1579. "zhaobCount": 0,
  1580. "signCount": 0,
  1581. "partnershipDomainALL": null,
  1582. "partnershipDomainPL011": null,
  1583. "partnershipDomainPL005": null,
  1584. "partnershipDomainPL002": null,
  1585. "partnershipDomainPL001": null,
  1586. "partnershipDomainSPL007": null,
  1587. "partnershipDomainSPL006": null,
  1588. "partnershipDomainPL003": null,
  1589. "partnershipDomainPL007": null,
  1590. "partnershipDomainPL006": null,
  1591. "potentialList": [],
  1592. "qzType": 0,
  1593. "qzFlag": 0,
  1594. "enterpriseId": null,
  1595. "nowZhaobMoneyD": 0,
  1596. "historyZhaobMoneyD": 0,
  1597. "nowZhaobMoney": "0",
  1598. "historyZhaobMoney": "0",
  1599. "collaborationChanges": null,
  1600. "collaborationChangesReduce": null,
  1601. "partnerType": null,
  1602. "partnerTypeCode": null,
  1603. "oneYearZhongbD": 0,
  1604. "historyZhongbD": 0,
  1605. "oneYearZhongb": "0",
  1606. "historyZhongb": "0",
  1607. "shareUserCode": null,
  1608. "shareUserName": null,
  1609. "pcShareUserName": null,
  1610. "legalPerson": null,
  1611. "registerDate": null,
  1612. "registerAmount": null,
  1613. "address": null,
  1614. "partnershipList": [],
  1615. "certificateList": [],
  1616. "partnership": "空白",
  1617. "pcList": [
  1618. {
  1619. "dataCode": "空白",
  1620. "dataName": "全产业",
  1621. "tagCode": null
  1622. }
  1623. ],
  1624. "pcChangeList": [],
  1625. "importDate": "2024-09-08 10:17:49",
  1626. "createByDate": "2024-09-09 02:50:03",
  1627. "sevenDayCreateTag": null,
  1628. "linkSize": 0
  1629. },
  1630. {
  1631. "id": "2019021412333462",
  1632. "center": "长沙",
  1633. "areaCode": "M4301",
  1634. "areaName": "长沙小微",
  1635. "city": null,
  1636. "partScale": 0,
  1637. "zbMoney": 0,
  1638. "custName": "(押金户)湖南上智电子商务有限公司",
  1639. "custCode": "C200135111",
  1640. "officeAddr": "常德市武陵区白马湖街道办事处长家山社区柳叶大道3031号(常德市科学技术管临展厅2号)",
  1641. "industryStr": null,
  1642. "brandStr": null,
  1643. "partUserCount": "0",
  1644. "centerCode": "12403",
  1645. "notAuthCenter": null,
  1646. "cityCode": "",
  1647. "bigChannelCode": "M",
  1648. "bigChannelName": "直营渠道",
  1649. "smallChannelCode": "HA016",
  1650. "smallChannelName": "纯三专海尔三专全屋集成客户",
  1651. "mdmFlag": 1,
  1652. "zhaobMoney": 0,
  1653. "zhaobCount": 0,
  1654. "signCount": 0,
  1655. "partnershipDomainALL": null,
  1656. "partnershipDomainPL011": null,
  1657. "partnershipDomainPL005": null,
  1658. "partnershipDomainPL002": null,
  1659. "partnershipDomainPL001": null,
  1660. "partnershipDomainSPL007": null,
  1661. "partnershipDomainSPL006": null,
  1662. "partnershipDomainPL003": null,
  1663. "partnershipDomainPL007": null,
  1664. "partnershipDomainPL006": null,
  1665. "potentialList": [],
  1666. "qzType": 0,
  1667. "qzFlag": 0,
  1668. "enterpriseId": null,
  1669. "nowZhaobMoneyD": 0,
  1670. "historyZhaobMoneyD": 0,
  1671. "nowZhaobMoney": "0",
  1672. "historyZhaobMoney": "0",
  1673. "collaborationChanges": null,
  1674. "collaborationChangesReduce": null,
  1675. "partnerType": null,
  1676. "partnerTypeCode": null,
  1677. "oneYearZhongbD": 0,
  1678. "historyZhongbD": 0,
  1679. "oneYearZhongb": "0",
  1680. "historyZhongb": "0",
  1681. "shareUserCode": null,
  1682. "shareUserName": null,
  1683. "pcShareUserName": null,
  1684. "legalPerson": null,
  1685. "registerDate": null,
  1686. "registerAmount": null,
  1687. "address": null,
  1688. "partnershipList": [],
  1689. "certificateList": [],
  1690. "partnership": "空白",
  1691. "pcList": [
  1692. {
  1693. "dataCode": "空白",
  1694. "dataName": "全产业",
  1695. "tagCode": null
  1696. }
  1697. ],
  1698. "pcChangeList": [],
  1699. "importDate": "2019-02-14 17:44:45",
  1700. "createByDate": "2025-06-14 03:13:19",
  1701. "sevenDayCreateTag": null,
  1702. "linkSize": 0
  1703. },
  1704. {
  1705. "id": "2019062531809366",
  1706. "center": "长沙",
  1707. "areaCode": "M4301",
  1708. "areaName": "长沙小微",
  1709. "city": "娄底市",
  1710. "partScale": 220.38,
  1711. "zbMoney": 0,
  1712. "custName": "涟源市喜来宝商贸有限公司",
  1713. "custCode": "8800330936",
  1714. "officeAddr": "湖南省娄底市涟源市蓝田街道光文村文艺北路黄金海岸",
  1715. "industryStr": "洗衣机(1)、家用空调(1)、冰冷(1)",
  1716. "brandStr": "卡萨帝、海尔",
  1717. "partUserCount": "6",
  1718. "centerCode": "12403",
  1719. "notAuthCenter": null,
  1720. "cityCode": "431300000000",
  1721. "bigChannelCode": "M",
  1722. "bigChannelName": "直营渠道",
  1723. "smallChannelCode": "HA001",
  1724. "smallChannelName": "纯三专海尔成套专卖类",
  1725. "mdmFlag": 1,
  1726. "zhaobMoney": 3.1,
  1727. "zhaobCount": 3,
  1728. "signCount": 0,
  1729. "partnershipDomainALL": null,
  1730. "partnershipDomainPL011": null,
  1731. "partnershipDomainPL005": null,
  1732. "partnershipDomainPL002": null,
  1733. "partnershipDomainPL001": null,
  1734. "partnershipDomainSPL007": null,
  1735. "partnershipDomainSPL006": null,
  1736. "partnershipDomainPL003": null,
  1737. "partnershipDomainPL007": null,
  1738. "partnershipDomainPL006": null,
  1739. "potentialList": [],
  1740. "qzType": 0,
  1741. "qzFlag": 0,
  1742. "enterpriseId": null,
  1743. "nowZhaobMoneyD": 0,
  1744. "historyZhaobMoneyD": 220,
  1745. "nowZhaobMoney": "0",
  1746. "historyZhaobMoney": "220",
  1747. "collaborationChanges": null,
  1748. "collaborationChangesReduce": null,
  1749. "partnerType": "企业,其他",
  1750. "partnerTypeCode": "91,-1",
  1751. "oneYearZhongbD": 0,
  1752. "historyZhongbD": 3,
  1753. "oneYearZhongb": "0",
  1754. "historyZhongb": "3",
  1755. "shareUserCode": null,
  1756. "shareUserName": null,
  1757. "pcShareUserName": null,
  1758. "legalPerson": null,
  1759. "registerDate": null,
  1760. "registerAmount": null,
  1761. "address": null,
  1762. "partnershipList": [],
  1763. "certificateList": [],
  1764. "partnership": "空白",
  1765. "pcList": [
  1766. {
  1767. "dataCode": "空白",
  1768. "dataName": "全产业",
  1769. "tagCode": null
  1770. }
  1771. ],
  1772. "pcChangeList": [],
  1773. "importDate": "2019-06-25 16:44:00",
  1774. "createByDate": "2023-12-06 02:52:25",
  1775. "sevenDayCreateTag": null,
  1776. "linkSize": 0
  1777. },
  1778. {
  1779. "id": "2022120177882689",
  1780. "center": "长沙",
  1781. "areaCode": "M4301",
  1782. "areaName": "长沙小微",
  1783. "city": "永州市",
  1784. "partScale": 0,
  1785. "zbMoney": 0,
  1786. "custName": "永州市润成电器有限公司福泉公寓卡萨帝旗舰店",
  1787. "custCode": "8800495925",
  1788. "officeAddr": "永州市冷水滩区零陵北路福泉公寓一楼门面",
  1789. "industryStr": null,
  1790. "brandStr": null,
  1791. "partUserCount": "0",
  1792. "centerCode": "12403",
  1793. "notAuthCenter": null,
  1794. "cityCode": "431100000000",
  1795. "bigChannelCode": "M",
  1796. "bigChannelName": "直营渠道",
  1797. "smallChannelCode": "HA001",
  1798. "smallChannelName": "纯三专海尔成套专卖类",
  1799. "mdmFlag": 1,
  1800. "zhaobMoney": 0,
  1801. "zhaobCount": 0,
  1802. "signCount": 7,
  1803. "partnershipDomainALL": null,
  1804. "partnershipDomainPL011": null,
  1805. "partnershipDomainPL005": null,
  1806. "partnershipDomainPL002": null,
  1807. "partnershipDomainPL001": null,
  1808. "partnershipDomainSPL007": null,
  1809. "partnershipDomainSPL006": null,
  1810. "partnershipDomainPL003": null,
  1811. "partnershipDomainPL007": null,
  1812. "partnershipDomainPL006": null,
  1813. "potentialList": [],
  1814. "qzType": 0,
  1815. "qzFlag": 0,
  1816. "enterpriseId": null,
  1817. "nowZhaobMoneyD": 0,
  1818. "historyZhaobMoneyD": 0,
  1819. "nowZhaobMoney": "0",
  1820. "historyZhaobMoney": "0",
  1821. "collaborationChanges": null,
  1822. "collaborationChangesReduce": null,
  1823. "partnerType": null,
  1824. "partnerTypeCode": null,
  1825. "oneYearZhongbD": 0,
  1826. "historyZhongbD": 0,
  1827. "oneYearZhongb": "0",
  1828. "historyZhongb": "0",
  1829. "shareUserCode": null,
  1830. "shareUserName": null,
  1831. "pcShareUserName": null,
  1832. "legalPerson": null,
  1833. "registerDate": null,
  1834. "registerAmount": null,
  1835. "address": null,
  1836. "partnershipList": [],
  1837. "certificateList": [],
  1838. "partnership": "空白",
  1839. "pcList": [
  1840. {
  1841. "dataCode": "空白",
  1842. "dataName": "全产业",
  1843. "tagCode": null
  1844. }
  1845. ],
  1846. "pcChangeList": [],
  1847. "importDate": "2022-12-01 16:25:16",
  1848. "createByDate": "2023-11-23 18:40:23",
  1849. "sevenDayCreateTag": null,
  1850. "linkSize": 0
  1851. },
  1852. {
  1853. "id": "2009061107040881",
  1854. "center": "长沙",
  1855. "areaCode": "M4301",
  1856. "areaName": "长沙小微",
  1857. "city": null,
  1858. "partScale": 0,
  1859. "zbMoney": 0,
  1860. "custName": "(押金户)衡阳市寻真电器销售有限公司",
  1861. "custCode": "C200046088",
  1862. "officeAddr": "衡阳市蒸湘区船山西路16号",
  1863. "industryStr": null,
  1864. "brandStr": null,
  1865. "partUserCount": "0",
  1866. "centerCode": "12403",
  1867. "notAuthCenter": null,
  1868. "cityCode": null,
  1869. "bigChannelCode": "M",
  1870. "bigChannelName": "直营渠道",
  1871. "smallChannelCode": "HA001",
  1872. "smallChannelName": "纯三专海尔成套专卖类",
  1873. "mdmFlag": 1,
  1874. "zhaobMoney": 0,
  1875. "zhaobCount": 0,
  1876. "signCount": 0,
  1877. "partnershipDomainALL": null,
  1878. "partnershipDomainPL011": null,
  1879. "partnershipDomainPL005": null,
  1880. "partnershipDomainPL002": null,
  1881. "partnershipDomainPL001": null,
  1882. "partnershipDomainSPL007": null,
  1883. "partnershipDomainSPL006": null,
  1884. "partnershipDomainPL003": null,
  1885. "partnershipDomainPL007": null,
  1886. "partnershipDomainPL006": null,
  1887. "potentialList": [],
  1888. "qzType": 0,
  1889. "qzFlag": 0,
  1890. "enterpriseId": null,
  1891. "nowZhaobMoneyD": 0,
  1892. "historyZhaobMoneyD": 0,
  1893. "nowZhaobMoney": "0",
  1894. "historyZhaobMoney": "0",
  1895. "collaborationChanges": null,
  1896. "collaborationChangesReduce": null,
  1897. "partnerType": null,
  1898. "partnerTypeCode": null,
  1899. "oneYearZhongbD": 0,
  1900. "historyZhongbD": 0,
  1901. "oneYearZhongb": "0",
  1902. "historyZhongb": "0",
  1903. "shareUserCode": null,
  1904. "shareUserName": null,
  1905. "pcShareUserName": null,
  1906. "legalPerson": null,
  1907. "registerDate": null,
  1908. "registerAmount": null,
  1909. "address": null,
  1910. "partnershipList": [],
  1911. "certificateList": [],
  1912. "partnership": "空白",
  1913. "pcList": [
  1914. {
  1915. "dataCode": "空白",
  1916. "dataName": "全产业",
  1917. "tagCode": null
  1918. }
  1919. ],
  1920. "pcChangeList": [],
  1921. "importDate": "2009-06-11 00:00:00",
  1922. "createByDate": "2023-11-23 18:46:23",
  1923. "sevenDayCreateTag": null,
  1924. "linkSize": 0
  1925. },
  1926. {
  1927. "id": "2018110923354017",
  1928. "center": "长沙",
  1929. "areaCode": "M4301",
  1930. "areaName": "长沙小微",
  1931. "city": null,
  1932. "partScale": 0,
  1933. "zbMoney": 0,
  1934. "custName": "湖南大顺德造网络科技有限责任公司(顺逛专户)",
  1935. "custCode": "C200091936",
  1936. "officeAddr": "湖南省娄底市娄星区万宝新区高铁南站站前商业广场内",
  1937. "industryStr": null,
  1938. "brandStr": null,
  1939. "partUserCount": "0",
  1940. "centerCode": "12403",
  1941. "notAuthCenter": null,
  1942. "cityCode": null,
  1943. "bigChannelCode": "M",
  1944. "bigChannelName": "直营渠道",
  1945. "smallChannelCode": "HM001",
  1946. "smallChannelName": "准三专海尔百货商场类",
  1947. "mdmFlag": 1,
  1948. "zhaobMoney": 0,
  1949. "zhaobCount": 0,
  1950. "signCount": 0,
  1951. "partnershipDomainALL": null,
  1952. "partnershipDomainPL011": null,
  1953. "partnershipDomainPL005": null,
  1954. "partnershipDomainPL002": null,
  1955. "partnershipDomainPL001": null,
  1956. "partnershipDomainSPL007": null,
  1957. "partnershipDomainSPL006": null,
  1958. "partnershipDomainPL003": null,
  1959. "partnershipDomainPL007": null,
  1960. "partnershipDomainPL006": null,
  1961. "potentialList": [],
  1962. "qzType": 0,
  1963. "qzFlag": 0,
  1964. "enterpriseId": null,
  1965. "nowZhaobMoneyD": 0,
  1966. "historyZhaobMoneyD": 0,
  1967. "nowZhaobMoney": "0",
  1968. "historyZhaobMoney": "0",
  1969. "collaborationChanges": null,
  1970. "collaborationChangesReduce": null,
  1971. "partnerType": null,
  1972. "partnerTypeCode": null,
  1973. "oneYearZhongbD": 0,
  1974. "historyZhongbD": 0,
  1975. "oneYearZhongb": "0",
  1976. "historyZhongb": "0",
  1977. "shareUserCode": null,
  1978. "shareUserName": null,
  1979. "pcShareUserName": null,
  1980. "legalPerson": null,
  1981. "registerDate": null,
  1982. "registerAmount": null,
  1983. "address": null,
  1984. "partnershipList": [],
  1985. "certificateList": [],
  1986. "partnership": "空白",
  1987. "pcList": [
  1988. {
  1989. "dataCode": "空白",
  1990. "dataName": "全产业",
  1991. "tagCode": null
  1992. }
  1993. ],
  1994. "pcChangeList": [],
  1995. "importDate": "2018-11-09 13:16:21",
  1996. "createByDate": "2023-11-23 18:48:04",
  1997. "sevenDayCreateTag": null,
  1998. "linkSize": 0
  1999. },
  2000. {
  2001. "id": "2023122614127267",
  2002. "center": "长沙",
  2003. "areaCode": "M4301",
  2004. "areaName": "长沙小微",
  2005. "city": "长沙市",
  2006. "partScale": 0,
  2007. "zbMoney": 0,
  2008. "custName": "长沙市和美电器贸易有限公司南站居然之家卡萨帝店",
  2009. "custCode": "8800551989",
  2010. "officeAddr": "长沙市雨花区居然之家长沙智能家居体验中心 湖南省长沙市雨花区洞井站西50米(桃花塅路北)",
  2011. "industryStr": null,
  2012. "brandStr": null,
  2013. "partUserCount": "0",
  2014. "centerCode": "12403",
  2015. "notAuthCenter": null,
  2016. "cityCode": "430100000000",
  2017. "bigChannelCode": "M",
  2018. "bigChannelName": "直营渠道",
  2019. "smallChannelCode": "HA001",
  2020. "smallChannelName": "纯三专海尔成套专卖类",
  2021. "mdmFlag": 1,
  2022. "zhaobMoney": 0,
  2023. "zhaobCount": 0,
  2024. "signCount": 2,
  2025. "partnershipDomainALL": null,
  2026. "partnershipDomainPL011": null,
  2027. "partnershipDomainPL005": null,
  2028. "partnershipDomainPL002": null,
  2029. "partnershipDomainPL001": null,
  2030. "partnershipDomainSPL007": null,
  2031. "partnershipDomainSPL006": null,
  2032. "partnershipDomainPL003": null,
  2033. "partnershipDomainPL007": null,
  2034. "partnershipDomainPL006": null,
  2035. "potentialList": [],
  2036. "qzType": 0,
  2037. "qzFlag": 0,
  2038. "enterpriseId": null,
  2039. "nowZhaobMoneyD": 0,
  2040. "historyZhaobMoneyD": 0,
  2041. "nowZhaobMoney": "0",
  2042. "historyZhaobMoney": "0",
  2043. "collaborationChanges": null,
  2044. "collaborationChangesReduce": null,
  2045. "partnerType": null,
  2046. "partnerTypeCode": null,
  2047. "oneYearZhongbD": 0,
  2048. "historyZhongbD": 0,
  2049. "oneYearZhongb": "0",
  2050. "historyZhongb": "0",
  2051. "shareUserCode": null,
  2052. "shareUserName": null,
  2053. "pcShareUserName": null,
  2054. "legalPerson": null,
  2055. "registerDate": null,
  2056. "registerAmount": null,
  2057. "address": null,
  2058. "partnershipList": [],
  2059. "certificateList": [],
  2060. "partnership": "空白",
  2061. "pcList": [
  2062. {
  2063. "dataCode": "空白",
  2064. "dataName": "全产业",
  2065. "tagCode": null
  2066. }
  2067. ],
  2068. "pcChangeList": [],
  2069. "importDate": "2023-12-26 18:16:42",
  2070. "createByDate": "2024-05-07 02:50:15",
  2071. "sevenDayCreateTag": null,
  2072. "linkSize": 0
  2073. },
  2074. {
  2075. "id": "2024031209534483",
  2076. "center": "长沙",
  2077. "areaCode": "M4301",
  2078. "areaName": "长沙小微",
  2079. "city": null,
  2080. "partScale": 0,
  2081. "zbMoney": 0,
  2082. "custName": "(金融备货空调户)桃江县广顺电器有限公司",
  2083. "custCode": "C200094602",
  2084. "officeAddr": "湖南省益阳市桃江县桃花江镇桃花路172号",
  2085. "industryStr": null,
  2086. "brandStr": null,
  2087. "partUserCount": "0",
  2088. "centerCode": "12403",
  2089. "notAuthCenter": null,
  2090. "cityCode": "",
  2091. "bigChannelCode": "M",
  2092. "bigChannelName": "直营渠道",
  2093. "smallChannelCode": "HA001",
  2094. "smallChannelName": "纯三专海尔成套专卖类",
  2095. "mdmFlag": 1,
  2096. "zhaobMoney": 0,
  2097. "zhaobCount": 0,
  2098. "signCount": 0,
  2099. "partnershipDomainALL": null,
  2100. "partnershipDomainPL011": null,
  2101. "partnershipDomainPL005": null,
  2102. "partnershipDomainPL002": null,
  2103. "partnershipDomainPL001": null,
  2104. "partnershipDomainSPL007": null,
  2105. "partnershipDomainSPL006": null,
  2106. "partnershipDomainPL003": null,
  2107. "partnershipDomainPL007": null,
  2108. "partnershipDomainPL006": null,
  2109. "potentialList": [],
  2110. "qzType": 0,
  2111. "qzFlag": 0,
  2112. "enterpriseId": null,
  2113. "nowZhaobMoneyD": 0,
  2114. "historyZhaobMoneyD": 0,
  2115. "nowZhaobMoney": "0",
  2116. "historyZhaobMoney": "0",
  2117. "collaborationChanges": null,
  2118. "collaborationChangesReduce": null,
  2119. "partnerType": null,
  2120. "partnerTypeCode": null,
  2121. "oneYearZhongbD": 0,
  2122. "historyZhongbD": 0,
  2123. "oneYearZhongb": "0",
  2124. "historyZhongb": "0",
  2125. "shareUserCode": null,
  2126. "shareUserName": null,
  2127. "pcShareUserName": null,
  2128. "legalPerson": null,
  2129. "registerDate": null,
  2130. "registerAmount": null,
  2131. "address": null,
  2132. "partnershipList": [],
  2133. "certificateList": [],
  2134. "partnership": "空白",
  2135. "pcList": [
  2136. {
  2137. "dataCode": "空白",
  2138. "dataName": "全产业",
  2139. "tagCode": null
  2140. }
  2141. ],
  2142. "pcChangeList": [],
  2143. "importDate": "2024-03-12 00:00:00",
  2144. "createByDate": "2024-03-13 02:50:04",
  2145. "sevenDayCreateTag": null,
  2146. "linkSize": 0
  2147. },
  2148. {
  2149. "id": "2024061408348983",
  2150. "center": "长沙",
  2151. "areaCode": "M4301",
  2152. "areaName": "长沙小微",
  2153. "city": "娄底市",
  2154. "partScale": 0,
  2155. "zbMoney": 0,
  2156. "custName": "娄底市森度舒适家暖通设备有限责任公司",
  2157. "custCode": "8800575314",
  2158. "officeAddr": "娄底市娄星区大科街道三元街以北甘桂南路西侧新世界建材城21栋22栋",
  2159. "industryStr": null,
  2160. "brandStr": null,
  2161. "partUserCount": "0",
  2162. "centerCode": "12403",
  2163. "notAuthCenter": null,
  2164. "cityCode": "431300000000",
  2165. "bigChannelCode": "M",
  2166. "bigChannelName": "直营渠道",
  2167. "smallChannelCode": "HA024",
  2168. "smallChannelName": "纯三专水联网前置类客户",
  2169. "mdmFlag": 1,
  2170. "zhaobMoney": 0,
  2171. "zhaobCount": 0,
  2172. "signCount": 2,
  2173. "partnershipDomainALL": null,
  2174. "partnershipDomainPL011": null,
  2175. "partnershipDomainPL005": null,
  2176. "partnershipDomainPL002": null,
  2177. "partnershipDomainPL001": null,
  2178. "partnershipDomainSPL007": null,
  2179. "partnershipDomainSPL006": null,
  2180. "partnershipDomainPL003": null,
  2181. "partnershipDomainPL007": null,
  2182. "partnershipDomainPL006": null,
  2183. "potentialList": [],
  2184. "qzType": 0,
  2185. "qzFlag": 0,
  2186. "enterpriseId": null,
  2187. "nowZhaobMoneyD": 0,
  2188. "historyZhaobMoneyD": 0,
  2189. "nowZhaobMoney": "0",
  2190. "historyZhaobMoney": "0",
  2191. "collaborationChanges": null,
  2192. "collaborationChangesReduce": null,
  2193. "partnerType": null,
  2194. "partnerTypeCode": null,
  2195. "oneYearZhongbD": 0,
  2196. "historyZhongbD": 0,
  2197. "oneYearZhongb": "0",
  2198. "historyZhongb": "0",
  2199. "shareUserCode": null,
  2200. "shareUserName": null,
  2201. "pcShareUserName": null,
  2202. "legalPerson": null,
  2203. "registerDate": null,
  2204. "registerAmount": null,
  2205. "address": null,
  2206. "partnershipList": [],
  2207. "certificateList": [],
  2208. "partnership": "空白",
  2209. "pcList": [
  2210. {
  2211. "dataCode": "空白",
  2212. "dataName": "全产业",
  2213. "tagCode": null
  2214. }
  2215. ],
  2216. "pcChangeList": [],
  2217. "importDate": "2024-06-14 16:23:23",
  2218. "createByDate": "2024-06-15 02:50:02",
  2219. "sevenDayCreateTag": null,
  2220. "linkSize": 0
  2221. },
  2222. {
  2223. "id": "2008050442738756",
  2224. "center": "长沙",
  2225. "areaCode": "M4301",
  2226. "areaName": "长沙小微",
  2227. "city": null,
  2228. "partScale": 0,
  2229. "zbMoney": 0,
  2230. "custName": "(日日顺)邵阳市佳乐家电有限公司",
  2231. "custCode": "C200038033",
  2232. "officeAddr": "",
  2233. "industryStr": null,
  2234. "brandStr": null,
  2235. "partUserCount": "0",
  2236. "centerCode": "12403",
  2237. "notAuthCenter": null,
  2238. "cityCode": null,
  2239. "bigChannelCode": "M",
  2240. "bigChannelName": "直营渠道",
  2241. "smallChannelCode": "HA001",
  2242. "smallChannelName": "纯三专海尔成套专卖类",
  2243. "mdmFlag": 1,
  2244. "zhaobMoney": 0,
  2245. "zhaobCount": 0,
  2246. "signCount": 0,
  2247. "partnershipDomainALL": null,
  2248. "partnershipDomainPL011": null,
  2249. "partnershipDomainPL005": null,
  2250. "partnershipDomainPL002": null,
  2251. "partnershipDomainPL001": null,
  2252. "partnershipDomainSPL007": null,
  2253. "partnershipDomainSPL006": null,
  2254. "partnershipDomainPL003": null,
  2255. "partnershipDomainPL007": null,
  2256. "partnershipDomainPL006": null,
  2257. "potentialList": [],
  2258. "qzType": 0,
  2259. "qzFlag": 0,
  2260. "enterpriseId": null,
  2261. "nowZhaobMoneyD": 0,
  2262. "historyZhaobMoneyD": 0,
  2263. "nowZhaobMoney": "0",
  2264. "historyZhaobMoney": "0",
  2265. "collaborationChanges": null,
  2266. "collaborationChangesReduce": null,
  2267. "partnerType": null,
  2268. "partnerTypeCode": null,
  2269. "oneYearZhongbD": 0,
  2270. "historyZhongbD": 0,
  2271. "oneYearZhongb": "0",
  2272. "historyZhongb": "0",
  2273. "shareUserCode": null,
  2274. "shareUserName": null,
  2275. "pcShareUserName": null,
  2276. "legalPerson": null,
  2277. "registerDate": null,
  2278. "registerAmount": null,
  2279. "address": null,
  2280. "partnershipList": [],
  2281. "certificateList": [],
  2282. "partnership": "空白",
  2283. "pcList": [
  2284. {
  2285. "dataCode": "空白",
  2286. "dataName": "全产业",
  2287. "tagCode": null
  2288. }
  2289. ],
  2290. "pcChangeList": [],
  2291. "importDate": "2008-05-04 00:00:00",
  2292. "createByDate": "2023-11-23 18:47:30",
  2293. "sevenDayCreateTag": null,
  2294. "linkSize": 0
  2295. },
  2296. {
  2297. "id": "2022101354138170",
  2298. "center": "长沙",
  2299. "areaCode": "M4301",
  2300. "areaName": "长沙小微",
  2301. "city": null,
  2302. "partScale": 0,
  2303. "zbMoney": 0,
  2304. "custName": "(押金户)吉首市双祥电器销售有限责任公司",
  2305. "custCode": "C200150541",
  2306. "officeAddr": "湖南省吉首市镇溪办事处武陵东路9号(财信湘西大厦)湘西大厦501(仅限办公使用)",
  2307. "industryStr": null,
  2308. "brandStr": null,
  2309. "partUserCount": "0",
  2310. "centerCode": "12403",
  2311. "notAuthCenter": null,
  2312. "cityCode": null,
  2313. "bigChannelCode": "M",
  2314. "bigChannelName": "直营渠道",
  2315. "smallChannelCode": "HA001",
  2316. "smallChannelName": "纯三专海尔成套专卖类",
  2317. "mdmFlag": 1,
  2318. "zhaobMoney": 0,
  2319. "zhaobCount": 0,
  2320. "signCount": 0,
  2321. "partnershipDomainALL": null,
  2322. "partnershipDomainPL011": null,
  2323. "partnershipDomainPL005": null,
  2324. "partnershipDomainPL002": null,
  2325. "partnershipDomainPL001": null,
  2326. "partnershipDomainSPL007": null,
  2327. "partnershipDomainSPL006": null,
  2328. "partnershipDomainPL003": null,
  2329. "partnershipDomainPL007": null,
  2330. "partnershipDomainPL006": null,
  2331. "potentialList": [],
  2332. "qzType": 0,
  2333. "qzFlag": 0,
  2334. "enterpriseId": null,
  2335. "nowZhaobMoneyD": 0,
  2336. "historyZhaobMoneyD": 0,
  2337. "nowZhaobMoney": "0",
  2338. "historyZhaobMoney": "0",
  2339. "collaborationChanges": null,
  2340. "collaborationChangesReduce": null,
  2341. "partnerType": null,
  2342. "partnerTypeCode": null,
  2343. "oneYearZhongbD": 0,
  2344. "historyZhongbD": 0,
  2345. "oneYearZhongb": "0",
  2346. "historyZhongb": "0",
  2347. "shareUserCode": null,
  2348. "shareUserName": null,
  2349. "pcShareUserName": null,
  2350. "legalPerson": null,
  2351. "registerDate": null,
  2352. "registerAmount": null,
  2353. "address": null,
  2354. "partnershipList": [],
  2355. "certificateList": [],
  2356. "partnership": "空白",
  2357. "pcList": [
  2358. {
  2359. "dataCode": "空白",
  2360. "dataName": "全产业",
  2361. "tagCode": null
  2362. }
  2363. ],
  2364. "pcChangeList": [],
  2365. "importDate": "2022-10-13 00:00:00",
  2366. "createByDate": "2023-11-23 18:40:26",
  2367. "sevenDayCreateTag": null,
  2368. "linkSize": 0
  2369. },
  2370. {
  2371. "id": "2022121616759861",
  2372. "center": "长沙",
  2373. "areaCode": "M4301",
  2374. "areaName": "长沙小微",
  2375. "city": "郴州市",
  2376. "partScale": 0,
  2377. "zbMoney": 0,
  2378. "custName": "郴州市海泉商贸有限公司桂阳县水联网店",
  2379. "custCode": "8800499553",
  2380. "officeAddr": "郴州市桂阳县湘南国际建材城A1栋115-116门面",
  2381. "industryStr": null,
  2382. "brandStr": null,
  2383. "partUserCount": "0",
  2384. "centerCode": "12403",
  2385. "notAuthCenter": null,
  2386. "cityCode": "431000000000",
  2387. "bigChannelCode": "M",
  2388. "bigChannelName": "直营渠道",
  2389. "smallChannelCode": "HA001",
  2390. "smallChannelName": "纯三专海尔成套专卖类",
  2391. "mdmFlag": 1,
  2392. "zhaobMoney": 0,
  2393. "zhaobCount": 0,
  2394. "signCount": 0,
  2395. "partnershipDomainALL": null,
  2396. "partnershipDomainPL011": null,
  2397. "partnershipDomainPL005": null,
  2398. "partnershipDomainPL002": null,
  2399. "partnershipDomainPL001": null,
  2400. "partnershipDomainSPL007": null,
  2401. "partnershipDomainSPL006": null,
  2402. "partnershipDomainPL003": null,
  2403. "partnershipDomainPL007": null,
  2404. "partnershipDomainPL006": null,
  2405. "potentialList": [],
  2406. "qzType": 0,
  2407. "qzFlag": 0,
  2408. "enterpriseId": null,
  2409. "nowZhaobMoneyD": 0,
  2410. "historyZhaobMoneyD": 0,
  2411. "nowZhaobMoney": "0",
  2412. "historyZhaobMoney": "0",
  2413. "collaborationChanges": null,
  2414. "collaborationChangesReduce": null,
  2415. "partnerType": null,
  2416. "partnerTypeCode": null,
  2417. "oneYearZhongbD": 0,
  2418. "historyZhongbD": 0,
  2419. "oneYearZhongb": "0",
  2420. "historyZhongb": "0",
  2421. "shareUserCode": null,
  2422. "shareUserName": null,
  2423. "pcShareUserName": null,
  2424. "legalPerson": null,
  2425. "registerDate": null,
  2426. "registerAmount": null,
  2427. "address": null,
  2428. "partnershipList": [],
  2429. "certificateList": [],
  2430. "partnership": "空白",
  2431. "pcList": [
  2432. {
  2433. "dataCode": "空白",
  2434. "dataName": "全产业",
  2435. "tagCode": null
  2436. }
  2437. ],
  2438. "pcChangeList": [],
  2439. "importDate": "2022-12-16 11:22:37",
  2440. "createByDate": "2023-11-23 18:40:22",
  2441. "sevenDayCreateTag": null,
  2442. "linkSize": 0
  2443. },
  2444. {
  2445. "id": "2018110923335068",
  2446. "center": "长沙",
  2447. "areaCode": "M4301",
  2448. "areaName": "长沙小微",
  2449. "city": null,
  2450. "partScale": 0,
  2451. "zbMoney": 0,
  2452. "custName": "湖南木子李商贸有限公司(顺逛专户)",
  2453. "custCode": "C200082556",
  2454. "officeAddr": "开福区万家丽北路一段699号恒大雅苑21-24号栋2411房",
  2455. "industryStr": null,
  2456. "brandStr": null,
  2457. "partUserCount": "0",
  2458. "centerCode": "12403",
  2459. "notAuthCenter": null,
  2460. "cityCode": null,
  2461. "bigChannelCode": "M",
  2462. "bigChannelName": "直营渠道",
  2463. "smallChannelCode": "HA009",
  2464. "smallChannelName": "纯三专海尔产品专卖类(净水)",
  2465. "mdmFlag": 1,
  2466. "zhaobMoney": 0,
  2467. "zhaobCount": 0,
  2468. "signCount": 0,
  2469. "partnershipDomainALL": null,
  2470. "partnershipDomainPL011": null,
  2471. "partnershipDomainPL005": null,
  2472. "partnershipDomainPL002": null,
  2473. "partnershipDomainPL001": null,
  2474. "partnershipDomainSPL007": null,
  2475. "partnershipDomainSPL006": null,
  2476. "partnershipDomainPL003": null,
  2477. "partnershipDomainPL007": null,
  2478. "partnershipDomainPL006": null,
  2479. "potentialList": [],
  2480. "qzType": 0,
  2481. "qzFlag": 0,
  2482. "enterpriseId": null,
  2483. "nowZhaobMoneyD": 0,
  2484. "historyZhaobMoneyD": 0,
  2485. "nowZhaobMoney": "0",
  2486. "historyZhaobMoney": "0",
  2487. "collaborationChanges": null,
  2488. "collaborationChangesReduce": null,
  2489. "partnerType": null,
  2490. "partnerTypeCode": null,
  2491. "oneYearZhongbD": 0,
  2492. "historyZhongbD": 0,
  2493. "oneYearZhongb": "0",
  2494. "historyZhongb": "0",
  2495. "shareUserCode": null,
  2496. "shareUserName": null,
  2497. "pcShareUserName": null,
  2498. "legalPerson": null,
  2499. "registerDate": null,
  2500. "registerAmount": null,
  2501. "address": null,
  2502. "partnershipList": [],
  2503. "certificateList": [],
  2504. "partnership": "空白",
  2505. "pcList": [
  2506. {
  2507. "dataCode": "空白",
  2508. "dataName": "全产业",
  2509. "tagCode": null
  2510. }
  2511. ],
  2512. "pcChangeList": [],
  2513. "importDate": "2018-11-09 13:15:09",
  2514. "createByDate": "2023-11-23 18:48:27",
  2515. "sevenDayCreateTag": null,
  2516. "linkSize": 0
  2517. },
  2518. {
  2519. "id": "2016111196674186",
  2520. "center": "长沙",
  2521. "areaCode": "M4301",
  2522. "areaName": "长沙小微",
  2523. "city": null,
  2524. "partScale": 0,
  2525. "zbMoney": 0,
  2526. "custName": "(押金户)张家界华雅机电设备有限公司",
  2527. "custCode": "C200129586",
  2528. "officeAddr": "慈利县零阳镇零阳东路53号",
  2529. "industryStr": null,
  2530. "brandStr": null,
  2531. "partUserCount": "0",
  2532. "centerCode": "12403",
  2533. "notAuthCenter": null,
  2534. "cityCode": "",
  2535. "bigChannelCode": "M",
  2536. "bigChannelName": "直营渠道",
  2537. "smallChannelCode": "HA001",
  2538. "smallChannelName": "纯三专海尔成套专卖类",
  2539. "mdmFlag": 1,
  2540. "zhaobMoney": 0,
  2541. "zhaobCount": 0,
  2542. "signCount": 0,
  2543. "partnershipDomainALL": null,
  2544. "partnershipDomainPL011": null,
  2545. "partnershipDomainPL005": null,
  2546. "partnershipDomainPL002": null,
  2547. "partnershipDomainPL001": null,
  2548. "partnershipDomainSPL007": null,
  2549. "partnershipDomainSPL006": null,
  2550. "partnershipDomainPL003": null,
  2551. "partnershipDomainPL007": null,
  2552. "partnershipDomainPL006": null,
  2553. "potentialList": [],
  2554. "qzType": 0,
  2555. "qzFlag": 0,
  2556. "enterpriseId": null,
  2557. "nowZhaobMoneyD": 0,
  2558. "historyZhaobMoneyD": 0,
  2559. "nowZhaobMoney": "0",
  2560. "historyZhaobMoney": "0",
  2561. "collaborationChanges": null,
  2562. "collaborationChangesReduce": null,
  2563. "partnerType": null,
  2564. "partnerTypeCode": null,
  2565. "oneYearZhongbD": 0,
  2566. "historyZhongbD": 0,
  2567. "oneYearZhongb": "0",
  2568. "historyZhongb": "0",
  2569. "shareUserCode": null,
  2570. "shareUserName": null,
  2571. "pcShareUserName": null,
  2572. "legalPerson": null,
  2573. "registerDate": null,
  2574. "registerAmount": null,
  2575. "address": null,
  2576. "partnershipList": [],
  2577. "certificateList": [],
  2578. "partnership": "空白",
  2579. "pcList": [
  2580. {
  2581. "dataCode": "空白",
  2582. "dataName": "全产业",
  2583. "tagCode": null
  2584. }
  2585. ],
  2586. "pcChangeList": [],
  2587. "importDate": "2016-11-11 16:45:39",
  2588. "createByDate": "2023-11-23 18:47:58",
  2589. "sevenDayCreateTag": null,
  2590. "linkSize": 0
  2591. },
  2592. {
  2593. "id": "2013111486489538",
  2594. "center": "长沙",
  2595. "areaCode": "M4301",
  2596. "areaName": "长沙小微",
  2597. "city": null,
  2598. "partScale": 0,
  2599. "zbMoney": 0,
  2600. "custName": "(押金户)衡阳华贵贸易有限公司",
  2601. "custCode": "C200119973",
  2602. "officeAddr": "衡阳市蒸湘区解放西路82号宏雁名仕华府2栋112室",
  2603. "industryStr": null,
  2604. "brandStr": null,
  2605. "partUserCount": "0",
  2606. "centerCode": "12403",
  2607. "notAuthCenter": null,
  2608. "cityCode": "",
  2609. "bigChannelCode": "M",
  2610. "bigChannelName": "直营渠道",
  2611. "smallChannelCode": "HM001",
  2612. "smallChannelName": "准三专海尔百货商场类",
  2613. "mdmFlag": 1,
  2614. "zhaobMoney": 0,
  2615. "zhaobCount": 0,
  2616. "signCount": 0,
  2617. "partnershipDomainALL": null,
  2618. "partnershipDomainPL011": null,
  2619. "partnershipDomainPL005": null,
  2620. "partnershipDomainPL002": null,
  2621. "partnershipDomainPL001": null,
  2622. "partnershipDomainSPL007": null,
  2623. "partnershipDomainSPL006": null,
  2624. "partnershipDomainPL003": null,
  2625. "partnershipDomainPL007": null,
  2626. "partnershipDomainPL006": null,
  2627. "potentialList": [],
  2628. "qzType": 0,
  2629. "qzFlag": 0,
  2630. "enterpriseId": null,
  2631. "nowZhaobMoneyD": 0,
  2632. "historyZhaobMoneyD": 0,
  2633. "nowZhaobMoney": "0",
  2634. "historyZhaobMoney": "0",
  2635. "collaborationChanges": null,
  2636. "collaborationChangesReduce": null,
  2637. "partnerType": null,
  2638. "partnerTypeCode": null,
  2639. "oneYearZhongbD": 0,
  2640. "historyZhongbD": 0,
  2641. "oneYearZhongb": "0",
  2642. "historyZhongb": "0",
  2643. "shareUserCode": null,
  2644. "shareUserName": null,
  2645. "pcShareUserName": null,
  2646. "legalPerson": null,
  2647. "registerDate": null,
  2648. "registerAmount": null,
  2649. "address": null,
  2650. "partnershipList": [],
  2651. "certificateList": [],
  2652. "partnership": "空白",
  2653. "pcList": [
  2654. {
  2655. "dataCode": "空白",
  2656. "dataName": "全产业",
  2657. "tagCode": null
  2658. }
  2659. ],
  2660. "pcChangeList": [],
  2661. "importDate": "2013-11-14 00:00:00",
  2662. "createByDate": "2023-11-23 18:45:03",
  2663. "sevenDayCreateTag": null,
  2664. "linkSize": 0
  2665. },
  2666. {
  2667. "id": "2008082270904165",
  2668. "center": "长沙",
  2669. "areaCode": "M4301",
  2670. "areaName": "长沙小微",
  2671. "city": "益阳市",
  2672. "partScale": 861.66,
  2673. "zbMoney": 0,
  2674. "custName": "益阳银都家电有限责任公司",
  2675. "custCode": "8800011058",
  2676. "officeAddr": "益阳市赫山区桃花伦东路122号",
  2677. "industryStr": "厨电(1)、水产业(1)、信息(1)、热水器(1)、家用空调(1)、洗衣机(1)、冰冷(1)",
  2678. "brandStr": "卡萨帝、海尔",
  2679. "partUserCount": "26",
  2680. "centerCode": "12403",
  2681. "notAuthCenter": null,
  2682. "cityCode": "430900000000",
  2683. "bigChannelCode": "M",
  2684. "bigChannelName": "直营渠道",
  2685. "smallChannelCode": "HA001",
  2686. "smallChannelName": "纯三专海尔成套专卖类",
  2687. "mdmFlag": 1,
  2688. "zhaobMoney": 0.38,
  2689. "zhaobCount": 1,
  2690. "signCount": 0,
  2691. "partnershipDomainALL": null,
  2692. "partnershipDomainPL011": null,
  2693. "partnershipDomainPL005": null,
  2694. "partnershipDomainPL002": null,
  2695. "partnershipDomainPL001": null,
  2696. "partnershipDomainSPL007": null,
  2697. "partnershipDomainSPL006": null,
  2698. "partnershipDomainPL003": null,
  2699. "partnershipDomainPL007": null,
  2700. "partnershipDomainPL006": null,
  2701. "potentialList": [],
  2702. "qzType": 0,
  2703. "qzFlag": 0,
  2704. "enterpriseId": null,
  2705. "nowZhaobMoneyD": 0,
  2706. "historyZhaobMoneyD": 862,
  2707. "nowZhaobMoney": "0",
  2708. "historyZhaobMoney": "862",
  2709. "collaborationChanges": null,
  2710. "collaborationChangesReduce": null,
  2711. "partnerType": "其他,企业,机关",
  2712. "partnerTypeCode": "-1,91,11",
  2713. "oneYearZhongbD": 0,
  2714. "historyZhongbD": 0,
  2715. "oneYearZhongb": "0",
  2716. "historyZhongb": "0",
  2717. "shareUserCode": null,
  2718. "shareUserName": null,
  2719. "pcShareUserName": null,
  2720. "legalPerson": null,
  2721. "registerDate": null,
  2722. "registerAmount": null,
  2723. "address": null,
  2724. "partnershipList": [],
  2725. "certificateList": [],
  2726. "partnership": "空白",
  2727. "pcList": [
  2728. {
  2729. "dataCode": "空白",
  2730. "dataName": "全产业",
  2731. "tagCode": null
  2732. }
  2733. ],
  2734. "pcChangeList": [],
  2735. "importDate": "2008-08-22 00:00:00",
  2736. "createByDate": "2023-11-23 18:46:34",
  2737. "sevenDayCreateTag": null,
  2738. "linkSize": 0
  2739. },
  2740. {
  2741. "id": "2025071961782380",
  2742. "center": "长沙",
  2743. "areaCode": "M4301",
  2744. "areaName": "长沙小微",
  2745. "city": "衡阳市",
  2746. "partScale": 0,
  2747. "zbMoney": 0,
  2748. "custName": "衡阳市晟润商贸有限公司",
  2749. "custCode": "8800641277",
  2750. "officeAddr": "湖南省衡阳市珠晖区广东路街道东风支路17号东风财富广场-1017室",
  2751. "industryStr": null,
  2752. "brandStr": null,
  2753. "partUserCount": "0",
  2754. "centerCode": "12403",
  2755. "notAuthCenter": null,
  2756. "cityCode": "430400000000",
  2757. "bigChannelCode": "M",
  2758. "bigChannelName": "直营渠道",
  2759. "smallChannelCode": "HA007",
  2760. "smallChannelName": "纯三专工程类",
  2761. "mdmFlag": 1,
  2762. "zhaobMoney": 0,
  2763. "zhaobCount": 0,
  2764. "signCount": 0,
  2765. "partnershipDomainALL": null,
  2766. "partnershipDomainPL011": null,
  2767. "partnershipDomainPL005": null,
  2768. "partnershipDomainPL002": null,
  2769. "partnershipDomainPL001": null,
  2770. "partnershipDomainSPL007": null,
  2771. "partnershipDomainSPL006": null,
  2772. "partnershipDomainPL003": null,
  2773. "partnershipDomainPL007": null,
  2774. "partnershipDomainPL006": null,
  2775. "potentialList": [],
  2776. "qzType": 0,
  2777. "qzFlag": 0,
  2778. "enterpriseId": null,
  2779. "nowZhaobMoneyD": 0,
  2780. "historyZhaobMoneyD": 0,
  2781. "nowZhaobMoney": "0",
  2782. "historyZhaobMoney": "0",
  2783. "collaborationChanges": null,
  2784. "collaborationChangesReduce": null,
  2785. "partnerType": null,
  2786. "partnerTypeCode": null,
  2787. "oneYearZhongbD": 0,
  2788. "historyZhongbD": 0,
  2789. "oneYearZhongb": "0",
  2790. "historyZhongb": "0",
  2791. "shareUserCode": null,
  2792. "shareUserName": null,
  2793. "pcShareUserName": null,
  2794. "legalPerson": null,
  2795. "registerDate": null,
  2796. "registerAmount": null,
  2797. "address": null,
  2798. "partnershipList": [],
  2799. "certificateList": [],
  2800. "partnership": "空白",
  2801. "pcList": [
  2802. {
  2803. "dataCode": "空白",
  2804. "dataName": "全产业",
  2805. "tagCode": null
  2806. }
  2807. ],
  2808. "pcChangeList": [],
  2809. "importDate": "2025-07-19 17:14:37",
  2810. "createByDate": "2025-07-20 02:50:02",
  2811. "sevenDayCreateTag": null,
  2812. "linkSize": 0
  2813. },
  2814. {
  2815. "id": "2018081661846775",
  2816. "center": "长沙",
  2817. "areaCode": "M4301",
  2818. "areaName": "长沙小微",
  2819. "city": null,
  2820. "partScale": 0,
  2821. "zbMoney": 0,
  2822. "custName": "(押金户)湖南众鑫发展工贸有限公司",
  2823. "custCode": "C200133966",
  2824. "officeAddr": "湖南省株洲市天元区泰山路1485号康桥美郡9栋109号",
  2825. "industryStr": null,
  2826. "brandStr": null,
  2827. "partUserCount": "0",
  2828. "centerCode": "12403",
  2829. "notAuthCenter": null,
  2830. "cityCode": "",
  2831. "bigChannelCode": "M",
  2832. "bigChannelName": "直营渠道",
  2833. "smallChannelCode": "HA001",
  2834. "smallChannelName": "纯三专海尔成套专卖类",
  2835. "mdmFlag": 1,
  2836. "zhaobMoney": 0,
  2837. "zhaobCount": 0,
  2838. "signCount": 0,
  2839. "partnershipDomainALL": null,
  2840. "partnershipDomainPL011": null,
  2841. "partnershipDomainPL005": null,
  2842. "partnershipDomainPL002": null,
  2843. "partnershipDomainPL001": null,
  2844. "partnershipDomainSPL007": null,
  2845. "partnershipDomainSPL006": null,
  2846. "partnershipDomainPL003": null,
  2847. "partnershipDomainPL007": null,
  2848. "partnershipDomainPL006": null,
  2849. "potentialList": [],
  2850. "qzType": 0,
  2851. "qzFlag": 0,
  2852. "enterpriseId": null,
  2853. "nowZhaobMoneyD": 0,
  2854. "historyZhaobMoneyD": 0,
  2855. "nowZhaobMoney": "0",
  2856. "historyZhaobMoney": "0",
  2857. "collaborationChanges": null,
  2858. "collaborationChangesReduce": null,
  2859. "partnerType": null,
  2860. "partnerTypeCode": null,
  2861. "oneYearZhongbD": 0,
  2862. "historyZhongbD": 0,
  2863. "oneYearZhongb": "0",
  2864. "historyZhongb": "0",
  2865. "shareUserCode": null,
  2866. "shareUserName": null,
  2867. "pcShareUserName": null,
  2868. "legalPerson": null,
  2869. "registerDate": null,
  2870. "registerAmount": null,
  2871. "address": null,
  2872. "partnershipList": [],
  2873. "certificateList": [],
  2874. "partnership": "空白",
  2875. "pcList": [
  2876. {
  2877. "dataCode": "空白",
  2878. "dataName": "全产业",
  2879. "tagCode": null
  2880. }
  2881. ],
  2882. "pcChangeList": [],
  2883. "importDate": "2018-08-16 00:00:00",
  2884. "createByDate": "2023-11-23 18:43:23",
  2885. "sevenDayCreateTag": null,
  2886. "linkSize": 0
  2887. },
  2888. {
  2889. "id": "2024031209534411",
  2890. "center": "长沙",
  2891. "areaCode": "M4301",
  2892. "areaName": "长沙小微",
  2893. "city": null,
  2894. "partScale": 0,
  2895. "zbMoney": 0,
  2896. "custName": "(金融备货空调户)宁远京丰商贸有限公司",
  2897. "custCode": "C200094584",
  2898. "officeAddr": "舜陵街道九嶷中路35号",
  2899. "industryStr": null,
  2900. "brandStr": null,
  2901. "partUserCount": "0",
  2902. "centerCode": "12403",
  2903. "notAuthCenter": null,
  2904. "cityCode": "",
  2905. "bigChannelCode": "M",
  2906. "bigChannelName": "直营渠道",
  2907. "smallChannelCode": "HM002",
  2908. "smallChannelName": "准三专海尔家电卖场类",
  2909. "mdmFlag": 1,
  2910. "zhaobMoney": 0,
  2911. "zhaobCount": 0,
  2912. "signCount": 0,
  2913. "partnershipDomainALL": null,
  2914. "partnershipDomainPL011": null,
  2915. "partnershipDomainPL005": null,
  2916. "partnershipDomainPL002": null,
  2917. "partnershipDomainPL001": null,
  2918. "partnershipDomainSPL007": null,
  2919. "partnershipDomainSPL006": null,
  2920. "partnershipDomainPL003": null,
  2921. "partnershipDomainPL007": null,
  2922. "partnershipDomainPL006": null,
  2923. "potentialList": [],
  2924. "qzType": 0,
  2925. "qzFlag": 0,
  2926. "enterpriseId": null,
  2927. "nowZhaobMoneyD": 0,
  2928. "historyZhaobMoneyD": 0,
  2929. "nowZhaobMoney": "0",
  2930. "historyZhaobMoney": "0",
  2931. "collaborationChanges": null,
  2932. "collaborationChangesReduce": null,
  2933. "partnerType": null,
  2934. "partnerTypeCode": null,
  2935. "oneYearZhongbD": 0,
  2936. "historyZhongbD": 0,
  2937. "oneYearZhongb": "0",
  2938. "historyZhongb": "0",
  2939. "shareUserCode": null,
  2940. "shareUserName": null,
  2941. "pcShareUserName": null,
  2942. "legalPerson": null,
  2943. "registerDate": null,
  2944. "registerAmount": null,
  2945. "address": null,
  2946. "partnershipList": [],
  2947. "certificateList": [],
  2948. "partnership": "空白",
  2949. "pcList": [
  2950. {
  2951. "dataCode": "空白",
  2952. "dataName": "全产业",
  2953. "tagCode": null
  2954. }
  2955. ],
  2956. "pcChangeList": [],
  2957. "importDate": "2024-03-12 00:00:00",
  2958. "createByDate": "2024-03-13 02:50:04",
  2959. "sevenDayCreateTag": null,
  2960. "linkSize": 0
  2961. },
  2962. {
  2963. "id": "2009053005958787",
  2964. "center": "长沙",
  2965. "areaCode": "M4301",
  2966. "areaName": "长沙小微",
  2967. "city": "永州市",
  2968. "partScale": 0,
  2969. "zbMoney": 0,
  2970. "custName": "永州市零陵好邻居电器有限责任公司",
  2971. "custCode": "8800016402",
  2972. "officeAddr": "永州市零陵区黄古山中路39号",
  2973. "industryStr": null,
  2974. "brandStr": null,
  2975. "partUserCount": "0",
  2976. "centerCode": "12403",
  2977. "notAuthCenter": null,
  2978. "cityCode": "431100000000",
  2979. "bigChannelCode": "M",
  2980. "bigChannelName": "直营渠道",
  2981. "smallChannelCode": "HA001",
  2982. "smallChannelName": "纯三专海尔成套专卖类",
  2983. "mdmFlag": 1,
  2984. "zhaobMoney": 0,
  2985. "zhaobCount": 0,
  2986. "signCount": 0,
  2987. "partnershipDomainALL": null,
  2988. "partnershipDomainPL011": null,
  2989. "partnershipDomainPL005": null,
  2990. "partnershipDomainPL002": null,
  2991. "partnershipDomainPL001": null,
  2992. "partnershipDomainSPL007": null,
  2993. "partnershipDomainSPL006": null,
  2994. "partnershipDomainPL003": null,
  2995. "partnershipDomainPL007": null,
  2996. "partnershipDomainPL006": null,
  2997. "potentialList": [],
  2998. "qzType": 0,
  2999. "qzFlag": 0,
  3000. "enterpriseId": null,
  3001. "nowZhaobMoneyD": 0,
  3002. "historyZhaobMoneyD": 0,
  3003. "nowZhaobMoney": "0",
  3004. "historyZhaobMoney": "0",
  3005. "collaborationChanges": null,
  3006. "collaborationChangesReduce": null,
  3007. "partnerType": null,
  3008. "partnerTypeCode": null,
  3009. "oneYearZhongbD": 0,
  3010. "historyZhongbD": 0,
  3011. "oneYearZhongb": "0",
  3012. "historyZhongb": "0",
  3013. "shareUserCode": null,
  3014. "shareUserName": null,
  3015. "pcShareUserName": null,
  3016. "legalPerson": null,
  3017. "registerDate": null,
  3018. "registerAmount": null,
  3019. "address": null,
  3020. "partnershipList": [],
  3021. "certificateList": [],
  3022. "partnership": "空白",
  3023. "pcList": [
  3024. {
  3025. "dataCode": "空白",
  3026. "dataName": "全产业",
  3027. "tagCode": null
  3028. }
  3029. ],
  3030. "pcChangeList": [],
  3031. "importDate": "2009-05-30 00:00:00",
  3032. "createByDate": "2023-11-23 18:46:26",
  3033. "sevenDayCreateTag": null,
  3034. "linkSize": 0
  3035. },
  3036. {
  3037. "id": "2023022704408384",
  3038. "center": "长沙",
  3039. "areaCode": "M4301",
  3040. "areaName": "长沙小微",
  3041. "city": "娄底市",
  3042. "partScale": 108.48,
  3043. "zbMoney": 0,
  3044. "custName": "湖南聚拓工程有限公司",
  3045. "custCode": "8800506267",
  3046. "officeAddr": "湖南省长沙市雨花区朝晖路",
  3047. "industryStr": "商用空调(1)",
  3048. "brandStr": "海尔",
  3049. "partUserCount": "5",
  3050. "centerCode": "12403",
  3051. "notAuthCenter": null,
  3052. "cityCode": "431300000000",
  3053. "bigChannelCode": "M",
  3054. "bigChannelName": "直营渠道",
  3055. "smallChannelCode": "HA007",
  3056. "smallChannelName": "纯三专工程类",
  3057. "mdmFlag": 1,
  3058. "zhaobMoney": 108.6,
  3059. "zhaobCount": 1,
  3060. "signCount": 20,
  3061. "partnershipDomainALL": null,
  3062. "partnershipDomainPL011": null,
  3063. "partnershipDomainPL005": null,
  3064. "partnershipDomainPL002": null,
  3065. "partnershipDomainPL001": null,
  3066. "partnershipDomainSPL007": null,
  3067. "partnershipDomainSPL006": null,
  3068. "partnershipDomainPL003": null,
  3069. "partnershipDomainPL007": null,
  3070. "partnershipDomainPL006": null,
  3071. "potentialList": [],
  3072. "qzType": 0,
  3073. "qzFlag": 0,
  3074. "enterpriseId": null,
  3075. "nowZhaobMoneyD": 0,
  3076. "historyZhaobMoneyD": 108,
  3077. "nowZhaobMoney": "0",
  3078. "historyZhaobMoney": "108",
  3079. "collaborationChanges": null,
  3080. "collaborationChangesReduce": null,
  3081. "partnerType": "企业,事业单位",
  3082. "partnerTypeCode": "91,12",
  3083. "oneYearZhongbD": 0,
  3084. "historyZhongbD": 109,
  3085. "oneYearZhongb": "0",
  3086. "historyZhongb": "109",
  3087. "shareUserCode": null,
  3088. "shareUserName": null,
  3089. "pcShareUserName": null,
  3090. "legalPerson": null,
  3091. "registerDate": null,
  3092. "registerAmount": null,
  3093. "address": null,
  3094. "partnershipList": [],
  3095. "certificateList": [],
  3096. "partnership": "空白",
  3097. "pcList": [
  3098. {
  3099. "dataCode": "空白",
  3100. "dataName": "全产业",
  3101. "tagCode": null
  3102. }
  3103. ],
  3104. "pcChangeList": [],
  3105. "importDate": "2023-02-27 00:00:00",
  3106. "createByDate": "2023-11-23 18:40:19",
  3107. "sevenDayCreateTag": null,
  3108. "linkSize": 0
  3109. },
  3110. {
  3111. "id": "2024031209534359",
  3112. "center": "长沙",
  3113. "areaCode": "M4301",
  3114. "areaName": "长沙小微",
  3115. "city": null,
  3116. "partScale": 0,
  3117. "zbMoney": 0,
  3118. "custName": "(金融备货空调户)湖南鸿辰暖通工程有限公司",
  3119. "custCode": "C200094571",
  3120. "officeAddr": "湖南省株洲市天元区嵩山路街道湘山路39号新安居建材大广场4栋102室",
  3121. "industryStr": null,
  3122. "brandStr": null,
  3123. "partUserCount": "0",
  3124. "centerCode": "12403",
  3125. "notAuthCenter": null,
  3126. "cityCode": "",
  3127. "bigChannelCode": "M",
  3128. "bigChannelName": "直营渠道",
  3129. "smallChannelCode": "HA002",
  3130. "smallChannelName": "纯三专海尔产品专卖类(空调)",
  3131. "mdmFlag": 1,
  3132. "zhaobMoney": 0,
  3133. "zhaobCount": 0,
  3134. "signCount": 0,
  3135. "partnershipDomainALL": null,
  3136. "partnershipDomainPL011": null,
  3137. "partnershipDomainPL005": null,
  3138. "partnershipDomainPL002": null,
  3139. "partnershipDomainPL001": null,
  3140. "partnershipDomainSPL007": null,
  3141. "partnershipDomainSPL006": null,
  3142. "partnershipDomainPL003": null,
  3143. "partnershipDomainPL007": null,
  3144. "partnershipDomainPL006": null,
  3145. "potentialList": [],
  3146. "qzType": 0,
  3147. "qzFlag": 0,
  3148. "enterpriseId": null,
  3149. "nowZhaobMoneyD": 0,
  3150. "historyZhaobMoneyD": 0,
  3151. "nowZhaobMoney": "0",
  3152. "historyZhaobMoney": "0",
  3153. "collaborationChanges": null,
  3154. "collaborationChangesReduce": null,
  3155. "partnerType": null,
  3156. "partnerTypeCode": null,
  3157. "oneYearZhongbD": 0,
  3158. "historyZhongbD": 0,
  3159. "oneYearZhongb": "0",
  3160. "historyZhongb": "0",
  3161. "shareUserCode": null,
  3162. "shareUserName": null,
  3163. "pcShareUserName": null,
  3164. "legalPerson": null,
  3165. "registerDate": null,
  3166. "registerAmount": null,
  3167. "address": null,
  3168. "partnershipList": [],
  3169. "certificateList": [],
  3170. "partnership": "空白",
  3171. "pcList": [
  3172. {
  3173. "dataCode": "空白",
  3174. "dataName": "全产业",
  3175. "tagCode": null
  3176. }
  3177. ],
  3178. "pcChangeList": [],
  3179. "importDate": "2024-03-12 00:00:00",
  3180. "createByDate": "2024-03-13 02:50:04",
  3181. "sevenDayCreateTag": null,
  3182. "linkSize": 0
  3183. },
  3184. {
  3185. "id": "2021080991396729",
  3186. "center": "长沙",
  3187. "areaCode": "M4301",
  3188. "areaName": "长沙小微",
  3189. "city": null,
  3190. "partScale": 0,
  3191. "zbMoney": 0,
  3192. "custName": "怀化市新海潮电器有限公司红星美凯龙店",
  3193. "custCode": "8800429786",
  3194. "officeAddr": "怀化市鹤城区舞阳大道658号",
  3195. "industryStr": null,
  3196. "brandStr": null,
  3197. "partUserCount": "0",
  3198. "centerCode": "12403",
  3199. "notAuthCenter": null,
  3200. "cityCode": null,
  3201. "bigChannelCode": "M",
  3202. "bigChannelName": "直营渠道",
  3203. "smallChannelCode": "HA001",
  3204. "smallChannelName": "纯三专海尔成套专卖类",
  3205. "mdmFlag": 1,
  3206. "zhaobMoney": 0,
  3207. "zhaobCount": 0,
  3208. "signCount": 0,
  3209. "partnershipDomainALL": null,
  3210. "partnershipDomainPL011": null,
  3211. "partnershipDomainPL005": null,
  3212. "partnershipDomainPL002": null,
  3213. "partnershipDomainPL001": null,
  3214. "partnershipDomainSPL007": null,
  3215. "partnershipDomainSPL006": null,
  3216. "partnershipDomainPL003": null,
  3217. "partnershipDomainPL007": null,
  3218. "partnershipDomainPL006": null,
  3219. "potentialList": [],
  3220. "qzType": 0,
  3221. "qzFlag": 0,
  3222. "enterpriseId": null,
  3223. "nowZhaobMoneyD": 0,
  3224. "historyZhaobMoneyD": 0,
  3225. "nowZhaobMoney": "0",
  3226. "historyZhaobMoney": "0",
  3227. "collaborationChanges": null,
  3228. "collaborationChangesReduce": null,
  3229. "partnerType": null,
  3230. "partnerTypeCode": null,
  3231. "oneYearZhongbD": 0,
  3232. "historyZhongbD": 0,
  3233. "oneYearZhongb": "0",
  3234. "historyZhongb": "0",
  3235. "shareUserCode": null,
  3236. "shareUserName": null,
  3237. "pcShareUserName": null,
  3238. "legalPerson": null,
  3239. "registerDate": null,
  3240. "registerAmount": null,
  3241. "address": null,
  3242. "partnershipList": [],
  3243. "certificateList": [],
  3244. "partnership": "空白",
  3245. "pcList": [
  3246. {
  3247. "dataCode": "空白",
  3248. "dataName": "全产业",
  3249. "tagCode": null
  3250. }
  3251. ],
  3252. "pcChangeList": [],
  3253. "importDate": "2021-08-09 11:14:50",
  3254. "createByDate": "2023-11-23 18:41:01",
  3255. "sevenDayCreateTag": null,
  3256. "linkSize": 0
  3257. },
  3258. {
  3259. "id": "2020031114823467",
  3260. "center": "长沙",
  3261. "areaCode": "M4301",
  3262. "areaName": "长沙小微",
  3263. "city": null,
  3264. "partScale": 0,
  3265. "zbMoney": 0,
  3266. "custName": "(金融空调户)株洲众鑫电器有限责任公司",
  3267. "custCode": "C200140893",
  3268. "officeAddr": "湖南省株洲市天元区泰山路1485号康桥美郡9栋109号",
  3269. "industryStr": null,
  3270. "brandStr": null,
  3271. "partUserCount": "0",
  3272. "centerCode": "12403",
  3273. "notAuthCenter": null,
  3274. "cityCode": null,
  3275. "bigChannelCode": "M",
  3276. "bigChannelName": "直营渠道",
  3277. "smallChannelCode": "HA001",
  3278. "smallChannelName": "纯三专海尔成套专卖类",
  3279. "mdmFlag": 1,
  3280. "zhaobMoney": 0,
  3281. "zhaobCount": 0,
  3282. "signCount": 0,
  3283. "partnershipDomainALL": null,
  3284. "partnershipDomainPL011": null,
  3285. "partnershipDomainPL005": null,
  3286. "partnershipDomainPL002": null,
  3287. "partnershipDomainPL001": null,
  3288. "partnershipDomainSPL007": null,
  3289. "partnershipDomainSPL006": null,
  3290. "partnershipDomainPL003": null,
  3291. "partnershipDomainPL007": null,
  3292. "partnershipDomainPL006": null,
  3293. "potentialList": [],
  3294. "qzType": 0,
  3295. "qzFlag": 0,
  3296. "enterpriseId": null,
  3297. "nowZhaobMoneyD": 0,
  3298. "historyZhaobMoneyD": 0,
  3299. "nowZhaobMoney": "0",
  3300. "historyZhaobMoney": "0",
  3301. "collaborationChanges": null,
  3302. "collaborationChangesReduce": null,
  3303. "partnerType": null,
  3304. "partnerTypeCode": null,
  3305. "oneYearZhongbD": 0,
  3306. "historyZhongbD": 0,
  3307. "oneYearZhongb": "0",
  3308. "historyZhongb": "0",
  3309. "shareUserCode": null,
  3310. "shareUserName": null,
  3311. "pcShareUserName": null,
  3312. "legalPerson": null,
  3313. "registerDate": null,
  3314. "registerAmount": null,
  3315. "address": null,
  3316. "partnershipList": [],
  3317. "certificateList": [],
  3318. "partnership": "空白",
  3319. "pcList": [
  3320. {
  3321. "dataCode": "空白",
  3322. "dataName": "全产业",
  3323. "tagCode": null
  3324. }
  3325. ],
  3326. "pcChangeList": [],
  3327. "importDate": "2020-03-11 00:00:00",
  3328. "createByDate": "2023-11-23 18:41:59",
  3329. "sevenDayCreateTag": null,
  3330. "linkSize": 0
  3331. },
  3332. {
  3333. "id": "1909152396705473037",
  3334. "center": "长沙",
  3335. "areaCode": "M4301",
  3336. "areaName": "长沙小微",
  3337. "city": "常德市",
  3338. "partScale": 0,
  3339. "zbMoney": 0,
  3340. "custName": "津市市万景家电超市有限公司",
  3341. "custCode": "8800274059",
  3342. "officeAddr": "常德市津市市三洲驿办事处城隍庙社区建设路总工会一楼",
  3343. "industryStr": null,
  3344. "brandStr": null,
  3345. "partUserCount": "0",
  3346. "centerCode": "12403",
  3347. "notAuthCenter": null,
  3348. "cityCode": "430700000000",
  3349. "bigChannelCode": "M",
  3350. "bigChannelName": "直营渠道",
  3351. "smallChannelCode": "HM002",
  3352. "smallChannelName": "准三专海尔家电卖场类",
  3353. "mdmFlag": 1,
  3354. "zhaobMoney": 0.55,
  3355. "zhaobCount": 1,
  3356. "signCount": 0,
  3357. "partnershipDomainALL": null,
  3358. "partnershipDomainPL011": null,
  3359. "partnershipDomainPL005": null,
  3360. "partnershipDomainPL002": null,
  3361. "partnershipDomainPL001": null,
  3362. "partnershipDomainSPL007": null,
  3363. "partnershipDomainSPL006": null,
  3364. "partnershipDomainPL003": null,
  3365. "partnershipDomainPL007": null,
  3366. "partnershipDomainPL006": null,
  3367. "potentialList": [
  3368. {
  3369. "dataCode": "中",
  3370. "dataName": "家用空调",
  3371. "tagCode": null
  3372. }
  3373. ],
  3374. "qzType": 0,
  3375. "qzFlag": 2,
  3376. "enterpriseId": null,
  3377. "nowZhaobMoneyD": 0,
  3378. "historyZhaobMoneyD": 0,
  3379. "nowZhaobMoney": "0",
  3380. "historyZhaobMoney": "0",
  3381. "collaborationChanges": null,
  3382. "collaborationChangesReduce": null,
  3383. "partnerType": null,
  3384. "partnerTypeCode": null,
  3385. "oneYearZhongbD": 0,
  3386. "historyZhongbD": 1,
  3387. "oneYearZhongb": "0",
  3388. "historyZhongb": "1",
  3389. "shareUserCode": null,
  3390. "shareUserName": null,
  3391. "pcShareUserName": null,
  3392. "legalPerson": null,
  3393. "registerDate": null,
  3394. "registerAmount": null,
  3395. "address": null,
  3396. "partnershipList": [],
  3397. "certificateList": [],
  3398. "partnership": "空白",
  3399. "pcList": [
  3400. {
  3401. "dataCode": "空白",
  3402. "dataName": "全产业",
  3403. "tagCode": null
  3404. },
  3405. {
  3406. "dataCode": "中",
  3407. "dataName": "家用空调",
  3408. "tagCode": null
  3409. }
  3410. ],
  3411. "pcChangeList": [],
  3412. "importDate": "2018-04-26 19:33:54",
  3413. "createByDate": "2025-04-07 15:52:58",
  3414. "sevenDayCreateTag": null,
  3415. "linkSize": 0
  3416. },
  3417. {
  3418. "id": "1909152396688695963",
  3419. "center": "长沙",
  3420. "areaCode": "M4301",
  3421. "areaName": "长沙小微",
  3422. "city": "长沙市",
  3423. "partScale": 124.05,
  3424. "zbMoney": 0,
  3425. "custName": "湖南能拓楼宇节能技术有限公司",
  3426. "custCode": "8800537844",
  3427. "officeAddr": "长沙高新开发区桐梓坡西路189号(泰宝创业基地)五楼",
  3428. "industryStr": "商用空调(1)",
  3429. "brandStr": "海尔",
  3430. "partUserCount": "2",
  3431. "centerCode": "12403",
  3432. "notAuthCenter": null,
  3433. "cityCode": "430100000000",
  3434. "bigChannelCode": "M",
  3435. "bigChannelName": "直营渠道",
  3436. "smallChannelCode": "HA007",
  3437. "smallChannelName": "纯三专工程类",
  3438. "mdmFlag": 1,
  3439. "zhaobMoney": 0,
  3440. "zhaobCount": 0,
  3441. "signCount": 2,
  3442. "partnershipDomainALL": null,
  3443. "partnershipDomainPL011": null,
  3444. "partnershipDomainPL005": null,
  3445. "partnershipDomainPL002": null,
  3446. "partnershipDomainPL001": null,
  3447. "partnershipDomainSPL007": null,
  3448. "partnershipDomainSPL006": null,
  3449. "partnershipDomainPL003": null,
  3450. "partnershipDomainPL007": null,
  3451. "partnershipDomainPL006": null,
  3452. "potentialList": [
  3453. {
  3454. "dataCode": "中",
  3455. "dataName": "智慧楼宇",
  3456. "tagCode": null
  3457. }
  3458. ],
  3459. "qzType": 0,
  3460. "qzFlag": 2,
  3461. "enterpriseId": null,
  3462. "nowZhaobMoneyD": 0,
  3463. "historyZhaobMoneyD": 0,
  3464. "nowZhaobMoney": "0",
  3465. "historyZhaobMoney": "0",
  3466. "collaborationChanges": null,
  3467. "collaborationChangesReduce": null,
  3468. "partnerType": null,
  3469. "partnerTypeCode": null,
  3470. "oneYearZhongbD": 0,
  3471. "historyZhongbD": 0,
  3472. "oneYearZhongb": "0",
  3473. "historyZhongb": "0",
  3474. "shareUserCode": "01291311",
  3475. "shareUserName": "袁超",
  3476. "pcShareUserName": "袁超(智慧楼宇)",
  3477. "legalPerson": null,
  3478. "registerDate": null,
  3479. "registerAmount": null,
  3480. "address": null,
  3481. "partnershipList": [
  3482. {
  3483. "dataCode": "薄弱",
  3484. "dataName": "智慧楼宇",
  3485. "tagCode": "8800537844"
  3486. }
  3487. ],
  3488. "certificateList": [],
  3489. "partnership": "薄弱",
  3490. "pcList": [
  3491. {
  3492. "dataCode": "薄弱",
  3493. "dataName": "全产业",
  3494. "tagCode": null
  3495. },
  3496. {
  3497. "dataCode": "薄弱",
  3498. "dataName": "智慧楼宇",
  3499. "tagCode": "8800537844"
  3500. },
  3501. {
  3502. "dataCode": "中",
  3503. "dataName": "智慧楼宇",
  3504. "tagCode": null
  3505. }
  3506. ],
  3507. "pcChangeList": [],
  3508. "importDate": "2023-09-22 14:10:21",
  3509. "createByDate": "2025-04-07 15:52:57",
  3510. "sevenDayCreateTag": null,
  3511. "linkSize": 0
  3512. },
  3513. {
  3514. "id": "2014080106628832",
  3515. "center": "长沙",
  3516. "areaCode": "M4301",
  3517. "areaName": "长沙小微",
  3518. "city": null,
  3519. "partScale": 0,
  3520. "zbMoney": 0,
  3521. "custName": "湘潭浩兴电器贸易有限公司(金融空调户)",
  3522. "custCode": "C200070633",
  3523. "officeAddr": "易俗河镇海棠南路637号",
  3524. "industryStr": null,
  3525. "brandStr": null,
  3526. "partUserCount": "0",
  3527. "centerCode": "12403",
  3528. "notAuthCenter": null,
  3529. "cityCode": null,
  3530. "bigChannelCode": "M",
  3531. "bigChannelName": "直营渠道",
  3532. "smallChannelCode": "TA001",
  3533. "smallChannelName": "纯三专统帅成套专卖类",
  3534. "mdmFlag": 1,
  3535. "zhaobMoney": 0,
  3536. "zhaobCount": 0,
  3537. "signCount": 0,
  3538. "partnershipDomainALL": null,
  3539. "partnershipDomainPL011": null,
  3540. "partnershipDomainPL005": null,
  3541. "partnershipDomainPL002": null,
  3542. "partnershipDomainPL001": null,
  3543. "partnershipDomainSPL007": null,
  3544. "partnershipDomainSPL006": null,
  3545. "partnershipDomainPL003": null,
  3546. "partnershipDomainPL007": null,
  3547. "partnershipDomainPL006": null,
  3548. "potentialList": [],
  3549. "qzType": 0,
  3550. "qzFlag": 0,
  3551. "enterpriseId": null,
  3552. "nowZhaobMoneyD": 0,
  3553. "historyZhaobMoneyD": 0,
  3554. "nowZhaobMoney": "0",
  3555. "historyZhaobMoney": "0",
  3556. "collaborationChanges": null,
  3557. "collaborationChangesReduce": null,
  3558. "partnerType": null,
  3559. "partnerTypeCode": null,
  3560. "oneYearZhongbD": 0,
  3561. "historyZhongbD": 0,
  3562. "oneYearZhongb": "0",
  3563. "historyZhongb": "0",
  3564. "shareUserCode": null,
  3565. "shareUserName": null,
  3566. "pcShareUserName": null,
  3567. "legalPerson": null,
  3568. "registerDate": null,
  3569. "registerAmount": null,
  3570. "address": null,
  3571. "partnershipList": [],
  3572. "certificateList": [],
  3573. "partnership": "空白",
  3574. "pcList": [
  3575. {
  3576. "dataCode": "空白",
  3577. "dataName": "全产业",
  3578. "tagCode": null
  3579. }
  3580. ],
  3581. "pcChangeList": [],
  3582. "importDate": "2014-08-01 10:22:35",
  3583. "createByDate": "2023-11-23 18:48:48",
  3584. "sevenDayCreateTag": null,
  3585. "linkSize": 0
  3586. },
  3587. {
  3588. "id": "2024071488443893",
  3589. "center": "长沙",
  3590. "areaCode": "M4301",
  3591. "areaName": "长沙小微",
  3592. "city": "长沙市",
  3593. "partScale": 0,
  3594. "zbMoney": 0,
  3595. "custName": "宜春市麦云舒适环境工程有限公司星沙大润发建材水联网前置店",
  3596. "custCode": "8800579375",
  3597. "officeAddr": "长沙市长沙县东四路大润发建材109号",
  3598. "industryStr": null,
  3599. "brandStr": null,
  3600. "partUserCount": "0",
  3601. "centerCode": "12403",
  3602. "notAuthCenter": null,
  3603. "cityCode": "430100000000",
  3604. "bigChannelCode": "M",
  3605. "bigChannelName": "直营渠道",
  3606. "smallChannelCode": "HA024",
  3607. "smallChannelName": "纯三专水联网前置类客户",
  3608. "mdmFlag": 1,
  3609. "zhaobMoney": 0,
  3610. "zhaobCount": 0,
  3611. "signCount": 0,
  3612. "partnershipDomainALL": null,
  3613. "partnershipDomainPL011": null,
  3614. "partnershipDomainPL005": null,
  3615. "partnershipDomainPL002": null,
  3616. "partnershipDomainPL001": null,
  3617. "partnershipDomainSPL007": null,
  3618. "partnershipDomainSPL006": null,
  3619. "partnershipDomainPL003": null,
  3620. "partnershipDomainPL007": null,
  3621. "partnershipDomainPL006": null,
  3622. "potentialList": [],
  3623. "qzType": 0,
  3624. "qzFlag": 0,
  3625. "enterpriseId": null,
  3626. "nowZhaobMoneyD": 0,
  3627. "historyZhaobMoneyD": 0,
  3628. "nowZhaobMoney": "0",
  3629. "historyZhaobMoney": "0",
  3630. "collaborationChanges": null,
  3631. "collaborationChangesReduce": null,
  3632. "partnerType": null,
  3633. "partnerTypeCode": null,
  3634. "oneYearZhongbD": 0,
  3635. "historyZhongbD": 0,
  3636. "oneYearZhongb": "0",
  3637. "historyZhongb": "0",
  3638. "shareUserCode": null,
  3639. "shareUserName": null,
  3640. "pcShareUserName": null,
  3641. "legalPerson": null,
  3642. "registerDate": null,
  3643. "registerAmount": null,
  3644. "address": null,
  3645. "partnershipList": [],
  3646. "certificateList": [],
  3647. "partnership": "空白",
  3648. "pcList": [
  3649. {
  3650. "dataCode": "空白",
  3651. "dataName": "全产业",
  3652. "tagCode": null
  3653. }
  3654. ],
  3655. "pcChangeList": [],
  3656. "importDate": "2024-07-14 16:21:59",
  3657. "createByDate": "2024-07-15 02:50:01",
  3658. "sevenDayCreateTag": null,
  3659. "linkSize": 0
  3660. },
  3661. {
  3662. "id": "2022082216958827",
  3663. "center": "长沙",
  3664. "areaCode": "M4301",
  3665. "areaName": "长沙小微",
  3666. "city": null,
  3667. "partScale": 0,
  3668. "zbMoney": 0,
  3669. "custName": "湖南仁丰环保科技有限公司",
  3670. "custCode": "8800484710",
  3671. "officeAddr": "长沙市天心区新开铺路18号新新家园A、B栋A-4单元211号房",
  3672. "industryStr": null,
  3673. "brandStr": null,
  3674. "partUserCount": "0",
  3675. "centerCode": "12403",
  3676. "notAuthCenter": null,
  3677. "cityCode": null,
  3678. "bigChannelCode": "M",
  3679. "bigChannelName": "直营渠道",
  3680. "smallChannelCode": "HA007",
  3681. "smallChannelName": "纯三专工程类",
  3682. "mdmFlag": 1,
  3683. "zhaobMoney": 0,
  3684. "zhaobCount": 1,
  3685. "signCount": 0,
  3686. "partnershipDomainALL": null,
  3687. "partnershipDomainPL011": null,
  3688. "partnershipDomainPL005": null,
  3689. "partnershipDomainPL002": null,
  3690. "partnershipDomainPL001": null,
  3691. "partnershipDomainSPL007": null,
  3692. "partnershipDomainSPL006": null,
  3693. "partnershipDomainPL003": null,
  3694. "partnershipDomainPL007": null,
  3695. "partnershipDomainPL006": null,
  3696. "potentialList": [],
  3697. "qzType": 0,
  3698. "qzFlag": 0,
  3699. "enterpriseId": null,
  3700. "nowZhaobMoneyD": 0,
  3701. "historyZhaobMoneyD": 0,
  3702. "nowZhaobMoney": "0",
  3703. "historyZhaobMoney": "0",
  3704. "collaborationChanges": null,
  3705. "collaborationChangesReduce": null,
  3706. "partnerType": null,
  3707. "partnerTypeCode": null,
  3708. "oneYearZhongbD": 0,
  3709. "historyZhongbD": 0,
  3710. "oneYearZhongb": "0",
  3711. "historyZhongb": "0",
  3712. "shareUserCode": null,
  3713. "shareUserName": null,
  3714. "pcShareUserName": null,
  3715. "legalPerson": null,
  3716. "registerDate": null,
  3717. "registerAmount": null,
  3718. "address": null,
  3719. "partnershipList": [],
  3720. "certificateList": [],
  3721. "partnership": "空白",
  3722. "pcList": [
  3723. {
  3724. "dataCode": "空白",
  3725. "dataName": "全产业",
  3726. "tagCode": null
  3727. }
  3728. ],
  3729. "pcChangeList": [],
  3730. "importDate": "2022-08-22 10:17:09",
  3731. "createByDate": "2023-11-23 18:40:28",
  3732. "sevenDayCreateTag": null,
  3733. "linkSize": 0
  3734. },
  3735. {
  3736. "id": "2018051715719931",
  3737. "center": "长沙",
  3738. "areaCode": "M4301",
  3739. "areaName": "长沙小微",
  3740. "city": null,
  3741. "partScale": 0,
  3742. "zbMoney": 0,
  3743. "custName": "(押金户)永州市真诚到永远家电有限公司",
  3744. "custCode": "C200133138",
  3745. "officeAddr": "永州市零陵区芝山北路8号门面",
  3746. "industryStr": null,
  3747. "brandStr": null,
  3748. "partUserCount": "0",
  3749. "centerCode": "12403",
  3750. "notAuthCenter": null,
  3751. "cityCode": "",
  3752. "bigChannelCode": "M",
  3753. "bigChannelName": "直营渠道",
  3754. "smallChannelCode": "HA001",
  3755. "smallChannelName": "纯三专海尔成套专卖类",
  3756. "mdmFlag": 1,
  3757. "zhaobMoney": 0,
  3758. "zhaobCount": 0,
  3759. "signCount": 0,
  3760. "partnershipDomainALL": null,
  3761. "partnershipDomainPL011": null,
  3762. "partnershipDomainPL005": null,
  3763. "partnershipDomainPL002": null,
  3764. "partnershipDomainPL001": null,
  3765. "partnershipDomainSPL007": null,
  3766. "partnershipDomainSPL006": null,
  3767. "partnershipDomainPL003": null,
  3768. "partnershipDomainPL007": null,
  3769. "partnershipDomainPL006": null,
  3770. "potentialList": [],
  3771. "qzType": 0,
  3772. "qzFlag": 0,
  3773. "enterpriseId": null,
  3774. "nowZhaobMoneyD": 0,
  3775. "historyZhaobMoneyD": 0,
  3776. "nowZhaobMoney": "0",
  3777. "historyZhaobMoney": "0",
  3778. "collaborationChanges": null,
  3779. "collaborationChangesReduce": null,
  3780. "partnerType": null,
  3781. "partnerTypeCode": null,
  3782. "oneYearZhongbD": 0,
  3783. "historyZhongbD": 0,
  3784. "oneYearZhongb": "0",
  3785. "historyZhongb": "0",
  3786. "shareUserCode": null,
  3787. "shareUserName": null,
  3788. "pcShareUserName": null,
  3789. "legalPerson": null,
  3790. "registerDate": null,
  3791. "registerAmount": null,
  3792. "address": null,
  3793. "partnershipList": [],
  3794. "certificateList": [],
  3795. "partnership": "空白",
  3796. "pcList": [
  3797. {
  3798. "dataCode": "空白",
  3799. "dataName": "全产业",
  3800. "tagCode": null
  3801. }
  3802. ],
  3803. "pcChangeList": [],
  3804. "importDate": "2018-05-17 17:18:10",
  3805. "createByDate": "2023-11-23 18:47:55",
  3806. "sevenDayCreateTag": null,
  3807. "linkSize": 0
  3808. },
  3809. {
  3810. "id": "2018110923344746",
  3811. "center": "长沙",
  3812. "areaCode": "M4301",
  3813. "areaName": "长沙小微",
  3814. "city": null,
  3815. "partScale": 0,
  3816. "zbMoney": 0,
  3817. "custName": "长沙市森彩文化传播有限公司(顺逛专户)",
  3818. "custCode": "C200087320",
  3819. "officeAddr": "长沙市开福区秀峰街道大塘基社区八组149号",
  3820. "industryStr": null,
  3821. "brandStr": null,
  3822. "partUserCount": "0",
  3823. "centerCode": "12403",
  3824. "notAuthCenter": null,
  3825. "cityCode": null,
  3826. "bigChannelCode": "M",
  3827. "bigChannelName": "直营渠道",
  3828. "smallChannelCode": "HA007",
  3829. "smallChannelName": "纯三专工程类",
  3830. "mdmFlag": 1,
  3831. "zhaobMoney": 0,
  3832. "zhaobCount": 0,
  3833. "signCount": 0,
  3834. "partnershipDomainALL": null,
  3835. "partnershipDomainPL011": null,
  3836. "partnershipDomainPL005": null,
  3837. "partnershipDomainPL002": null,
  3838. "partnershipDomainPL001": null,
  3839. "partnershipDomainSPL007": null,
  3840. "partnershipDomainSPL006": null,
  3841. "partnershipDomainPL003": null,
  3842. "partnershipDomainPL007": null,
  3843. "partnershipDomainPL006": null,
  3844. "potentialList": [],
  3845. "qzType": 0,
  3846. "qzFlag": 0,
  3847. "enterpriseId": null,
  3848. "nowZhaobMoneyD": 0,
  3849. "historyZhaobMoneyD": 0,
  3850. "nowZhaobMoney": "0",
  3851. "historyZhaobMoney": "0",
  3852. "collaborationChanges": null,
  3853. "collaborationChangesReduce": null,
  3854. "partnerType": null,
  3855. "partnerTypeCode": null,
  3856. "oneYearZhongbD": 0,
  3857. "historyZhongbD": 0,
  3858. "oneYearZhongb": "0",
  3859. "historyZhongb": "0",
  3860. "shareUserCode": null,
  3861. "shareUserName": null,
  3862. "pcShareUserName": null,
  3863. "legalPerson": null,
  3864. "registerDate": null,
  3865. "registerAmount": null,
  3866. "address": null,
  3867. "partnershipList": [],
  3868. "certificateList": [],
  3869. "partnership": "空白",
  3870. "pcList": [
  3871. {
  3872. "dataCode": "空白",
  3873. "dataName": "全产业",
  3874. "tagCode": null
  3875. }
  3876. ],
  3877. "pcChangeList": [],
  3878. "importDate": "2018-11-09 13:15:47",
  3879. "createByDate": "2023-11-23 18:48:15",
  3880. "sevenDayCreateTag": null,
  3881. "linkSize": 0
  3882. },
  3883. {
  3884. "id": "2025031755876759",
  3885. "center": "长沙",
  3886. "areaCode": "M4301",
  3887. "areaName": "长沙小微",
  3888. "city": "邵阳市",
  3889. "partScale": 0,
  3890. "zbMoney": 0,
  3891. "custName": "邵东市博诚电器销售有限公司空气店",
  3892. "custCode": "8800621111",
  3893. "officeAddr": "邵阳市邵东市邵东家电城三路50号",
  3894. "industryStr": null,
  3895. "brandStr": null,
  3896. "partUserCount": "0",
  3897. "centerCode": "12403",
  3898. "notAuthCenter": null,
  3899. "cityCode": "430500000000",
  3900. "bigChannelCode": "M",
  3901. "bigChannelName": "直营渠道",
  3902. "smallChannelCode": "HA001",
  3903. "smallChannelName": "纯三专海尔成套专卖类",
  3904. "mdmFlag": 1,
  3905. "zhaobMoney": 0,
  3906. "zhaobCount": 0,
  3907. "signCount": 0,
  3908. "partnershipDomainALL": null,
  3909. "partnershipDomainPL011": null,
  3910. "partnershipDomainPL005": null,
  3911. "partnershipDomainPL002": null,
  3912. "partnershipDomainPL001": null,
  3913. "partnershipDomainSPL007": null,
  3914. "partnershipDomainSPL006": null,
  3915. "partnershipDomainPL003": null,
  3916. "partnershipDomainPL007": null,
  3917. "partnershipDomainPL006": null,
  3918. "potentialList": [],
  3919. "qzType": 0,
  3920. "qzFlag": 0,
  3921. "enterpriseId": null,
  3922. "nowZhaobMoneyD": 0,
  3923. "historyZhaobMoneyD": 0,
  3924. "nowZhaobMoney": "0",
  3925. "historyZhaobMoney": "0",
  3926. "collaborationChanges": null,
  3927. "collaborationChangesReduce": null,
  3928. "partnerType": null,
  3929. "partnerTypeCode": null,
  3930. "oneYearZhongbD": 0,
  3931. "historyZhongbD": 0,
  3932. "oneYearZhongb": "0",
  3933. "historyZhongb": "0",
  3934. "shareUserCode": null,
  3935. "shareUserName": null,
  3936. "pcShareUserName": null,
  3937. "legalPerson": null,
  3938. "registerDate": null,
  3939. "registerAmount": null,
  3940. "address": null,
  3941. "partnershipList": [],
  3942. "certificateList": [],
  3943. "partnership": "空白",
  3944. "pcList": [
  3945. {
  3946. "dataCode": "空白",
  3947. "dataName": "全产业",
  3948. "tagCode": null
  3949. }
  3950. ],
  3951. "pcChangeList": [],
  3952. "importDate": "2025-03-17 20:08:19",
  3953. "createByDate": "2025-03-18 02:50:03",
  3954. "sevenDayCreateTag": null,
  3955. "linkSize": 0
  3956. },
  3957. {
  3958. "id": "2019042885860030",
  3959. "center": "长沙",
  3960. "areaCode": "M4301",
  3961. "areaName": "长沙小微",
  3962. "city": "长沙市",
  3963. "partScale": 0,
  3964. "zbMoney": 0,
  3965. "custName": "(空调户)长沙鑫升源电器有限公司",
  3966. "custCode": "C200135963",
  3967. "officeAddr": "长沙市望城区丁字湾街道双桥村湾田国际商贸物流园2楼0817588栋1197号",
  3968. "industryStr": null,
  3969. "brandStr": null,
  3970. "partUserCount": "0",
  3971. "centerCode": "12403",
  3972. "notAuthCenter": null,
  3973. "cityCode": "430100000000",
  3974. "bigChannelCode": "M",
  3975. "bigChannelName": "直营渠道",
  3976. "smallChannelCode": "HA022",
  3977. "smallChannelName": "海尔智家云",
  3978. "mdmFlag": 1,
  3979. "zhaobMoney": 0,
  3980. "zhaobCount": 0,
  3981. "signCount": 0,
  3982. "partnershipDomainALL": null,
  3983. "partnershipDomainPL011": null,
  3984. "partnershipDomainPL005": null,
  3985. "partnershipDomainPL002": null,
  3986. "partnershipDomainPL001": null,
  3987. "partnershipDomainSPL007": null,
  3988. "partnershipDomainSPL006": null,
  3989. "partnershipDomainPL003": null,
  3990. "partnershipDomainPL007": null,
  3991. "partnershipDomainPL006": null,
  3992. "potentialList": [],
  3993. "qzType": 0,
  3994. "qzFlag": 0,
  3995. "enterpriseId": null,
  3996. "nowZhaobMoneyD": 0,
  3997. "historyZhaobMoneyD": 0,
  3998. "nowZhaobMoney": "0",
  3999. "historyZhaobMoney": "0",
  4000. "collaborationChanges": null,
  4001. "collaborationChangesReduce": null,
  4002. "partnerType": null,
  4003. "partnerTypeCode": null,
  4004. "oneYearZhongbD": 0,
  4005. "historyZhongbD": 0,
  4006. "oneYearZhongb": "0",
  4007. "historyZhongb": "0",
  4008. "shareUserCode": null,
  4009. "shareUserName": null,
  4010. "pcShareUserName": null,
  4011. "legalPerson": null,
  4012. "registerDate": null,
  4013. "registerAmount": null,
  4014. "address": null,
  4015. "partnershipList": [],
  4016. "certificateList": [],
  4017. "partnership": "空白",
  4018. "pcList": [
  4019. {
  4020. "dataCode": "空白",
  4021. "dataName": "全产业",
  4022. "tagCode": null
  4023. }
  4024. ],
  4025. "pcChangeList": [],
  4026. "importDate": "2019-04-28 00:00:00",
  4027. "createByDate": "2023-11-23 18:42:32",
  4028. "sevenDayCreateTag": null,
  4029. "linkSize": 0
  4030. },
  4031. {
  4032. "id": "2012040956727902",
  4033. "center": "长沙",
  4034. "areaCode": "M4301",
  4035. "areaName": "长沙小微",
  4036. "city": null,
  4037. "partScale": 0,
  4038. "zbMoney": 0,
  4039. "custName": "(工程押金户)常德市鼎城湘通电脑电器有限公司",
  4040. "custCode": "C200056403",
  4041. "officeAddr": "桥南新世纪家电城",
  4042. "industryStr": null,
  4043. "brandStr": null,
  4044. "partUserCount": "0",
  4045. "centerCode": "12403",
  4046. "notAuthCenter": null,
  4047. "cityCode": null,
  4048. "bigChannelCode": "M",
  4049. "bigChannelName": "直营渠道",
  4050. "smallChannelCode": "HA001",
  4051. "smallChannelName": "纯三专海尔成套专卖类",
  4052. "mdmFlag": 1,
  4053. "zhaobMoney": 0,
  4054. "zhaobCount": 0,
  4055. "signCount": 0,
  4056. "partnershipDomainALL": null,
  4057. "partnershipDomainPL011": null,
  4058. "partnershipDomainPL005": null,
  4059. "partnershipDomainPL002": null,
  4060. "partnershipDomainPL001": null,
  4061. "partnershipDomainSPL007": null,
  4062. "partnershipDomainSPL006": null,
  4063. "partnershipDomainPL003": null,
  4064. "partnershipDomainPL007": null,
  4065. "partnershipDomainPL006": null,
  4066. "potentialList": [],
  4067. "qzType": 0,
  4068. "qzFlag": 0,
  4069. "enterpriseId": null,
  4070. "nowZhaobMoneyD": 0,
  4071. "historyZhaobMoneyD": 0,
  4072. "nowZhaobMoney": "0",
  4073. "historyZhaobMoney": "0",
  4074. "collaborationChanges": null,
  4075. "collaborationChangesReduce": null,
  4076. "partnerType": null,
  4077. "partnerTypeCode": null,
  4078. "oneYearZhongbD": 0,
  4079. "historyZhongbD": 0,
  4080. "oneYearZhongb": "0",
  4081. "historyZhongb": "0",
  4082. "shareUserCode": null,
  4083. "shareUserName": null,
  4084. "pcShareUserName": null,
  4085. "legalPerson": null,
  4086. "registerDate": null,
  4087. "registerAmount": null,
  4088. "address": null,
  4089. "partnershipList": [],
  4090. "certificateList": [],
  4091. "partnership": "空白",
  4092. "pcList": [
  4093. {
  4094. "dataCode": "空白",
  4095. "dataName": "全产业",
  4096. "tagCode": null
  4097. }
  4098. ],
  4099. "pcChangeList": [],
  4100. "importDate": "2012-04-09 17:20:48",
  4101. "createByDate": "2023-11-23 18:47:33",
  4102. "sevenDayCreateTag": null,
  4103. "linkSize": 0
  4104. },
  4105. {
  4106. "id": "2020030910343423",
  4107. "center": "长沙",
  4108. "areaCode": "M4301",
  4109. "areaName": "长沙小微",
  4110. "city": null,
  4111. "partScale": 0,
  4112. "zbMoney": 0,
  4113. "custName": "(金融户)蓝山县成钢电器有限公司",
  4114. "custCode": "C200139629",
  4115. "officeAddr": "蓝山县塔峰镇城东北路290号",
  4116. "industryStr": null,
  4117. "brandStr": null,
  4118. "partUserCount": "0",
  4119. "centerCode": "12403",
  4120. "notAuthCenter": null,
  4121. "cityCode": null,
  4122. "bigChannelCode": "M",
  4123. "bigChannelName": "直营渠道",
  4124. "smallChannelCode": "HM002",
  4125. "smallChannelName": "准三专海尔家电卖场类",
  4126. "mdmFlag": 1,
  4127. "zhaobMoney": 0,
  4128. "zhaobCount": 0,
  4129. "signCount": 0,
  4130. "partnershipDomainALL": null,
  4131. "partnershipDomainPL011": null,
  4132. "partnershipDomainPL005": null,
  4133. "partnershipDomainPL002": null,
  4134. "partnershipDomainPL001": null,
  4135. "partnershipDomainSPL007": null,
  4136. "partnershipDomainSPL006": null,
  4137. "partnershipDomainPL003": null,
  4138. "partnershipDomainPL007": null,
  4139. "partnershipDomainPL006": null,
  4140. "potentialList": [],
  4141. "qzType": 0,
  4142. "qzFlag": 0,
  4143. "enterpriseId": null,
  4144. "nowZhaobMoneyD": 0,
  4145. "historyZhaobMoneyD": 0,
  4146. "nowZhaobMoney": "0",
  4147. "historyZhaobMoney": "0",
  4148. "collaborationChanges": null,
  4149. "collaborationChangesReduce": null,
  4150. "partnerType": null,
  4151. "partnerTypeCode": null,
  4152. "oneYearZhongbD": 0,
  4153. "historyZhongbD": 0,
  4154. "oneYearZhongb": "0",
  4155. "historyZhongb": "0",
  4156. "shareUserCode": null,
  4157. "shareUserName": null,
  4158. "pcShareUserName": null,
  4159. "legalPerson": null,
  4160. "registerDate": null,
  4161. "registerAmount": null,
  4162. "address": null,
  4163. "partnershipList": [],
  4164. "certificateList": [],
  4165. "partnership": "空白",
  4166. "pcList": [
  4167. {
  4168. "dataCode": "空白",
  4169. "dataName": "全产业",
  4170. "tagCode": null
  4171. }
  4172. ],
  4173. "pcChangeList": [],
  4174. "importDate": "2020-03-09 00:00:00",
  4175. "createByDate": "2023-11-23 18:42:01",
  4176. "sevenDayCreateTag": null,
  4177. "linkSize": 0
  4178. },
  4179. {
  4180. "id": "2024041701891833",
  4181. "center": "长沙",
  4182. "areaCode": "M4301",
  4183. "areaName": "长沙小微",
  4184. "city": "湘潭市",
  4185. "partScale": 0,
  4186. "zbMoney": 0,
  4187. "custName": "湘潭旭天贸易有限公司红星美凯龙卡萨帝店",
  4188. "custCode": "8800567254",
  4189. "officeAddr": "湘潭市湘潭九华示范区红星美凯龙建材城一楼",
  4190. "industryStr": null,
  4191. "brandStr": null,
  4192. "partUserCount": "0",
  4193. "centerCode": "12403",
  4194. "notAuthCenter": null,
  4195. "cityCode": "430300000000",
  4196. "bigChannelCode": "M",
  4197. "bigChannelName": "直营渠道",
  4198. "smallChannelCode": "HA001",
  4199. "smallChannelName": "纯三专海尔成套专卖类",
  4200. "mdmFlag": 1,
  4201. "zhaobMoney": 0,
  4202. "zhaobCount": 0,
  4203. "signCount": 0,
  4204. "partnershipDomainALL": null,
  4205. "partnershipDomainPL011": null,
  4206. "partnershipDomainPL005": null,
  4207. "partnershipDomainPL002": null,
  4208. "partnershipDomainPL001": null,
  4209. "partnershipDomainSPL007": null,
  4210. "partnershipDomainSPL006": null,
  4211. "partnershipDomainPL003": null,
  4212. "partnershipDomainPL007": null,
  4213. "partnershipDomainPL006": null,
  4214. "potentialList": [],
  4215. "qzType": 0,
  4216. "qzFlag": 0,
  4217. "enterpriseId": null,
  4218. "nowZhaobMoneyD": 0,
  4219. "historyZhaobMoneyD": 0,
  4220. "nowZhaobMoney": "0",
  4221. "historyZhaobMoney": "0",
  4222. "collaborationChanges": null,
  4223. "collaborationChangesReduce": null,
  4224. "partnerType": null,
  4225. "partnerTypeCode": null,
  4226. "oneYearZhongbD": 0,
  4227. "historyZhongbD": 0,
  4228. "oneYearZhongb": "0",
  4229. "historyZhongb": "0",
  4230. "shareUserCode": null,
  4231. "shareUserName": null,
  4232. "pcShareUserName": null,
  4233. "legalPerson": null,
  4234. "registerDate": null,
  4235. "registerAmount": null,
  4236. "address": null,
  4237. "partnershipList": [],
  4238. "certificateList": [],
  4239. "partnership": "空白",
  4240. "pcList": [
  4241. {
  4242. "dataCode": "空白",
  4243. "dataName": "全产业",
  4244. "tagCode": null
  4245. }
  4246. ],
  4247. "pcChangeList": [],
  4248. "importDate": "2024-04-17 14:54:49",
  4249. "createByDate": "2024-04-18 02:50:03",
  4250. "sevenDayCreateTag": null,
  4251. "linkSize": 0
  4252. },
  4253. {
  4254. "id": "2024012983922824",
  4255. "center": "长沙",
  4256. "areaCode": "M4301",
  4257. "areaName": "长沙小微",
  4258. "city": "长沙市",
  4259. "partScale": 0,
  4260. "zbMoney": 0,
  4261. "custName": "长沙市和美电器贸易有限公司名匠洗护专营店",
  4262. "custCode": "8800557183",
  4263. "officeAddr": "长沙市雨花区天下一家嘉园",
  4264. "industryStr": null,
  4265. "brandStr": null,
  4266. "partUserCount": "0",
  4267. "centerCode": "12403",
  4268. "notAuthCenter": null,
  4269. "cityCode": "430100000000",
  4270. "bigChannelCode": "M",
  4271. "bigChannelName": "直营渠道",
  4272. "smallChannelCode": "HA001",
  4273. "smallChannelName": "纯三专海尔成套专卖类",
  4274. "mdmFlag": 1,
  4275. "zhaobMoney": 0,
  4276. "zhaobCount": 0,
  4277. "signCount": 0,
  4278. "partnershipDomainALL": null,
  4279. "partnershipDomainPL011": null,
  4280. "partnershipDomainPL005": null,
  4281. "partnershipDomainPL002": null,
  4282. "partnershipDomainPL001": null,
  4283. "partnershipDomainSPL007": null,
  4284. "partnershipDomainSPL006": null,
  4285. "partnershipDomainPL003": null,
  4286. "partnershipDomainPL007": null,
  4287. "partnershipDomainPL006": null,
  4288. "potentialList": [],
  4289. "qzType": 0,
  4290. "qzFlag": 0,
  4291. "enterpriseId": null,
  4292. "nowZhaobMoneyD": 0,
  4293. "historyZhaobMoneyD": 0,
  4294. "nowZhaobMoney": "0",
  4295. "historyZhaobMoney": "0",
  4296. "collaborationChanges": null,
  4297. "collaborationChangesReduce": null,
  4298. "partnerType": null,
  4299. "partnerTypeCode": null,
  4300. "oneYearZhongbD": 0,
  4301. "historyZhongbD": 0,
  4302. "oneYearZhongb": "0",
  4303. "historyZhongb": "0",
  4304. "shareUserCode": null,
  4305. "shareUserName": null,
  4306. "pcShareUserName": null,
  4307. "legalPerson": null,
  4308. "registerDate": null,
  4309. "registerAmount": null,
  4310. "address": null,
  4311. "partnershipList": [],
  4312. "certificateList": [],
  4313. "partnership": "空白",
  4314. "pcList": [
  4315. {
  4316. "dataCode": "空白",
  4317. "dataName": "全产业",
  4318. "tagCode": null
  4319. }
  4320. ],
  4321. "pcChangeList": [],
  4322. "importDate": "2024-01-29 11:25:32",
  4323. "createByDate": "2024-01-30 02:50:01",
  4324. "sevenDayCreateTag": null,
  4325. "linkSize": 0
  4326. },
  4327. {
  4328. "id": "2024111512897072",
  4329. "center": "长沙",
  4330. "areaCode": "M4301",
  4331. "areaName": "长沙小微",
  4332. "city": "郴州市",
  4333. "partScale": 0,
  4334. "zbMoney": 0,
  4335. "custName": "郴州市北湖区九号电器有限公司",
  4336. "custCode": "8800598608",
  4337. "officeAddr": "湖南省郴州市北湖区郴江街道郴州大道1197号湘南大市场3栋153号",
  4338. "industryStr": null,
  4339. "brandStr": null,
  4340. "partUserCount": "0",
  4341. "centerCode": "12403",
  4342. "notAuthCenter": null,
  4343. "cityCode": "431000000000",
  4344. "bigChannelCode": "M",
  4345. "bigChannelName": "直营渠道",
  4346. "smallChannelCode": "HA011",
  4347. "smallChannelName": "纯三专海尔产品专卖类(净水+热水器)",
  4348. "mdmFlag": 1,
  4349. "zhaobMoney": 0,
  4350. "zhaobCount": 0,
  4351. "signCount": 0,
  4352. "partnershipDomainALL": null,
  4353. "partnershipDomainPL011": null,
  4354. "partnershipDomainPL005": null,
  4355. "partnershipDomainPL002": null,
  4356. "partnershipDomainPL001": null,
  4357. "partnershipDomainSPL007": null,
  4358. "partnershipDomainSPL006": null,
  4359. "partnershipDomainPL003": null,
  4360. "partnershipDomainPL007": null,
  4361. "partnershipDomainPL006": null,
  4362. "potentialList": [],
  4363. "qzType": 0,
  4364. "qzFlag": 0,
  4365. "enterpriseId": null,
  4366. "nowZhaobMoneyD": 0,
  4367. "historyZhaobMoneyD": 0,
  4368. "nowZhaobMoney": "0",
  4369. "historyZhaobMoney": "0",
  4370. "collaborationChanges": null,
  4371. "collaborationChangesReduce": null,
  4372. "partnerType": null,
  4373. "partnerTypeCode": null,
  4374. "oneYearZhongbD": 0,
  4375. "historyZhongbD": 0,
  4376. "oneYearZhongb": "0",
  4377. "historyZhongb": "0",
  4378. "shareUserCode": null,
  4379. "shareUserName": null,
  4380. "pcShareUserName": null,
  4381. "legalPerson": null,
  4382. "registerDate": null,
  4383. "registerAmount": null,
  4384. "address": null,
  4385. "partnershipList": [],
  4386. "certificateList": [],
  4387. "partnership": "空白",
  4388. "pcList": [
  4389. {
  4390. "dataCode": "空白",
  4391. "dataName": "全产业",
  4392. "tagCode": null
  4393. }
  4394. ],
  4395. "pcChangeList": [],
  4396. "importDate": "2024-11-15 10:33:48",
  4397. "createByDate": "2024-11-16 02:50:01",
  4398. "sevenDayCreateTag": null,
  4399. "linkSize": 0
  4400. },
  4401. {
  4402. "id": "2018110923353330",
  4403. "center": "长沙",
  4404. "areaCode": "M4301",
  4405. "areaName": "长沙小微",
  4406. "city": null,
  4407. "partScale": 0,
  4408. "zbMoney": 0,
  4409. "custName": "湖南省创宏工程安装有限公司(顺逛专户)",
  4410. "custCode": "C200091594",
  4411. "officeAddr": "怀化市鹤城区迎丰西路怀客巷50号",
  4412. "industryStr": null,
  4413. "brandStr": null,
  4414. "partUserCount": "0",
  4415. "centerCode": "12403",
  4416. "notAuthCenter": null,
  4417. "cityCode": null,
  4418. "bigChannelCode": "M",
  4419. "bigChannelName": "直营渠道",
  4420. "smallChannelCode": "HM006",
  4421. "smallChannelName": "准三专工程类",
  4422. "mdmFlag": 1,
  4423. "zhaobMoney": 0,
  4424. "zhaobCount": 0,
  4425. "signCount": 0,
  4426. "partnershipDomainALL": null,
  4427. "partnershipDomainPL011": null,
  4428. "partnershipDomainPL005": null,
  4429. "partnershipDomainPL002": null,
  4430. "partnershipDomainPL001": null,
  4431. "partnershipDomainSPL007": null,
  4432. "partnershipDomainSPL006": null,
  4433. "partnershipDomainPL003": null,
  4434. "partnershipDomainPL007": null,
  4435. "partnershipDomainPL006": null,
  4436. "potentialList": [],
  4437. "qzType": 0,
  4438. "qzFlag": 0,
  4439. "enterpriseId": null,
  4440. "nowZhaobMoneyD": 0,
  4441. "historyZhaobMoneyD": 0,
  4442. "nowZhaobMoney": "0",
  4443. "historyZhaobMoney": "0",
  4444. "collaborationChanges": null,
  4445. "collaborationChangesReduce": null,
  4446. "partnerType": null,
  4447. "partnerTypeCode": null,
  4448. "oneYearZhongbD": 0,
  4449. "historyZhongbD": 0,
  4450. "oneYearZhongb": "0",
  4451. "historyZhongb": "0",
  4452. "shareUserCode": null,
  4453. "shareUserName": null,
  4454. "pcShareUserName": null,
  4455. "legalPerson": null,
  4456. "registerDate": null,
  4457. "registerAmount": null,
  4458. "address": null,
  4459. "partnershipList": [],
  4460. "certificateList": [],
  4461. "partnership": "空白",
  4462. "pcList": [
  4463. {
  4464. "dataCode": "空白",
  4465. "dataName": "全产业",
  4466. "tagCode": null
  4467. }
  4468. ],
  4469. "pcChangeList": [],
  4470. "importDate": "2018-11-09 13:16:18",
  4471. "createByDate": "2023-11-23 18:48:07",
  4472. "sevenDayCreateTag": null,
  4473. "linkSize": 0
  4474. },
  4475. {
  4476. "id": "2014042460754487",
  4477. "center": "长沙",
  4478. "areaCode": "M4301",
  4479. "areaName": "长沙小微",
  4480. "city": "长沙市",
  4481. "partScale": 0,
  4482. "zbMoney": 0,
  4483. "custName": "湖南机器人智能科技有限公司",
  4484. "custCode": "8800167976",
  4485. "officeAddr": "湘乡市东山办事处东山村7组励志城邦12号楼1单元106号",
  4486. "industryStr": null,
  4487. "brandStr": null,
  4488. "partUserCount": "0",
  4489. "centerCode": "12403",
  4490. "notAuthCenter": null,
  4491. "cityCode": "430100000000",
  4492. "bigChannelCode": "M",
  4493. "bigChannelName": "直营渠道",
  4494. "smallChannelCode": "HA007",
  4495. "smallChannelName": "纯三专工程类",
  4496. "mdmFlag": 1,
  4497. "zhaobMoney": 0,
  4498. "zhaobCount": 0,
  4499. "signCount": 0,
  4500. "partnershipDomainALL": null,
  4501. "partnershipDomainPL011": null,
  4502. "partnershipDomainPL005": null,
  4503. "partnershipDomainPL002": null,
  4504. "partnershipDomainPL001": null,
  4505. "partnershipDomainSPL007": null,
  4506. "partnershipDomainSPL006": null,
  4507. "partnershipDomainPL003": null,
  4508. "partnershipDomainPL007": null,
  4509. "partnershipDomainPL006": null,
  4510. "potentialList": [],
  4511. "qzType": 0,
  4512. "qzFlag": 0,
  4513. "enterpriseId": null,
  4514. "nowZhaobMoneyD": 0,
  4515. "historyZhaobMoneyD": 0,
  4516. "nowZhaobMoney": "0",
  4517. "historyZhaobMoney": "0",
  4518. "collaborationChanges": null,
  4519. "collaborationChangesReduce": null,
  4520. "partnerType": null,
  4521. "partnerTypeCode": null,
  4522. "oneYearZhongbD": 0,
  4523. "historyZhongbD": 0,
  4524. "oneYearZhongb": "0",
  4525. "historyZhongb": "0",
  4526. "shareUserCode": null,
  4527. "shareUserName": null,
  4528. "pcShareUserName": null,
  4529. "legalPerson": null,
  4530. "registerDate": null,
  4531. "registerAmount": null,
  4532. "address": null,
  4533. "partnershipList": [],
  4534. "certificateList": [],
  4535. "partnership": "空白",
  4536. "pcList": [
  4537. {
  4538. "dataCode": "空白",
  4539. "dataName": "全产业",
  4540. "tagCode": null
  4541. }
  4542. ],
  4543. "pcChangeList": [],
  4544. "importDate": "2014-04-24 12:27:59",
  4545. "createByDate": "2023-11-23 18:44:54",
  4546. "sevenDayCreateTag": null,
  4547. "linkSize": 0
  4548. },
  4549. {
  4550. "id": "2024031209534415",
  4551. "center": "长沙",
  4552. "areaCode": "M4301",
  4553. "areaName": "长沙小微",
  4554. "city": null,
  4555. "partScale": 0,
  4556. "zbMoney": 0,
  4557. "custName": "(金融备货空调户)邵阳市瑞通机电设备有限公司",
  4558. "custCode": "C200094585",
  4559. "officeAddr": "湖南省双清区兴隆街道双清区建材城二期19栋3单元0001002室",
  4560. "industryStr": null,
  4561. "brandStr": null,
  4562. "partUserCount": "0",
  4563. "centerCode": "12403",
  4564. "notAuthCenter": null,
  4565. "cityCode": "",
  4566. "bigChannelCode": "M",
  4567. "bigChannelName": "直营渠道",
  4568. "smallChannelCode": "HA002",
  4569. "smallChannelName": "纯三专海尔产品专卖类(空调)",
  4570. "mdmFlag": 1,
  4571. "zhaobMoney": 0,
  4572. "zhaobCount": 0,
  4573. "signCount": 0,
  4574. "partnershipDomainALL": null,
  4575. "partnershipDomainPL011": null,
  4576. "partnershipDomainPL005": null,
  4577. "partnershipDomainPL002": null,
  4578. "partnershipDomainPL001": null,
  4579. "partnershipDomainSPL007": null,
  4580. "partnershipDomainSPL006": null,
  4581. "partnershipDomainPL003": null,
  4582. "partnershipDomainPL007": null,
  4583. "partnershipDomainPL006": null,
  4584. "potentialList": [],
  4585. "qzType": 0,
  4586. "qzFlag": 0,
  4587. "enterpriseId": null,
  4588. "nowZhaobMoneyD": 0,
  4589. "historyZhaobMoneyD": 0,
  4590. "nowZhaobMoney": "0",
  4591. "historyZhaobMoney": "0",
  4592. "collaborationChanges": null,
  4593. "collaborationChangesReduce": null,
  4594. "partnerType": null,
  4595. "partnerTypeCode": null,
  4596. "oneYearZhongbD": 0,
  4597. "historyZhongbD": 0,
  4598. "oneYearZhongb": "0",
  4599. "historyZhongb": "0",
  4600. "shareUserCode": null,
  4601. "shareUserName": null,
  4602. "pcShareUserName": null,
  4603. "legalPerson": null,
  4604. "registerDate": null,
  4605. "registerAmount": null,
  4606. "address": null,
  4607. "partnershipList": [],
  4608. "certificateList": [],
  4609. "partnership": "空白",
  4610. "pcList": [
  4611. {
  4612. "dataCode": "空白",
  4613. "dataName": "全产业",
  4614. "tagCode": null
  4615. }
  4616. ],
  4617. "pcChangeList": [],
  4618. "importDate": "2024-03-12 00:00:00",
  4619. "createByDate": "2024-03-13 02:50:04",
  4620. "sevenDayCreateTag": null,
  4621. "linkSize": 0
  4622. },
  4623. {
  4624. "id": "2016010765095162",
  4625. "center": "长沙",
  4626. "areaCode": "M4301",
  4627. "areaName": "长沙小微",
  4628. "city": null,
  4629. "partScale": 0,
  4630. "zbMoney": 0,
  4631. "custName": "(押金户)永州市顺美商贸有限公司",
  4632. "custCode": "C200127825",
  4633. "officeAddr": "冷水滩区零陵北路舜德城市摩尔5栋1楼82号",
  4634. "industryStr": null,
  4635. "brandStr": null,
  4636. "partUserCount": "0",
  4637. "centerCode": "12403",
  4638. "notAuthCenter": null,
  4639. "cityCode": "",
  4640. "bigChannelCode": "M",
  4641. "bigChannelName": "直营渠道",
  4642. "smallChannelCode": "HA001",
  4643. "smallChannelName": "纯三专海尔成套专卖类",
  4644. "mdmFlag": 1,
  4645. "zhaobMoney": 0,
  4646. "zhaobCount": 0,
  4647. "signCount": 0,
  4648. "partnershipDomainALL": null,
  4649. "partnershipDomainPL011": null,
  4650. "partnershipDomainPL005": null,
  4651. "partnershipDomainPL002": null,
  4652. "partnershipDomainPL001": null,
  4653. "partnershipDomainSPL007": null,
  4654. "partnershipDomainSPL006": null,
  4655. "partnershipDomainPL003": null,
  4656. "partnershipDomainPL007": null,
  4657. "partnershipDomainPL006": null,
  4658. "potentialList": [],
  4659. "qzType": 0,
  4660. "qzFlag": 0,
  4661. "enterpriseId": null,
  4662. "nowZhaobMoneyD": 0,
  4663. "historyZhaobMoneyD": 0,
  4664. "nowZhaobMoney": "0",
  4665. "historyZhaobMoney": "0",
  4666. "collaborationChanges": null,
  4667. "collaborationChangesReduce": null,
  4668. "partnerType": null,
  4669. "partnerTypeCode": null,
  4670. "oneYearZhongbD": 0,
  4671. "historyZhongbD": 0,
  4672. "oneYearZhongb": "0",
  4673. "historyZhongb": "0",
  4674. "shareUserCode": null,
  4675. "shareUserName": null,
  4676. "pcShareUserName": null,
  4677. "legalPerson": null,
  4678. "registerDate": null,
  4679. "registerAmount": null,
  4680. "address": null,
  4681. "partnershipList": [],
  4682. "certificateList": [],
  4683. "partnership": "空白",
  4684. "pcList": [
  4685. {
  4686. "dataCode": "空白",
  4687. "dataName": "全产业",
  4688. "tagCode": null
  4689. }
  4690. ],
  4691. "pcChangeList": [],
  4692. "importDate": "2016-01-07 15:02:03",
  4693. "createByDate": "2025-05-10 03:22:54",
  4694. "sevenDayCreateTag": null,
  4695. "linkSize": 0
  4696. },
  4697. {
  4698. "id": "2018071242926510",
  4699. "center": "长沙",
  4700. "areaCode": "M4301",
  4701. "areaName": "长沙小微",
  4702. "city": null,
  4703. "partScale": 0,
  4704. "zbMoney": 0,
  4705. "custName": "常德市顺洲电器有限公司",
  4706. "custCode": "8800289866",
  4707. "officeAddr": "湖南省常德市鼎城区玉霞街道永安社区桥南家电城善德街63号",
  4708. "industryStr": null,
  4709. "brandStr": null,
  4710. "partUserCount": "0",
  4711. "centerCode": "12403",
  4712. "notAuthCenter": null,
  4713. "cityCode": null,
  4714. "bigChannelCode": "M",
  4715. "bigChannelName": "直营渠道",
  4716. "smallChannelCode": "HM002",
  4717. "smallChannelName": "准三专海尔家电卖场类",
  4718. "mdmFlag": 1,
  4719. "zhaobMoney": 0,
  4720. "zhaobCount": 0,
  4721. "signCount": 0,
  4722. "partnershipDomainALL": null,
  4723. "partnershipDomainPL011": null,
  4724. "partnershipDomainPL005": null,
  4725. "partnershipDomainPL002": null,
  4726. "partnershipDomainPL001": null,
  4727. "partnershipDomainSPL007": null,
  4728. "partnershipDomainSPL006": null,
  4729. "partnershipDomainPL003": null,
  4730. "partnershipDomainPL007": null,
  4731. "partnershipDomainPL006": null,
  4732. "potentialList": [],
  4733. "qzType": 0,
  4734. "qzFlag": 0,
  4735. "enterpriseId": null,
  4736. "nowZhaobMoneyD": 0,
  4737. "historyZhaobMoneyD": 0,
  4738. "nowZhaobMoney": "0",
  4739. "historyZhaobMoney": "0",
  4740. "collaborationChanges": null,
  4741. "collaborationChangesReduce": null,
  4742. "partnerType": null,
  4743. "partnerTypeCode": null,
  4744. "oneYearZhongbD": 0,
  4745. "historyZhongbD": 0,
  4746. "oneYearZhongb": "0",
  4747. "historyZhongb": "0",
  4748. "shareUserCode": null,
  4749. "shareUserName": null,
  4750. "pcShareUserName": null,
  4751. "legalPerson": null,
  4752. "registerDate": null,
  4753. "registerAmount": null,
  4754. "address": null,
  4755. "partnershipList": [],
  4756. "certificateList": [],
  4757. "partnership": "空白",
  4758. "pcList": [
  4759. {
  4760. "dataCode": "空白",
  4761. "dataName": "全产业",
  4762. "tagCode": null
  4763. }
  4764. ],
  4765. "pcChangeList": [],
  4766. "importDate": "2018-07-12 00:00:00",
  4767. "createByDate": "2023-11-23 18:43:27",
  4768. "sevenDayCreateTag": null,
  4769. "linkSize": 0
  4770. },
  4771. {
  4772. "id": "2012041258684409",
  4773. "center": "长沙",
  4774. "areaCode": "M4301",
  4775. "areaName": "长沙小微",
  4776. "city": null,
  4777. "partScale": 0,
  4778. "zbMoney": 0,
  4779. "custName": "(工程押金户)湖南卓正科技实业发展有限公司",
  4780. "custCode": "C200063140",
  4781. "officeAddr": "湘潭市书院路彩霞花园",
  4782. "industryStr": null,
  4783. "brandStr": null,
  4784. "partUserCount": "0",
  4785. "centerCode": "12403",
  4786. "notAuthCenter": null,
  4787. "cityCode": "",
  4788. "bigChannelCode": "M",
  4789. "bigChannelName": "直营渠道",
  4790. "smallChannelCode": "HA007",
  4791. "smallChannelName": "纯三专工程类",
  4792. "mdmFlag": 1,
  4793. "zhaobMoney": 0,
  4794. "zhaobCount": 0,
  4795. "signCount": 0,
  4796. "partnershipDomainALL": null,
  4797. "partnershipDomainPL011": null,
  4798. "partnershipDomainPL005": null,
  4799. "partnershipDomainPL002": null,
  4800. "partnershipDomainPL001": null,
  4801. "partnershipDomainSPL007": null,
  4802. "partnershipDomainSPL006": null,
  4803. "partnershipDomainPL003": null,
  4804. "partnershipDomainPL007": null,
  4805. "partnershipDomainPL006": null,
  4806. "potentialList": [],
  4807. "qzType": 0,
  4808. "qzFlag": 0,
  4809. "enterpriseId": null,
  4810. "nowZhaobMoneyD": 0,
  4811. "historyZhaobMoneyD": 0,
  4812. "nowZhaobMoney": "0",
  4813. "historyZhaobMoney": "0",
  4814. "collaborationChanges": null,
  4815. "collaborationChangesReduce": null,
  4816. "partnerType": null,
  4817. "partnerTypeCode": null,
  4818. "oneYearZhongbD": 0,
  4819. "historyZhongbD": 0,
  4820. "oneYearZhongb": "0",
  4821. "historyZhongb": "0",
  4822. "shareUserCode": null,
  4823. "shareUserName": null,
  4824. "pcShareUserName": null,
  4825. "legalPerson": null,
  4826. "registerDate": null,
  4827. "registerAmount": null,
  4828. "address": null,
  4829. "partnershipList": [],
  4830. "certificateList": [],
  4831. "partnership": "空白",
  4832. "pcList": [
  4833. {
  4834. "dataCode": "空白",
  4835. "dataName": "全产业",
  4836. "tagCode": null
  4837. }
  4838. ],
  4839. "pcChangeList": [],
  4840. "importDate": "2012-04-12 00:00:00",
  4841. "createByDate": "2023-11-23 18:45:39",
  4842. "sevenDayCreateTag": null,
  4843. "linkSize": 0
  4844. },
  4845. {
  4846. "id": "2022082628656716",
  4847. "center": "长沙",
  4848. "areaCode": "M4301",
  4849. "areaName": "长沙小微",
  4850. "city": null,
  4851. "partScale": 150.75,
  4852. "zbMoney": 0,
  4853. "custName": "湘西凤凰县美新电器销售有限责任公司",
  4854. "custCode": "8800485466",
  4855. "officeAddr": "湖南省湘西土家族苗族自治州凤凰县沱江镇凤凰路1栋7号刘桃贤门面",
  4856. "industryStr": "冰冷(1)、热水器(1)、信息(1)、洗衣机(1)、家用空调(1)",
  4857. "brandStr": "海尔",
  4858. "partUserCount": "20",
  4859. "centerCode": "12403",
  4860. "notAuthCenter": null,
  4861. "cityCode": null,
  4862. "bigChannelCode": "M",
  4863. "bigChannelName": "直营渠道",
  4864. "smallChannelCode": "HA001",
  4865. "smallChannelName": "纯三专海尔成套专卖类",
  4866. "mdmFlag": 1,
  4867. "zhaobMoney": 0,
  4868. "zhaobCount": 0,
  4869. "signCount": 0,
  4870. "partnershipDomainALL": "1",
  4871. "partnershipDomainPL011": null,
  4872. "partnershipDomainPL005": "1",
  4873. "partnershipDomainPL002": null,
  4874. "partnershipDomainPL001": null,
  4875. "partnershipDomainSPL007": null,
  4876. "partnershipDomainSPL006": null,
  4877. "partnershipDomainPL003": null,
  4878. "partnershipDomainPL007": null,
  4879. "partnershipDomainPL006": null,
  4880. "potentialList": [],
  4881. "qzType": 0,
  4882. "qzFlag": 0,
  4883. "enterpriseId": null,
  4884. "nowZhaobMoneyD": 0,
  4885. "historyZhaobMoneyD": 151,
  4886. "nowZhaobMoney": "0",
  4887. "historyZhaobMoney": "151",
  4888. "collaborationChanges": null,
  4889. "collaborationChangesReduce": null,
  4890. "partnerType": "个体户,企业,其他",
  4891. "partnerTypeCode": "92,91,-1",
  4892. "oneYearZhongbD": 0,
  4893. "historyZhongbD": 0,
  4894. "oneYearZhongb": "0",
  4895. "historyZhongb": "0",
  4896. "shareUserCode": null,
  4897. "shareUserName": null,
  4898. "pcShareUserName": null,
  4899. "legalPerson": null,
  4900. "registerDate": null,
  4901. "registerAmount": null,
  4902. "address": null,
  4903. "partnershipList": [],
  4904. "certificateList": [],
  4905. "partnership": "空白",
  4906. "pcList": [
  4907. {
  4908. "dataCode": "空白",
  4909. "dataName": "全产业",
  4910. "tagCode": null
  4911. }
  4912. ],
  4913. "pcChangeList": [
  4914. {
  4915. "dataCode": "降78万",
  4916. "dataName": "全产业",
  4917. "tagCode": "1"
  4918. },
  4919. {
  4920. "dataCode": "降50万",
  4921. "dataName": "空调",
  4922. "tagCode": "1"
  4923. }
  4924. ],
  4925. "importDate": "2022-08-26 00:00:00",
  4926. "createByDate": "2023-11-23 18:40:28",
  4927. "sevenDayCreateTag": null,
  4928. "linkSize": 0
  4929. },
  4930. {
  4931. "id": "2025100925897466",
  4932. "center": "长沙",
  4933. "areaCode": "M4301",
  4934. "areaName": "长沙小微",
  4935. "city": "郴州市",
  4936. "partScale": 0,
  4937. "zbMoney": 0,
  4938. "custName": "(押金户)嘉禾县海翔电器销售服务有限公司",
  4939. "custCode": "C200157681",
  4940. "officeAddr": "湖南省郴州市嘉禾县珠泉镇中港瓏熙府6栋118号",
  4941. "industryStr": null,
  4942. "brandStr": null,
  4943. "partUserCount": "0",
  4944. "centerCode": "12403",
  4945. "notAuthCenter": null,
  4946. "cityCode": "431000000000",
  4947. "bigChannelCode": "M",
  4948. "bigChannelName": "直营渠道",
  4949. "smallChannelCode": "HA001",
  4950. "smallChannelName": "纯三专海尔成套专卖类",
  4951. "mdmFlag": 1,
  4952. "zhaobMoney": 0,
  4953. "zhaobCount": 0,
  4954. "signCount": 0,
  4955. "partnershipDomainALL": null,
  4956. "partnershipDomainPL011": null,
  4957. "partnershipDomainPL005": null,
  4958. "partnershipDomainPL002": null,
  4959. "partnershipDomainPL001": null,
  4960. "partnershipDomainSPL007": null,
  4961. "partnershipDomainSPL006": null,
  4962. "partnershipDomainPL003": null,
  4963. "partnershipDomainPL007": null,
  4964. "partnershipDomainPL006": null,
  4965. "potentialList": [],
  4966. "qzType": 0,
  4967. "qzFlag": 0,
  4968. "enterpriseId": null,
  4969. "nowZhaobMoneyD": 0,
  4970. "historyZhaobMoneyD": 0,
  4971. "nowZhaobMoney": "0",
  4972. "historyZhaobMoney": "0",
  4973. "collaborationChanges": null,
  4974. "collaborationChangesReduce": null,
  4975. "partnerType": null,
  4976. "partnerTypeCode": null,
  4977. "oneYearZhongbD": 0,
  4978. "historyZhongbD": 0,
  4979. "oneYearZhongb": "0",
  4980. "historyZhongb": "0",
  4981. "shareUserCode": null,
  4982. "shareUserName": null,
  4983. "pcShareUserName": null,
  4984. "legalPerson": null,
  4985. "registerDate": null,
  4986. "registerAmount": null,
  4987. "address": null,
  4988. "partnershipList": [],
  4989. "certificateList": [],
  4990. "partnership": "空白",
  4991. "pcList": [
  4992. {
  4993. "dataCode": "空白",
  4994. "dataName": "全产业",
  4995. "tagCode": null
  4996. }
  4997. ],
  4998. "pcChangeList": [],
  4999. "importDate": "2025-10-09 17:36:23",
  5000. "createByDate": "2025-10-10 02:50:00",
  5001. "sevenDayCreateTag": null,
  5002. "linkSize": 0
  5003. },
  5004. {
  5005. "id": "2018110923338884",
  5006. "center": "长沙",
  5007. "areaCode": "M4301",
  5008. "areaName": "长沙小微",
  5009. "city": null,
  5010. "partScale": 0,
  5011. "zbMoney": 0,
  5012. "custName": "湖南泽德智能科技有限公司(顺逛专户)",
  5013. "custCode": "C200084461",
  5014. "officeAddr": "长沙市望城区高塘岭街道莲湖新村5栋1号门面",
  5015. "industryStr": null,
  5016. "brandStr": null,
  5017. "partUserCount": "0",
  5018. "centerCode": "12403",
  5019. "notAuthCenter": null,
  5020. "cityCode": null,
  5021. "bigChannelCode": "M",
  5022. "bigChannelName": "直营渠道",
  5023. "smallChannelCode": "HA001",
  5024. "smallChannelName": "纯三专海尔成套专卖类",
  5025. "mdmFlag": 1,
  5026. "zhaobMoney": 0,
  5027. "zhaobCount": 0,
  5028. "signCount": 0,
  5029. "partnershipDomainALL": null,
  5030. "partnershipDomainPL011": null,
  5031. "partnershipDomainPL005": null,
  5032. "partnershipDomainPL002": null,
  5033. "partnershipDomainPL001": null,
  5034. "partnershipDomainSPL007": null,
  5035. "partnershipDomainSPL006": null,
  5036. "partnershipDomainPL003": null,
  5037. "partnershipDomainPL007": null,
  5038. "partnershipDomainPL006": null,
  5039. "potentialList": [],
  5040. "qzType": 0,
  5041. "qzFlag": 0,
  5042. "enterpriseId": null,
  5043. "nowZhaobMoneyD": 0,
  5044. "historyZhaobMoneyD": 0,
  5045. "nowZhaobMoney": "0",
  5046. "historyZhaobMoney": "0",
  5047. "collaborationChanges": null,
  5048. "collaborationChangesReduce": null,
  5049. "partnerType": null,
  5050. "partnerTypeCode": null,
  5051. "oneYearZhongbD": 0,
  5052. "historyZhongbD": 0,
  5053. "oneYearZhongb": "0",
  5054. "historyZhongb": "0",
  5055. "shareUserCode": null,
  5056. "shareUserName": null,
  5057. "pcShareUserName": null,
  5058. "legalPerson": null,
  5059. "registerDate": null,
  5060. "registerAmount": null,
  5061. "address": null,
  5062. "partnershipList": [],
  5063. "certificateList": [],
  5064. "partnership": "空白",
  5065. "pcList": [
  5066. {
  5067. "dataCode": "空白",
  5068. "dataName": "全产业",
  5069. "tagCode": null
  5070. }
  5071. ],
  5072. "pcChangeList": [],
  5073. "importDate": "2018-11-09 13:15:26",
  5074. "createByDate": "2023-11-23 18:48:21",
  5075. "sevenDayCreateTag": null,
  5076. "linkSize": 0
  5077. },
  5078. {
  5079. "id": "2017010621051631",
  5080. "center": "长沙",
  5081. "areaCode": "M4301",
  5082. "areaName": "长沙小微",
  5083. "city": null,
  5084. "partScale": 6.7,
  5085. "zbMoney": 0,
  5086. "custName": "永州市冷水滩顺隆新能源电器有限公司",
  5087. "custCode": "8800227132",
  5088. "officeAddr": "湖南省永州市冷水滩区永州大道771号靠近深哥家具品牌馆(永州店)",
  5089. "industryStr": "厨电(1)",
  5090. "brandStr": "海尔",
  5091. "partUserCount": "1",
  5092. "centerCode": "12403",
  5093. "notAuthCenter": null,
  5094. "cityCode": "431100",
  5095. "bigChannelCode": "M",
  5096. "bigChannelName": "直营渠道",
  5097. "smallChannelCode": "HA003",
  5098. "smallChannelName": "纯三专海尔产品专卖类(电厨)",
  5099. "mdmFlag": 1,
  5100. "zhaobMoney": 0,
  5101. "zhaobCount": 0,
  5102. "signCount": 4,
  5103. "partnershipDomainALL": null,
  5104. "partnershipDomainPL011": null,
  5105. "partnershipDomainPL005": null,
  5106. "partnershipDomainPL002": null,
  5107. "partnershipDomainPL001": null,
  5108. "partnershipDomainSPL007": null,
  5109. "partnershipDomainSPL006": null,
  5110. "partnershipDomainPL003": null,
  5111. "partnershipDomainPL007": null,
  5112. "partnershipDomainPL006": null,
  5113. "potentialList": [],
  5114. "qzType": 0,
  5115. "qzFlag": 0,
  5116. "enterpriseId": null,
  5117. "nowZhaobMoneyD": 0,
  5118. "historyZhaobMoneyD": 7,
  5119. "nowZhaobMoney": "0",
  5120. "historyZhaobMoney": "7",
  5121. "collaborationChanges": null,
  5122. "collaborationChangesReduce": null,
  5123. "partnerType": null,
  5124. "partnerTypeCode": null,
  5125. "oneYearZhongbD": 0,
  5126. "historyZhongbD": 0,
  5127. "oneYearZhongb": "0",
  5128. "historyZhongb": "0",
  5129. "shareUserCode": null,
  5130. "shareUserName": null,
  5131. "pcShareUserName": null,
  5132. "legalPerson": null,
  5133. "registerDate": null,
  5134. "registerAmount": null,
  5135. "address": null,
  5136. "partnershipList": [],
  5137. "certificateList": [],
  5138. "partnership": "空白",
  5139. "pcList": [
  5140. {
  5141. "dataCode": "空白",
  5142. "dataName": "全产业",
  5143. "tagCode": null
  5144. }
  5145. ],
  5146. "pcChangeList": [],
  5147. "importDate": "2017-01-06 00:00:00",
  5148. "createByDate": "2023-11-23 18:44:02",
  5149. "sevenDayCreateTag": null,
  5150. "linkSize": 0
  5151. },
  5152. {
  5153. "id": "2021091566904442",
  5154. "center": "长沙",
  5155. "areaCode": "M4301",
  5156. "areaName": "长沙小微",
  5157. "city": null,
  5158. "partScale": 0,
  5159. "zbMoney": 0,
  5160. "custName": "株洲市家加美商贸有限公司居然之家店",
  5161. "custCode": "8800435881",
  5162. "officeAddr": "株洲市芦淞区枫溪大道298号居然之家",
  5163. "industryStr": null,
  5164. "brandStr": null,
  5165. "partUserCount": "0",
  5166. "centerCode": "12403",
  5167. "notAuthCenter": null,
  5168. "cityCode": null,
  5169. "bigChannelCode": "M",
  5170. "bigChannelName": "直营渠道",
  5171. "smallChannelCode": "HA011",
  5172. "smallChannelName": "纯三专海尔产品专卖类(净水+热水器)",
  5173. "mdmFlag": 1,
  5174. "zhaobMoney": 0,
  5175. "zhaobCount": 0,
  5176. "signCount": 0,
  5177. "partnershipDomainALL": null,
  5178. "partnershipDomainPL011": null,
  5179. "partnershipDomainPL005": null,
  5180. "partnershipDomainPL002": null,
  5181. "partnershipDomainPL001": null,
  5182. "partnershipDomainSPL007": null,
  5183. "partnershipDomainSPL006": null,
  5184. "partnershipDomainPL003": null,
  5185. "partnershipDomainPL007": null,
  5186. "partnershipDomainPL006": null,
  5187. "potentialList": [],
  5188. "qzType": 0,
  5189. "qzFlag": 0,
  5190. "enterpriseId": null,
  5191. "nowZhaobMoneyD": 0,
  5192. "historyZhaobMoneyD": 0,
  5193. "nowZhaobMoney": "0",
  5194. "historyZhaobMoney": "0",
  5195. "collaborationChanges": null,
  5196. "collaborationChangesReduce": null,
  5197. "partnerType": null,
  5198. "partnerTypeCode": null,
  5199. "oneYearZhongbD": 0,
  5200. "historyZhongbD": 0,
  5201. "oneYearZhongb": "0",
  5202. "historyZhongb": "0",
  5203. "shareUserCode": null,
  5204. "shareUserName": null,
  5205. "pcShareUserName": null,
  5206. "legalPerson": null,
  5207. "registerDate": null,
  5208. "registerAmount": null,
  5209. "address": null,
  5210. "partnershipList": [],
  5211. "certificateList": [],
  5212. "partnership": "空白",
  5213. "pcList": [
  5214. {
  5215. "dataCode": "空白",
  5216. "dataName": "全产业",
  5217. "tagCode": null
  5218. }
  5219. ],
  5220. "pcChangeList": [],
  5221. "importDate": "2021-09-15 11:34:16",
  5222. "createByDate": "2023-11-23 18:40:56",
  5223. "sevenDayCreateTag": null,
  5224. "linkSize": 0
  5225. },
  5226. {
  5227. "id": "2018110923337352",
  5228. "center": "长沙",
  5229. "areaCode": "M4301",
  5230. "areaName": "长沙小微",
  5231. "city": null,
  5232. "partScale": 0,
  5233. "zbMoney": 0,
  5234. "custName": "长沙恩驰电子科技有限公司(顺逛专户)",
  5235. "custCode": "C200083698",
  5236. "officeAddr": "天心区新开铺路18号新新家园A、B栋及地下室113号",
  5237. "industryStr": null,
  5238. "brandStr": null,
  5239. "partUserCount": "0",
  5240. "centerCode": "12403",
  5241. "notAuthCenter": null,
  5242. "cityCode": null,
  5243. "bigChannelCode": "M",
  5244. "bigChannelName": "直营渠道",
  5245. "smallChannelCode": "HA007",
  5246. "smallChannelName": "纯三专工程类",
  5247. "mdmFlag": 1,
  5248. "zhaobMoney": 0,
  5249. "zhaobCount": 0,
  5250. "signCount": 0,
  5251. "partnershipDomainALL": null,
  5252. "partnershipDomainPL011": null,
  5253. "partnershipDomainPL005": null,
  5254. "partnershipDomainPL002": null,
  5255. "partnershipDomainPL001": null,
  5256. "partnershipDomainSPL007": null,
  5257. "partnershipDomainSPL006": null,
  5258. "partnershipDomainPL003": null,
  5259. "partnershipDomainPL007": null,
  5260. "partnershipDomainPL006": null,
  5261. "potentialList": [],
  5262. "qzType": 0,
  5263. "qzFlag": 0,
  5264. "enterpriseId": null,
  5265. "nowZhaobMoneyD": 0,
  5266. "historyZhaobMoneyD": 0,
  5267. "nowZhaobMoney": "0",
  5268. "historyZhaobMoney": "0",
  5269. "collaborationChanges": null,
  5270. "collaborationChangesReduce": null,
  5271. "partnerType": null,
  5272. "partnerTypeCode": null,
  5273. "oneYearZhongbD": 0,
  5274. "historyZhongbD": 0,
  5275. "oneYearZhongb": "0",
  5276. "historyZhongb": "0",
  5277. "shareUserCode": null,
  5278. "shareUserName": null,
  5279. "pcShareUserName": null,
  5280. "legalPerson": null,
  5281. "registerDate": null,
  5282. "registerAmount": null,
  5283. "address": null,
  5284. "partnershipList": [],
  5285. "certificateList": [],
  5286. "partnership": "空白",
  5287. "pcList": [
  5288. {
  5289. "dataCode": "空白",
  5290. "dataName": "全产业",
  5291. "tagCode": null
  5292. }
  5293. ],
  5294. "pcChangeList": [],
  5295. "importDate": "2018-11-09 13:15:19",
  5296. "createByDate": "2023-11-23 18:48:24",
  5297. "sevenDayCreateTag": null,
  5298. "linkSize": 0
  5299. },
  5300. {
  5301. "id": "2023040395743219",
  5302. "center": "长沙",
  5303. "areaCode": "M4301",
  5304. "areaName": "长沙小微",
  5305. "city": null,
  5306. "partScale": 0,
  5307. "zbMoney": 0,
  5308. "custName": "(押金户)怀化市城铭贸易有限公司",
  5309. "custCode": "C200151592",
  5310. "officeAddr": "怀化市经开区河西家电城3栋6号",
  5311. "industryStr": null,
  5312. "brandStr": null,
  5313. "partUserCount": "0",
  5314. "centerCode": "12403",
  5315. "notAuthCenter": null,
  5316. "cityCode": "",
  5317. "bigChannelCode": "M",
  5318. "bigChannelName": "直营渠道",
  5319. "smallChannelCode": "HA011",
  5320. "smallChannelName": "纯三专海尔产品专卖类(净水+热水器)",
  5321. "mdmFlag": 1,
  5322. "zhaobMoney": 0,
  5323. "zhaobCount": 0,
  5324. "signCount": 0,
  5325. "partnershipDomainALL": null,
  5326. "partnershipDomainPL011": null,
  5327. "partnershipDomainPL005": null,
  5328. "partnershipDomainPL002": null,
  5329. "partnershipDomainPL001": null,
  5330. "partnershipDomainSPL007": null,
  5331. "partnershipDomainSPL006": null,
  5332. "partnershipDomainPL003": null,
  5333. "partnershipDomainPL007": null,
  5334. "partnershipDomainPL006": null,
  5335. "potentialList": [],
  5336. "qzType": 0,
  5337. "qzFlag": 0,
  5338. "enterpriseId": null,
  5339. "nowZhaobMoneyD": 0,
  5340. "historyZhaobMoneyD": 0,
  5341. "nowZhaobMoney": "0",
  5342. "historyZhaobMoney": "0",
  5343. "collaborationChanges": null,
  5344. "collaborationChangesReduce": null,
  5345. "partnerType": null,
  5346. "partnerTypeCode": null,
  5347. "oneYearZhongbD": 0,
  5348. "historyZhongbD": 0,
  5349. "oneYearZhongb": "0",
  5350. "historyZhongb": "0",
  5351. "shareUserCode": null,
  5352. "shareUserName": null,
  5353. "pcShareUserName": null,
  5354. "legalPerson": null,
  5355. "registerDate": null,
  5356. "registerAmount": null,
  5357. "address": null,
  5358. "partnershipList": [],
  5359. "certificateList": [],
  5360. "partnership": "空白",
  5361. "pcList": [
  5362. {
  5363. "dataCode": "空白",
  5364. "dataName": "全产业",
  5365. "tagCode": null
  5366. }
  5367. ],
  5368. "pcChangeList": [],
  5369. "importDate": "2023-04-03 00:00:00",
  5370. "createByDate": "2023-11-23 18:40:16",
  5371. "sevenDayCreateTag": null,
  5372. "linkSize": 0
  5373. },
  5374. {
  5375. "id": "2025031352095215",
  5376. "center": "长沙",
  5377. "areaCode": "M4301",
  5378. "areaName": "长沙小微",
  5379. "city": "郴州市",
  5380. "partScale": 0,
  5381. "zbMoney": 0,
  5382. "custName": "宜章县沁辉家居建材有限公司",
  5383. "custCode": "8800620334",
  5384. "officeAddr": "湖南省郴州市宜章县玉溪镇民主西路玉溪河畔建材市场H栋118号",
  5385. "industryStr": null,
  5386. "brandStr": null,
  5387. "partUserCount": "0",
  5388. "centerCode": "12403",
  5389. "notAuthCenter": null,
  5390. "cityCode": "431000000000",
  5391. "bigChannelCode": "M",
  5392. "bigChannelName": "直营渠道",
  5393. "smallChannelCode": "HA003",
  5394. "smallChannelName": "纯三专海尔产品专卖类(电厨)",
  5395. "mdmFlag": 1,
  5396. "zhaobMoney": 0,
  5397. "zhaobCount": 0,
  5398. "signCount": 0,
  5399. "partnershipDomainALL": null,
  5400. "partnershipDomainPL011": null,
  5401. "partnershipDomainPL005": null,
  5402. "partnershipDomainPL002": null,
  5403. "partnershipDomainPL001": null,
  5404. "partnershipDomainSPL007": null,
  5405. "partnershipDomainSPL006": null,
  5406. "partnershipDomainPL003": null,
  5407. "partnershipDomainPL007": null,
  5408. "partnershipDomainPL006": null,
  5409. "potentialList": [],
  5410. "qzType": 0,
  5411. "qzFlag": 0,
  5412. "enterpriseId": null,
  5413. "nowZhaobMoneyD": 0,
  5414. "historyZhaobMoneyD": 0,
  5415. "nowZhaobMoney": "0",
  5416. "historyZhaobMoney": "0",
  5417. "collaborationChanges": null,
  5418. "collaborationChangesReduce": null,
  5419. "partnerType": null,
  5420. "partnerTypeCode": null,
  5421. "oneYearZhongbD": 0,
  5422. "historyZhongbD": 0,
  5423. "oneYearZhongb": "0",
  5424. "historyZhongb": "0",
  5425. "shareUserCode": null,
  5426. "shareUserName": null,
  5427. "pcShareUserName": null,
  5428. "legalPerson": null,
  5429. "registerDate": null,
  5430. "registerAmount": null,
  5431. "address": null,
  5432. "partnershipList": [],
  5433. "certificateList": [],
  5434. "partnership": "空白",
  5435. "pcList": [
  5436. {
  5437. "dataCode": "空白",
  5438. "dataName": "全产业",
  5439. "tagCode": null
  5440. }
  5441. ],
  5442. "pcChangeList": [],
  5443. "importDate": "2025-03-13 18:57:03",
  5444. "createByDate": "2025-03-14 02:50:00",
  5445. "sevenDayCreateTag": null,
  5446. "linkSize": 0
  5447. },
  5448. {
  5449. "id": "2015050834958439",
  5450. "center": "长沙",
  5451. "areaCode": "M4301",
  5452. "areaName": "长沙小微",
  5453. "city": null,
  5454. "partScale": 0,
  5455. "zbMoney": 0,
  5456. "custName": "(押金户)冷水江市洪新电器销售有限责任公司",
  5457. "custCode": "C200126307",
  5458. "officeAddr": "金竹西路27号(新大地建材城B区1栋116号)",
  5459. "industryStr": null,
  5460. "brandStr": null,
  5461. "partUserCount": "0",
  5462. "centerCode": "12403",
  5463. "notAuthCenter": null,
  5464. "cityCode": null,
  5465. "bigChannelCode": "M",
  5466. "bigChannelName": "直营渠道",
  5467. "smallChannelCode": "HA001",
  5468. "smallChannelName": "纯三专海尔成套专卖类",
  5469. "mdmFlag": 1,
  5470. "zhaobMoney": 0,
  5471. "zhaobCount": 0,
  5472. "signCount": 0,
  5473. "partnershipDomainALL": null,
  5474. "partnershipDomainPL011": null,
  5475. "partnershipDomainPL005": null,
  5476. "partnershipDomainPL002": null,
  5477. "partnershipDomainPL001": null,
  5478. "partnershipDomainSPL007": null,
  5479. "partnershipDomainSPL006": null,
  5480. "partnershipDomainPL003": null,
  5481. "partnershipDomainPL007": null,
  5482. "partnershipDomainPL006": null,
  5483. "potentialList": [],
  5484. "qzType": 0,
  5485. "qzFlag": 0,
  5486. "enterpriseId": null,
  5487. "nowZhaobMoneyD": 0,
  5488. "historyZhaobMoneyD": 0,
  5489. "nowZhaobMoney": "0",
  5490. "historyZhaobMoney": "0",
  5491. "collaborationChanges": null,
  5492. "collaborationChangesReduce": null,
  5493. "partnerType": null,
  5494. "partnerTypeCode": null,
  5495. "oneYearZhongbD": 0,
  5496. "historyZhongbD": 0,
  5497. "oneYearZhongb": "0",
  5498. "historyZhongb": "0",
  5499. "shareUserCode": null,
  5500. "shareUserName": null,
  5501. "pcShareUserName": null,
  5502. "legalPerson": null,
  5503. "registerDate": null,
  5504. "registerAmount": null,
  5505. "address": null,
  5506. "partnershipList": [],
  5507. "certificateList": [],
  5508. "partnership": "空白",
  5509. "pcList": [
  5510. {
  5511. "dataCode": "空白",
  5512. "dataName": "全产业",
  5513. "tagCode": null
  5514. }
  5515. ],
  5516. "pcChangeList": [],
  5517. "importDate": "2015-05-08 15:51:08",
  5518. "createByDate": "2023-11-23 18:48:01",
  5519. "sevenDayCreateTag": null,
  5520. "linkSize": 0
  5521. },
  5522. {
  5523. "id": "2022072034073542",
  5524. "center": "长沙",
  5525. "areaCode": "M4301",
  5526. "areaName": "长沙小微",
  5527. "city": null,
  5528. "partScale": 0,
  5529. "zbMoney": 0,
  5530. "custName": "岳阳金鞍电器有限公司岳阳楼区郭镇冰冷体验店",
  5531. "custCode": "8800481053",
  5532. "officeAddr": "岳阳市岳阳楼区郭镇街183号",
  5533. "industryStr": null,
  5534. "brandStr": null,
  5535. "partUserCount": "0",
  5536. "centerCode": "12403",
  5537. "notAuthCenter": null,
  5538. "cityCode": null,
  5539. "bigChannelCode": "M",
  5540. "bigChannelName": "直营渠道",
  5541. "smallChannelCode": "HA001",
  5542. "smallChannelName": "纯三专海尔成套专卖类",
  5543. "mdmFlag": 1,
  5544. "zhaobMoney": 0,
  5545. "zhaobCount": 0,
  5546. "signCount": 0,
  5547. "partnershipDomainALL": null,
  5548. "partnershipDomainPL011": null,
  5549. "partnershipDomainPL005": null,
  5550. "partnershipDomainPL002": null,
  5551. "partnershipDomainPL001": null,
  5552. "partnershipDomainSPL007": null,
  5553. "partnershipDomainSPL006": null,
  5554. "partnershipDomainPL003": null,
  5555. "partnershipDomainPL007": null,
  5556. "partnershipDomainPL006": null,
  5557. "potentialList": [],
  5558. "qzType": 0,
  5559. "qzFlag": 0,
  5560. "enterpriseId": null,
  5561. "nowZhaobMoneyD": 0,
  5562. "historyZhaobMoneyD": 0,
  5563. "nowZhaobMoney": "0",
  5564. "historyZhaobMoney": "0",
  5565. "collaborationChanges": null,
  5566. "collaborationChangesReduce": null,
  5567. "partnerType": null,
  5568. "partnerTypeCode": null,
  5569. "oneYearZhongbD": 0,
  5570. "historyZhongbD": 0,
  5571. "oneYearZhongb": "0",
  5572. "historyZhongb": "0",
  5573. "shareUserCode": null,
  5574. "shareUserName": null,
  5575. "pcShareUserName": null,
  5576. "legalPerson": null,
  5577. "registerDate": null,
  5578. "registerAmount": null,
  5579. "address": null,
  5580. "partnershipList": [],
  5581. "certificateList": [],
  5582. "partnership": "空白",
  5583. "pcList": [
  5584. {
  5585. "dataCode": "空白",
  5586. "dataName": "全产业",
  5587. "tagCode": null
  5588. }
  5589. ],
  5590. "pcChangeList": [],
  5591. "importDate": "2022-07-20 15:40:22",
  5592. "createByDate": "2023-11-23 18:40:30",
  5593. "sevenDayCreateTag": null,
  5594. "linkSize": 0
  5595. },
  5596. {
  5597. "id": "2025081179813025",
  5598. "center": "长沙",
  5599. "areaCode": "M4301",
  5600. "areaName": "长沙小微",
  5601. "city": "郴州市",
  5602. "partScale": 0,
  5603. "zbMoney": 0,
  5604. "custName": "(押金户)郴州润卓机电设备有限公司",
  5605. "custCode": "C200157322",
  5606. "officeAddr": "湖南省郴州市北湖区郴江街道仙泉社区湘南大市场第31栋1层115号",
  5607. "industryStr": null,
  5608. "brandStr": null,
  5609. "partUserCount": "0",
  5610. "centerCode": "12403",
  5611. "notAuthCenter": null,
  5612. "cityCode": "431000000000",
  5613. "bigChannelCode": "M",
  5614. "bigChannelName": "直营渠道",
  5615. "smallChannelCode": "HA007",
  5616. "smallChannelName": "纯三专工程类",
  5617. "mdmFlag": 1,
  5618. "zhaobMoney": 0,
  5619. "zhaobCount": 0,
  5620. "signCount": 0,
  5621. "partnershipDomainALL": null,
  5622. "partnershipDomainPL011": null,
  5623. "partnershipDomainPL005": null,
  5624. "partnershipDomainPL002": null,
  5625. "partnershipDomainPL001": null,
  5626. "partnershipDomainSPL007": null,
  5627. "partnershipDomainSPL006": null,
  5628. "partnershipDomainPL003": null,
  5629. "partnershipDomainPL007": null,
  5630. "partnershipDomainPL006": null,
  5631. "potentialList": [],
  5632. "qzType": 0,
  5633. "qzFlag": 0,
  5634. "enterpriseId": null,
  5635. "nowZhaobMoneyD": 0,
  5636. "historyZhaobMoneyD": 0,
  5637. "nowZhaobMoney": "0",
  5638. "historyZhaobMoney": "0",
  5639. "collaborationChanges": null,
  5640. "collaborationChangesReduce": null,
  5641. "partnerType": null,
  5642. "partnerTypeCode": null,
  5643. "oneYearZhongbD": 0,
  5644. "historyZhongbD": 0,
  5645. "oneYearZhongb": "0",
  5646. "historyZhongb": "0",
  5647. "shareUserCode": null,
  5648. "shareUserName": null,
  5649. "pcShareUserName": null,
  5650. "legalPerson": null,
  5651. "registerDate": null,
  5652. "registerAmount": null,
  5653. "address": null,
  5654. "partnershipList": [],
  5655. "certificateList": [],
  5656. "partnership": "空白",
  5657. "pcList": [
  5658. {
  5659. "dataCode": "空白",
  5660. "dataName": "全产业",
  5661. "tagCode": null
  5662. }
  5663. ],
  5664. "pcChangeList": [],
  5665. "importDate": "2025-08-11 13:24:51",
  5666. "createByDate": "2025-08-12 02:50:02",
  5667. "sevenDayCreateTag": null,
  5668. "linkSize": 0
  5669. },
  5670. {
  5671. "id": "2016092677908444",
  5672. "center": "长沙",
  5673. "areaCode": "M4301",
  5674. "areaName": "长沙小微",
  5675. "city": "郴州市",
  5676. "partScale": 0,
  5677. "zbMoney": 0,
  5678. "custName": "永兴县益友电器有限公司",
  5679. "custCode": "8800221539",
  5680. "officeAddr": "永兴县便江镇戴家南路12号",
  5681. "industryStr": null,
  5682. "brandStr": null,
  5683. "partUserCount": "0",
  5684. "centerCode": "12403",
  5685. "notAuthCenter": null,
  5686. "cityCode": "431000000000",
  5687. "bigChannelCode": "M",
  5688. "bigChannelName": "直营渠道",
  5689. "smallChannelCode": "TA002",
  5690. "smallChannelName": "纯三专统帅产品专卖类(空调)",
  5691. "mdmFlag": 1,
  5692. "zhaobMoney": 0,
  5693. "zhaobCount": 0,
  5694. "signCount": 0,
  5695. "partnershipDomainALL": null,
  5696. "partnershipDomainPL011": null,
  5697. "partnershipDomainPL005": null,
  5698. "partnershipDomainPL002": null,
  5699. "partnershipDomainPL001": null,
  5700. "partnershipDomainSPL007": null,
  5701. "partnershipDomainSPL006": null,
  5702. "partnershipDomainPL003": null,
  5703. "partnershipDomainPL007": null,
  5704. "partnershipDomainPL006": null,
  5705. "potentialList": [],
  5706. "qzType": 0,
  5707. "qzFlag": 0,
  5708. "enterpriseId": null,
  5709. "nowZhaobMoneyD": 0,
  5710. "historyZhaobMoneyD": 0,
  5711. "nowZhaobMoney": "0",
  5712. "historyZhaobMoney": "0",
  5713. "collaborationChanges": null,
  5714. "collaborationChangesReduce": null,
  5715. "partnerType": null,
  5716. "partnerTypeCode": null,
  5717. "oneYearZhongbD": 0,
  5718. "historyZhongbD": 0,
  5719. "oneYearZhongb": "0",
  5720. "historyZhongb": "0",
  5721. "shareUserCode": null,
  5722. "shareUserName": null,
  5723. "pcShareUserName": null,
  5724. "legalPerson": null,
  5725. "registerDate": null,
  5726. "registerAmount": null,
  5727. "address": null,
  5728. "partnershipList": [],
  5729. "certificateList": [],
  5730. "partnership": "空白",
  5731. "pcList": [
  5732. {
  5733. "dataCode": "空白",
  5734. "dataName": "全产业",
  5735. "tagCode": null
  5736. }
  5737. ],
  5738. "pcChangeList": [],
  5739. "importDate": "2016-09-26 10:18:44",
  5740. "createByDate": "2023-11-23 18:44:06",
  5741. "sevenDayCreateTag": null,
  5742. "linkSize": 0
  5743. },
  5744. {
  5745. "id": "2024031841067750",
  5746. "center": "长沙",
  5747. "areaCode": "M4301",
  5748. "areaName": "长沙小微",
  5749. "city": "永州市",
  5750. "partScale": 0,
  5751. "zbMoney": 0,
  5752. "custName": "永州市润成电器有限公司冷水滩潇湘国际广场卡萨帝店",
  5753. "custCode": "8800562199",
  5754. "officeAddr": "永州市冷水滩区中兴路潇湘国际广场项目暨河家居建材市场第一层102号商铺",
  5755. "industryStr": null,
  5756. "brandStr": null,
  5757. "partUserCount": "0",
  5758. "centerCode": "12403",
  5759. "notAuthCenter": null,
  5760. "cityCode": "431100000000",
  5761. "bigChannelCode": "M",
  5762. "bigChannelName": "直营渠道",
  5763. "smallChannelCode": "HA001",
  5764. "smallChannelName": "纯三专海尔成套专卖类",
  5765. "mdmFlag": 1,
  5766. "zhaobMoney": 0,
  5767. "zhaobCount": 0,
  5768. "signCount": 2,
  5769. "partnershipDomainALL": null,
  5770. "partnershipDomainPL011": null,
  5771. "partnershipDomainPL005": null,
  5772. "partnershipDomainPL002": null,
  5773. "partnershipDomainPL001": null,
  5774. "partnershipDomainSPL007": null,
  5775. "partnershipDomainSPL006": null,
  5776. "partnershipDomainPL003": null,
  5777. "partnershipDomainPL007": null,
  5778. "partnershipDomainPL006": null,
  5779. "potentialList": [],
  5780. "qzType": 0,
  5781. "qzFlag": 0,
  5782. "enterpriseId": null,
  5783. "nowZhaobMoneyD": 0,
  5784. "historyZhaobMoneyD": 0,
  5785. "nowZhaobMoney": "0",
  5786. "historyZhaobMoney": "0",
  5787. "collaborationChanges": null,
  5788. "collaborationChangesReduce": null,
  5789. "partnerType": null,
  5790. "partnerTypeCode": null,
  5791. "oneYearZhongbD": 0,
  5792. "historyZhongbD": 0,
  5793. "oneYearZhongb": "0",
  5794. "historyZhongb": "0",
  5795. "shareUserCode": null,
  5796. "shareUserName": null,
  5797. "pcShareUserName": null,
  5798. "legalPerson": null,
  5799. "registerDate": null,
  5800. "registerAmount": null,
  5801. "address": null,
  5802. "partnershipList": [],
  5803. "certificateList": [],
  5804. "partnership": "空白",
  5805. "pcList": [
  5806. {
  5807. "dataCode": "空白",
  5808. "dataName": "全产业",
  5809. "tagCode": null
  5810. }
  5811. ],
  5812. "pcChangeList": [],
  5813. "importDate": "2024-03-18 16:38:10",
  5814. "createByDate": "2024-03-19 02:50:01",
  5815. "sevenDayCreateTag": null,
  5816. "linkSize": 0
  5817. },
  5818. {
  5819. "id": "2018110923350902",
  5820. "center": "长沙",
  5821. "areaCode": "M4301",
  5822. "areaName": "长沙小微",
  5823. "city": null,
  5824. "partScale": 0,
  5825. "zbMoney": 0,
  5826. "custName": "浏阳市金义电器销售有限公司(顺逛专户)",
  5827. "custCode": "C200090384",
  5828. "officeAddr": "淮川办事处车站路21号",
  5829. "industryStr": null,
  5830. "brandStr": null,
  5831. "partUserCount": "0",
  5832. "centerCode": "12403",
  5833. "notAuthCenter": null,
  5834. "cityCode": null,
  5835. "bigChannelCode": "M",
  5836. "bigChannelName": "直营渠道",
  5837. "smallChannelCode": "HM002",
  5838. "smallChannelName": "准三专海尔家电卖场类",
  5839. "mdmFlag": 1,
  5840. "zhaobMoney": 0,
  5841. "zhaobCount": 0,
  5842. "signCount": 0,
  5843. "partnershipDomainALL": null,
  5844. "partnershipDomainPL011": null,
  5845. "partnershipDomainPL005": null,
  5846. "partnershipDomainPL002": null,
  5847. "partnershipDomainPL001": null,
  5848. "partnershipDomainSPL007": null,
  5849. "partnershipDomainSPL006": null,
  5850. "partnershipDomainPL003": null,
  5851. "partnershipDomainPL007": null,
  5852. "partnershipDomainPL006": null,
  5853. "potentialList": [],
  5854. "qzType": 0,
  5855. "qzFlag": 0,
  5856. "enterpriseId": null,
  5857. "nowZhaobMoneyD": 0,
  5858. "historyZhaobMoneyD": 0,
  5859. "nowZhaobMoney": "0",
  5860. "historyZhaobMoney": "0",
  5861. "collaborationChanges": null,
  5862. "collaborationChangesReduce": null,
  5863. "partnerType": null,
  5864. "partnerTypeCode": null,
  5865. "oneYearZhongbD": 0,
  5866. "historyZhongbD": 0,
  5867. "oneYearZhongb": "0",
  5868. "historyZhongb": "0",
  5869. "shareUserCode": null,
  5870. "shareUserName": null,
  5871. "pcShareUserName": null,
  5872. "legalPerson": null,
  5873. "registerDate": null,
  5874. "registerAmount": null,
  5875. "address": null,
  5876. "partnershipList": [],
  5877. "certificateList": [],
  5878. "partnership": "空白",
  5879. "pcList": [
  5880. {
  5881. "dataCode": "空白",
  5882. "dataName": "全产业",
  5883. "tagCode": null
  5884. }
  5885. ],
  5886. "pcChangeList": [],
  5887. "importDate": "2018-11-09 13:16:09",
  5888. "createByDate": "2023-11-23 18:48:09",
  5889. "sevenDayCreateTag": null,
  5890. "linkSize": 0
  5891. },
  5892. {
  5893. "id": "2023082599505812",
  5894. "center": "长沙",
  5895. "areaCode": "M4301",
  5896. "areaName": "长沙小微",
  5897. "city": "长沙市",
  5898. "partScale": 0,
  5899. "zbMoney": 0,
  5900. "custName": "湖南致上环境科技有限公司",
  5901. "custCode": "8800534159",
  5902. "officeAddr": "湖南省长沙市芙蓉区隆平高科技园隆园五路2号丰兴机械电子产业园10栋402-K340号",
  5903. "industryStr": null,
  5904. "brandStr": null,
  5905. "partUserCount": "0",
  5906. "centerCode": "12403",
  5907. "notAuthCenter": null,
  5908. "cityCode": "430100000000",
  5909. "bigChannelCode": "M",
  5910. "bigChannelName": "直营渠道",
  5911. "smallChannelCode": "HA024",
  5912. "smallChannelName": "纯三专水联网前置类客户",
  5913. "mdmFlag": 1,
  5914. "zhaobMoney": 0,
  5915. "zhaobCount": 0,
  5916. "signCount": 0,
  5917. "partnershipDomainALL": null,
  5918. "partnershipDomainPL011": null,
  5919. "partnershipDomainPL005": null,
  5920. "partnershipDomainPL002": null,
  5921. "partnershipDomainPL001": null,
  5922. "partnershipDomainSPL007": null,
  5923. "partnershipDomainSPL006": null,
  5924. "partnershipDomainPL003": null,
  5925. "partnershipDomainPL007": null,
  5926. "partnershipDomainPL006": null,
  5927. "potentialList": [],
  5928. "qzType": 0,
  5929. "qzFlag": 0,
  5930. "enterpriseId": null,
  5931. "nowZhaobMoneyD": 0,
  5932. "historyZhaobMoneyD": 0,
  5933. "nowZhaobMoney": "0",
  5934. "historyZhaobMoney": "0",
  5935. "collaborationChanges": null,
  5936. "collaborationChangesReduce": null,
  5937. "partnerType": null,
  5938. "partnerTypeCode": null,
  5939. "oneYearZhongbD": 0,
  5940. "historyZhongbD": 0,
  5941. "oneYearZhongb": "0",
  5942. "historyZhongb": "0",
  5943. "shareUserCode": null,
  5944. "shareUserName": null,
  5945. "pcShareUserName": null,
  5946. "legalPerson": null,
  5947. "registerDate": null,
  5948. "registerAmount": null,
  5949. "address": null,
  5950. "partnershipList": [],
  5951. "certificateList": [],
  5952. "partnership": "空白",
  5953. "pcList": [
  5954. {
  5955. "dataCode": "空白",
  5956. "dataName": "全产业",
  5957. "tagCode": null
  5958. }
  5959. ],
  5960. "pcChangeList": [],
  5961. "importDate": "2023-08-25 00:00:00",
  5962. "createByDate": "2023-11-23 18:40:07",
  5963. "sevenDayCreateTag": null,
  5964. "linkSize": 0
  5965. },
  5966. {
  5967. "id": "2017081475176687",
  5968. "center": "长沙",
  5969. "areaCode": "M4301",
  5970. "areaName": "长沙小微",
  5971. "city": null,
  5972. "partScale": 0,
  5973. "zbMoney": 0,
  5974. "custName": "(押金户)湖南崇胜贸易有限公司",
  5975. "custCode": "C200131313",
  5976. "officeAddr": "娄星区乐坪东街一品恒城3栋1201室",
  5977. "industryStr": null,
  5978. "brandStr": null,
  5979. "partUserCount": "0",
  5980. "centerCode": "12403",
  5981. "notAuthCenter": null,
  5982. "cityCode": null,
  5983. "bigChannelCode": "M",
  5984. "bigChannelName": "直营渠道",
  5985. "smallChannelCode": "HA009",
  5986. "smallChannelName": "纯三专海尔产品专卖类(净水)",
  5987. "mdmFlag": 1,
  5988. "zhaobMoney": 0,
  5989. "zhaobCount": 0,
  5990. "signCount": 0,
  5991. "partnershipDomainALL": null,
  5992. "partnershipDomainPL011": null,
  5993. "partnershipDomainPL005": null,
  5994. "partnershipDomainPL002": null,
  5995. "partnershipDomainPL001": null,
  5996. "partnershipDomainSPL007": null,
  5997. "partnershipDomainSPL006": null,
  5998. "partnershipDomainPL003": null,
  5999. "partnershipDomainPL007": null,
  6000. "partnershipDomainPL006": null,
  6001. "potentialList": [],
  6002. "qzType": 0,
  6003. "qzFlag": 0,
  6004. "enterpriseId": null,
  6005. "nowZhaobMoneyD": 0,
  6006. "historyZhaobMoneyD": 0,
  6007. "nowZhaobMoney": "0",
  6008. "historyZhaobMoney": "0",
  6009. "collaborationChanges": null,
  6010. "collaborationChangesReduce": null,
  6011. "partnerType": null,
  6012. "partnerTypeCode": null,
  6013. "oneYearZhongbD": 0,
  6014. "historyZhongbD": 0,
  6015. "oneYearZhongb": "0",
  6016. "historyZhongb": "0",
  6017. "shareUserCode": null,
  6018. "shareUserName": null,
  6019. "pcShareUserName": null,
  6020. "legalPerson": null,
  6021. "registerDate": null,
  6022. "registerAmount": null,
  6023. "address": null,
  6024. "partnershipList": [],
  6025. "certificateList": [],
  6026. "partnership": "空白",
  6027. "pcList": [
  6028. {
  6029. "dataCode": "空白",
  6030. "dataName": "全产业",
  6031. "tagCode": null
  6032. }
  6033. ],
  6034. "pcChangeList": [],
  6035. "importDate": "2017-08-14 16:40:05",
  6036. "createByDate": "2023-11-23 18:47:58",
  6037. "sevenDayCreateTag": null,
  6038. "linkSize": 0
  6039. },
  6040. {
  6041. "id": "2018110923338800",
  6042. "center": "长沙",
  6043. "areaCode": "M4301",
  6044. "areaName": "长沙小微",
  6045. "city": null,
  6046. "partScale": 0,
  6047. "zbMoney": 0,
  6048. "custName": "益阳新大商贸易有限公司(顺逛专户)",
  6049. "custCode": "C200084419",
  6050. "officeAddr": "益阳市赫山区邮庄路9号",
  6051. "industryStr": null,
  6052. "brandStr": null,
  6053. "partUserCount": "0",
  6054. "centerCode": "12403",
  6055. "notAuthCenter": null,
  6056. "cityCode": null,
  6057. "bigChannelCode": "M",
  6058. "bigChannelName": "直营渠道",
  6059. "smallChannelCode": "HA009",
  6060. "smallChannelName": "纯三专海尔产品专卖类(净水)",
  6061. "mdmFlag": 1,
  6062. "zhaobMoney": 0,
  6063. "zhaobCount": 0,
  6064. "signCount": 0,
  6065. "partnershipDomainALL": null,
  6066. "partnershipDomainPL011": null,
  6067. "partnershipDomainPL005": null,
  6068. "partnershipDomainPL002": null,
  6069. "partnershipDomainPL001": null,
  6070. "partnershipDomainSPL007": null,
  6071. "partnershipDomainSPL006": null,
  6072. "partnershipDomainPL003": null,
  6073. "partnershipDomainPL007": null,
  6074. "partnershipDomainPL006": null,
  6075. "potentialList": [],
  6076. "qzType": 0,
  6077. "qzFlag": 0,
  6078. "enterpriseId": null,
  6079. "nowZhaobMoneyD": 0,
  6080. "historyZhaobMoneyD": 0,
  6081. "nowZhaobMoney": "0",
  6082. "historyZhaobMoney": "0",
  6083. "collaborationChanges": null,
  6084. "collaborationChangesReduce": null,
  6085. "partnerType": null,
  6086. "partnerTypeCode": null,
  6087. "oneYearZhongbD": 0,
  6088. "historyZhongbD": 0,
  6089. "oneYearZhongb": "0",
  6090. "historyZhongb": "0",
  6091. "shareUserCode": null,
  6092. "shareUserName": null,
  6093. "pcShareUserName": null,
  6094. "legalPerson": null,
  6095. "registerDate": null,
  6096. "registerAmount": null,
  6097. "address": null,
  6098. "partnershipList": [],
  6099. "certificateList": [],
  6100. "partnership": "空白",
  6101. "pcList": [
  6102. {
  6103. "dataCode": "空白",
  6104. "dataName": "全产业",
  6105. "tagCode": null
  6106. }
  6107. ],
  6108. "pcChangeList": [],
  6109. "importDate": "2018-11-09 13:15:25",
  6110. "createByDate": "2023-11-23 18:48:24",
  6111. "sevenDayCreateTag": null,
  6112. "linkSize": 0
  6113. },
  6114. {
  6115. "id": "2024121347173658",
  6116. "center": "长沙",
  6117. "areaCode": "M4301",
  6118. "areaName": "长沙小微",
  6119. "city": "株洲市",
  6120. "partScale": 0,
  6121. "zbMoney": 0,
  6122. "custName": "(押金户)株洲嘉佳康电器有限公司",
  6123. "custCode": "C200155484",
  6124. "officeAddr": "湖南省株洲市荷塘区红旗南路219号中南建材商住楼3楼301号",
  6125. "industryStr": null,
  6126. "brandStr": null,
  6127. "partUserCount": "0",
  6128. "centerCode": "12403",
  6129. "notAuthCenter": null,
  6130. "cityCode": "430200000000",
  6131. "bigChannelCode": "M",
  6132. "bigChannelName": "直营渠道",
  6133. "smallChannelCode": "HA011",
  6134. "smallChannelName": "纯三专海尔产品专卖类(净水+热水器)",
  6135. "mdmFlag": 1,
  6136. "zhaobMoney": 0,
  6137. "zhaobCount": 0,
  6138. "signCount": 0,
  6139. "partnershipDomainALL": null,
  6140. "partnershipDomainPL011": null,
  6141. "partnershipDomainPL005": null,
  6142. "partnershipDomainPL002": null,
  6143. "partnershipDomainPL001": null,
  6144. "partnershipDomainSPL007": null,
  6145. "partnershipDomainSPL006": null,
  6146. "partnershipDomainPL003": null,
  6147. "partnershipDomainPL007": null,
  6148. "partnershipDomainPL006": null,
  6149. "potentialList": [],
  6150. "qzType": 0,
  6151. "qzFlag": 0,
  6152. "enterpriseId": null,
  6153. "nowZhaobMoneyD": 0,
  6154. "historyZhaobMoneyD": 0,
  6155. "nowZhaobMoney": "0",
  6156. "historyZhaobMoney": "0",
  6157. "collaborationChanges": null,
  6158. "collaborationChangesReduce": null,
  6159. "partnerType": null,
  6160. "partnerTypeCode": null,
  6161. "oneYearZhongbD": 0,
  6162. "historyZhongbD": 0,
  6163. "oneYearZhongb": "0",
  6164. "historyZhongb": "0",
  6165. "shareUserCode": null,
  6166. "shareUserName": null,
  6167. "pcShareUserName": null,
  6168. "legalPerson": null,
  6169. "registerDate": null,
  6170. "registerAmount": null,
  6171. "address": null,
  6172. "partnershipList": [],
  6173. "certificateList": [],
  6174. "partnership": "空白",
  6175. "pcList": [
  6176. {
  6177. "dataCode": "空白",
  6178. "dataName": "全产业",
  6179. "tagCode": null
  6180. }
  6181. ],
  6182. "pcChangeList": [],
  6183. "importDate": "2024-12-13 11:28:45",
  6184. "createByDate": "2024-12-14 02:50:04",
  6185. "sevenDayCreateTag": null,
  6186. "linkSize": 0
  6187. },
  6188. {
  6189. "id": "2025053023308565",
  6190. "center": "长沙",
  6191. "areaCode": "M4301",
  6192. "areaName": "长沙小微",
  6193. "city": "湘西土家族苗族自治州",
  6194. "partScale": 0,
  6195. "zbMoney": 0,
  6196. "custName": "凤凰县畅会家用电器销售有限公司凯盛建材海尔专卖店",
  6197. "custCode": "8800634155",
  6198. "officeAddr": "湘西土家族苗族自治州凤凰县凯盛建材城县公安局对面",
  6199. "industryStr": null,
  6200. "brandStr": null,
  6201. "partUserCount": "0",
  6202. "centerCode": "12403",
  6203. "notAuthCenter": null,
  6204. "cityCode": "433100000000",
  6205. "bigChannelCode": "M",
  6206. "bigChannelName": "直营渠道",
  6207. "smallChannelCode": "HA001",
  6208. "smallChannelName": "纯三专海尔成套专卖类",
  6209. "mdmFlag": 1,
  6210. "zhaobMoney": 0,
  6211. "zhaobCount": 0,
  6212. "signCount": 1,
  6213. "partnershipDomainALL": null,
  6214. "partnershipDomainPL011": null,
  6215. "partnershipDomainPL005": null,
  6216. "partnershipDomainPL002": null,
  6217. "partnershipDomainPL001": null,
  6218. "partnershipDomainSPL007": null,
  6219. "partnershipDomainSPL006": null,
  6220. "partnershipDomainPL003": null,
  6221. "partnershipDomainPL007": null,
  6222. "partnershipDomainPL006": null,
  6223. "potentialList": [],
  6224. "qzType": 0,
  6225. "qzFlag": 0,
  6226. "enterpriseId": null,
  6227. "nowZhaobMoneyD": 0,
  6228. "historyZhaobMoneyD": 0,
  6229. "nowZhaobMoney": "0",
  6230. "historyZhaobMoney": "0",
  6231. "collaborationChanges": null,
  6232. "collaborationChangesReduce": null,
  6233. "partnerType": null,
  6234. "partnerTypeCode": null,
  6235. "oneYearZhongbD": 0,
  6236. "historyZhongbD": 0,
  6237. "oneYearZhongb": "0",
  6238. "historyZhongb": "0",
  6239. "shareUserCode": null,
  6240. "shareUserName": null,
  6241. "pcShareUserName": null,
  6242. "legalPerson": null,
  6243. "registerDate": null,
  6244. "registerAmount": null,
  6245. "address": null,
  6246. "partnershipList": [],
  6247. "certificateList": [],
  6248. "partnership": "空白",
  6249. "pcList": [
  6250. {
  6251. "dataCode": "空白",
  6252. "dataName": "全产业",
  6253. "tagCode": null
  6254. }
  6255. ],
  6256. "pcChangeList": [],
  6257. "importDate": "2025-05-30 18:04:24",
  6258. "createByDate": "2025-05-31 02:50:02",
  6259. "sevenDayCreateTag": null,
  6260. "linkSize": 0
  6261. },
  6262. {
  6263. "id": "2020121637478313",
  6264. "center": "长沙",
  6265. "areaCode": "M4301",
  6266. "areaName": "长沙小微",
  6267. "city": "永州市",
  6268. "partScale": 0,
  6269. "zbMoney": 0,
  6270. "custName": "(押金户)永州市林智电器有限责任公司",
  6271. "custCode": "C200145174",
  6272. "officeAddr": "湖南永州市冷水滩区河东梅湾路272号",
  6273. "industryStr": null,
  6274. "brandStr": null,
  6275. "partUserCount": "0",
  6276. "centerCode": "12403",
  6277. "notAuthCenter": null,
  6278. "cityCode": "431100000000",
  6279. "bigChannelCode": "M",
  6280. "bigChannelName": "直营渠道",
  6281. "smallChannelCode": "HA001",
  6282. "smallChannelName": "纯三专海尔成套专卖类",
  6283. "mdmFlag": 1,
  6284. "zhaobMoney": 0,
  6285. "zhaobCount": 0,
  6286. "signCount": 0,
  6287. "partnershipDomainALL": null,
  6288. "partnershipDomainPL011": null,
  6289. "partnershipDomainPL005": null,
  6290. "partnershipDomainPL002": null,
  6291. "partnershipDomainPL001": null,
  6292. "partnershipDomainSPL007": null,
  6293. "partnershipDomainSPL006": null,
  6294. "partnershipDomainPL003": null,
  6295. "partnershipDomainPL007": null,
  6296. "partnershipDomainPL006": null,
  6297. "potentialList": [],
  6298. "qzType": 0,
  6299. "qzFlag": 0,
  6300. "enterpriseId": null,
  6301. "nowZhaobMoneyD": 0,
  6302. "historyZhaobMoneyD": 0,
  6303. "nowZhaobMoney": "0",
  6304. "historyZhaobMoney": "0",
  6305. "collaborationChanges": null,
  6306. "collaborationChangesReduce": null,
  6307. "partnerType": null,
  6308. "partnerTypeCode": null,
  6309. "oneYearZhongbD": 0,
  6310. "historyZhongbD": 0,
  6311. "oneYearZhongb": "0",
  6312. "historyZhongb": "0",
  6313. "shareUserCode": null,
  6314. "shareUserName": null,
  6315. "pcShareUserName": null,
  6316. "legalPerson": null,
  6317. "registerDate": null,
  6318. "registerAmount": null,
  6319. "address": null,
  6320. "partnershipList": [],
  6321. "certificateList": [],
  6322. "partnership": "空白",
  6323. "pcList": [
  6324. {
  6325. "dataCode": "空白",
  6326. "dataName": "全产业",
  6327. "tagCode": null
  6328. }
  6329. ],
  6330. "pcChangeList": [],
  6331. "importDate": "2020-12-16 00:00:00",
  6332. "createByDate": "2023-11-23 18:41:24",
  6333. "sevenDayCreateTag": null,
  6334. "linkSize": 0
  6335. },
  6336. {
  6337. "id": "1896484570062381057",
  6338. "center": "长沙",
  6339. "areaCode": "M4301",
  6340. "areaName": "长沙小微",
  6341. "city": "长沙市",
  6342. "partScale": 0,
  6343. "zbMoney": 0,
  6344. "custName": "湖南雅智暖通设备工程有限公司",
  6345. "custCode": "8800630576",
  6346. "officeAddr": "湖南省长沙市芙蓉区荷花园街道东方新城C6栋1单元117房",
  6347. "industryStr": null,
  6348. "brandStr": null,
  6349. "partUserCount": "0",
  6350. "centerCode": "12403",
  6351. "notAuthCenter": null,
  6352. "cityCode": "430100000000",
  6353. "bigChannelCode": "M",
  6354. "bigChannelName": "直营渠道",
  6355. "smallChannelCode": "HA007",
  6356. "smallChannelName": "纯三专工程类",
  6357. "mdmFlag": 1,
  6358. "zhaobMoney": 0,
  6359. "zhaobCount": 0,
  6360. "signCount": 3,
  6361. "partnershipDomainALL": null,
  6362. "partnershipDomainPL011": null,
  6363. "partnershipDomainPL005": null,
  6364. "partnershipDomainPL002": null,
  6365. "partnershipDomainPL001": null,
  6366. "partnershipDomainSPL007": null,
  6367. "partnershipDomainSPL006": null,
  6368. "partnershipDomainPL003": null,
  6369. "partnershipDomainPL007": null,
  6370. "partnershipDomainPL006": null,
  6371. "potentialList": [],
  6372. "qzType": 0,
  6373. "qzFlag": 0,
  6374. "enterpriseId": 1896484570091741200,
  6375. "nowZhaobMoneyD": 0,
  6376. "historyZhaobMoneyD": 0,
  6377. "nowZhaobMoney": "0",
  6378. "historyZhaobMoney": "0",
  6379. "collaborationChanges": null,
  6380. "collaborationChangesReduce": null,
  6381. "partnerType": null,
  6382. "partnerTypeCode": null,
  6383. "oneYearZhongbD": 0,
  6384. "historyZhongbD": 0,
  6385. "oneYearZhongb": "0",
  6386. "historyZhongb": "0",
  6387. "shareUserCode": null,
  6388. "shareUserName": null,
  6389. "pcShareUserName": null,
  6390. "legalPerson": null,
  6391. "registerDate": null,
  6392. "registerAmount": null,
  6393. "address": null,
  6394. "partnershipList": [],
  6395. "certificateList": [],
  6396. "partnership": "空白",
  6397. "pcList": [
  6398. {
  6399. "dataCode": "空白",
  6400. "dataName": "全产业",
  6401. "tagCode": null
  6402. }
  6403. ],
  6404. "pcChangeList": [],
  6405. "importDate": "2025-05-07 16:05:16",
  6406. "createByDate": "2025-03-03 16:55:31",
  6407. "sevenDayCreateTag": null,
  6408. "linkSize": 0
  6409. },
  6410. {
  6411. "id": "1684869439063592961",
  6412. "center": "长沙",
  6413. "areaCode": "M4301",
  6414. "areaName": "长沙小微",
  6415. "city": "长沙市",
  6416. "partScale": 0,
  6417. "zbMoney": 0,
  6418. "custName": "湖南兰德科技发展有限公司",
  6419. "custCode": "8800611151",
  6420. "officeAddr": "湖南省长沙市芙蓉区马坡岭街道隆园五路2号丰兴机械电子产业园6栋、7栋1008号",
  6421. "industryStr": null,
  6422. "brandStr": null,
  6423. "partUserCount": "0",
  6424. "centerCode": "12403",
  6425. "notAuthCenter": null,
  6426. "cityCode": "430100000000",
  6427. "bigChannelCode": "M",
  6428. "bigChannelName": "直营渠道",
  6429. "smallChannelCode": "HA007",
  6430. "smallChannelName": "纯三专工程类",
  6431. "mdmFlag": 1,
  6432. "zhaobMoney": 94.65,
  6433. "zhaobCount": 1,
  6434. "signCount": 17,
  6435. "partnershipDomainALL": null,
  6436. "partnershipDomainPL011": null,
  6437. "partnershipDomainPL005": null,
  6438. "partnershipDomainPL002": null,
  6439. "partnershipDomainPL001": null,
  6440. "partnershipDomainSPL007": null,
  6441. "partnershipDomainSPL006": null,
  6442. "partnershipDomainPL003": null,
  6443. "partnershipDomainPL007": null,
  6444. "partnershipDomainPL006": null,
  6445. "potentialList": [
  6446. {
  6447. "dataCode": "中",
  6448. "dataName": "家用空调",
  6449. "tagCode": null
  6450. },
  6451. {
  6452. "dataCode": "高",
  6453. "dataName": "智慧楼宇",
  6454. "tagCode": null
  6455. }
  6456. ],
  6457. "qzType": 0,
  6458. "qzFlag": 2,
  6459. "enterpriseId": null,
  6460. "nowZhaobMoneyD": 0,
  6461. "historyZhaobMoneyD": 0,
  6462. "nowZhaobMoney": "0",
  6463. "historyZhaobMoney": "0",
  6464. "collaborationChanges": null,
  6465. "collaborationChangesReduce": null,
  6466. "partnerType": "企业",
  6467. "partnerTypeCode": "91",
  6468. "oneYearZhongbD": 0,
  6469. "historyZhongbD": 95,
  6470. "oneYearZhongb": "0",
  6471. "historyZhongb": "95",
  6472. "shareUserCode": null,
  6473. "shareUserName": null,
  6474. "pcShareUserName": null,
  6475. "legalPerson": null,
  6476. "registerDate": null,
  6477. "registerAmount": null,
  6478. "address": null,
  6479. "partnershipList": [],
  6480. "certificateList": [],
  6481. "partnership": "空白",
  6482. "pcList": [
  6483. {
  6484. "dataCode": "空白",
  6485. "dataName": "全产业",
  6486. "tagCode": null
  6487. },
  6488. {
  6489. "dataCode": "中",
  6490. "dataName": "家用空调",
  6491. "tagCode": null
  6492. },
  6493. {
  6494. "dataCode": "高",
  6495. "dataName": "智慧楼宇",
  6496. "tagCode": null
  6497. }
  6498. ],
  6499. "pcChangeList": [],
  6500. "importDate": "2025-01-20 00:00:00",
  6501. "createByDate": "2023-07-28 18:12:32",
  6502. "sevenDayCreateTag": null,
  6503. "linkSize": 0
  6504. },
  6505. {
  6506. "id": "2011042005762024",
  6507. "center": "长沙",
  6508. "areaCode": "M4301",
  6509. "areaName": "长沙小微",
  6510. "city": "益阳市",
  6511. "partScale": 11.22,
  6512. "zbMoney": 0,
  6513. "custName": "沅江市腾龙电器有限公司",
  6514. "custCode": "8800117735",
  6515. "officeAddr": "沅江市琼湖中路",
  6516. "industryStr": null,
  6517. "brandStr": null,
  6518. "partUserCount": "0",
  6519. "centerCode": "12403",
  6520. "notAuthCenter": null,
  6521. "cityCode": "430900000000",
  6522. "bigChannelCode": "M",
  6523. "bigChannelName": "直营渠道",
  6524. "smallChannelCode": "HM002",
  6525. "smallChannelName": "准三专海尔家电卖场类",
  6526. "mdmFlag": 1,
  6527. "zhaobMoney": 0,
  6528. "zhaobCount": 0,
  6529. "signCount": 1,
  6530. "partnershipDomainALL": null,
  6531. "partnershipDomainPL011": null,
  6532. "partnershipDomainPL005": null,
  6533. "partnershipDomainPL002": null,
  6534. "partnershipDomainPL001": null,
  6535. "partnershipDomainSPL007": null,
  6536. "partnershipDomainSPL006": null,
  6537. "partnershipDomainPL003": null,
  6538. "partnershipDomainPL007": null,
  6539. "partnershipDomainPL006": null,
  6540. "potentialList": [],
  6541. "qzType": 0,
  6542. "qzFlag": 0,
  6543. "enterpriseId": null,
  6544. "nowZhaobMoneyD": 0,
  6545. "historyZhaobMoneyD": 0,
  6546. "nowZhaobMoney": "0",
  6547. "historyZhaobMoney": "0",
  6548. "collaborationChanges": null,
  6549. "collaborationChangesReduce": null,
  6550. "partnerType": null,
  6551. "partnerTypeCode": null,
  6552. "oneYearZhongbD": 0,
  6553. "historyZhongbD": 0,
  6554. "oneYearZhongb": "0",
  6555. "historyZhongb": "0",
  6556. "shareUserCode": null,
  6557. "shareUserName": null,
  6558. "pcShareUserName": null,
  6559. "legalPerson": null,
  6560. "registerDate": null,
  6561. "registerAmount": null,
  6562. "address": null,
  6563. "partnershipList": [],
  6564. "certificateList": [],
  6565. "partnership": "空白",
  6566. "pcList": [
  6567. {
  6568. "dataCode": "空白",
  6569. "dataName": "全产业",
  6570. "tagCode": null
  6571. }
  6572. ],
  6573. "pcChangeList": [],
  6574. "importDate": "2011-04-20 13:27:27",
  6575. "createByDate": "2023-11-23 18:45:58",
  6576. "sevenDayCreateTag": null,
  6577. "linkSize": 0
  6578. },
  6579. {
  6580. "id": "2014041758121344",
  6581. "center": "长沙",
  6582. "areaCode": "M4301",
  6583. "areaName": "长沙小微",
  6584. "city": null,
  6585. "partScale": 0,
  6586. "zbMoney": 0,
  6587. "custName": "安仁县家乐电器有限责任公司",
  6588. "custCode": "8800167634",
  6589. "officeAddr": "安仁县城关镇五一南路",
  6590. "industryStr": null,
  6591. "brandStr": null,
  6592. "partUserCount": "0",
  6593. "centerCode": "12403",
  6594. "notAuthCenter": null,
  6595. "cityCode": null,
  6596. "bigChannelCode": "M",
  6597. "bigChannelName": "直营渠道",
  6598. "smallChannelCode": "HM002",
  6599. "smallChannelName": "准三专海尔家电卖场类",
  6600. "mdmFlag": 1,
  6601. "zhaobMoney": 0,
  6602. "zhaobCount": 0,
  6603. "signCount": 0,
  6604. "partnershipDomainALL": null,
  6605. "partnershipDomainPL011": null,
  6606. "partnershipDomainPL005": null,
  6607. "partnershipDomainPL002": null,
  6608. "partnershipDomainPL001": null,
  6609. "partnershipDomainSPL007": null,
  6610. "partnershipDomainSPL006": null,
  6611. "partnershipDomainPL003": null,
  6612. "partnershipDomainPL007": null,
  6613. "partnershipDomainPL006": null,
  6614. "potentialList": [],
  6615. "qzType": 0,
  6616. "qzFlag": 0,
  6617. "enterpriseId": null,
  6618. "nowZhaobMoneyD": 0,
  6619. "historyZhaobMoneyD": 0,
  6620. "nowZhaobMoney": "0",
  6621. "historyZhaobMoney": "0",
  6622. "collaborationChanges": null,
  6623. "collaborationChangesReduce": null,
  6624. "partnerType": null,
  6625. "partnerTypeCode": null,
  6626. "oneYearZhongbD": 0,
  6627. "historyZhongbD": 0,
  6628. "oneYearZhongb": "0",
  6629. "historyZhongb": "0",
  6630. "shareUserCode": null,
  6631. "shareUserName": null,
  6632. "pcShareUserName": null,
  6633. "legalPerson": null,
  6634. "registerDate": null,
  6635. "registerAmount": null,
  6636. "address": null,
  6637. "partnershipList": [],
  6638. "certificateList": [],
  6639. "partnership": "空白",
  6640. "pcList": [
  6641. {
  6642. "dataCode": "空白",
  6643. "dataName": "全产业",
  6644. "tagCode": null
  6645. }
  6646. ],
  6647. "pcChangeList": [],
  6648. "importDate": "2014-04-17 00:00:00",
  6649. "createByDate": "2023-11-23 18:44:54",
  6650. "sevenDayCreateTag": null,
  6651. "linkSize": 0
  6652. },
  6653. {
  6654. "id": "2012040956539710",
  6655. "center": "长沙",
  6656. "areaCode": "M4301",
  6657. "areaName": "长沙小微",
  6658. "city": null,
  6659. "partScale": 0,
  6660. "zbMoney": 0,
  6661. "custName": "(工程押金户)双峰县东方电器有限公司",
  6662. "custCode": "C200053797",
  6663. "officeAddr": "永丰镇复兴路",
  6664. "industryStr": null,
  6665. "brandStr": null,
  6666. "partUserCount": "0",
  6667. "centerCode": "12403",
  6668. "notAuthCenter": null,
  6669. "cityCode": null,
  6670. "bigChannelCode": "M",
  6671. "bigChannelName": "直营渠道",
  6672. "smallChannelCode": "HA001",
  6673. "smallChannelName": "纯三专海尔成套专卖类",
  6674. "mdmFlag": 1,
  6675. "zhaobMoney": 0,
  6676. "zhaobCount": 0,
  6677. "signCount": 0,
  6678. "partnershipDomainALL": null,
  6679. "partnershipDomainPL011": null,
  6680. "partnershipDomainPL005": null,
  6681. "partnershipDomainPL002": null,
  6682. "partnershipDomainPL001": null,
  6683. "partnershipDomainSPL007": null,
  6684. "partnershipDomainSPL006": null,
  6685. "partnershipDomainPL003": null,
  6686. "partnershipDomainPL007": null,
  6687. "partnershipDomainPL006": null,
  6688. "potentialList": [],
  6689. "qzType": 0,
  6690. "qzFlag": 0,
  6691. "enterpriseId": null,
  6692. "nowZhaobMoneyD": 0,
  6693. "historyZhaobMoneyD": 0,
  6694. "nowZhaobMoney": "0",
  6695. "historyZhaobMoney": "0",
  6696. "collaborationChanges": null,
  6697. "collaborationChangesReduce": null,
  6698. "partnerType": null,
  6699. "partnerTypeCode": null,
  6700. "oneYearZhongbD": 0,
  6701. "historyZhongbD": 0,
  6702. "oneYearZhongb": "0",
  6703. "historyZhongb": "0",
  6704. "shareUserCode": null,
  6705. "shareUserName": null,
  6706. "pcShareUserName": null,
  6707. "legalPerson": null,
  6708. "registerDate": null,
  6709. "registerAmount": null,
  6710. "address": null,
  6711. "partnershipList": [],
  6712. "certificateList": [],
  6713. "partnership": "空白",
  6714. "pcList": [
  6715. {
  6716. "dataCode": "空白",
  6717. "dataName": "全产业",
  6718. "tagCode": null
  6719. }
  6720. ],
  6721. "pcChangeList": [],
  6722. "importDate": "2012-04-09 00:00:00",
  6723. "createByDate": "2023-11-23 18:45:41",
  6724. "sevenDayCreateTag": null,
  6725. "linkSize": 0
  6726. },
  6727. {
  6728. "id": "2014110349402195",
  6729. "center": "长沙",
  6730. "areaCode": "M4301",
  6731. "areaName": "长沙小微",
  6732. "city": null,
  6733. "partScale": 0,
  6734. "zbMoney": 0,
  6735. "custName": "(押金户)临武县阳光家用电器销售有限公司",
  6736. "custCode": "C200124801",
  6737. "officeAddr": "城关镇东云路(农贸市场入口处)",
  6738. "industryStr": null,
  6739. "brandStr": null,
  6740. "partUserCount": "0",
  6741. "centerCode": "12403",
  6742. "notAuthCenter": null,
  6743. "cityCode": "",
  6744. "bigChannelCode": "M",
  6745. "bigChannelName": "直营渠道",
  6746. "smallChannelCode": "HM002",
  6747. "smallChannelName": "准三专海尔家电卖场类",
  6748. "mdmFlag": 1,
  6749. "zhaobMoney": 0,
  6750. "zhaobCount": 0,
  6751. "signCount": 0,
  6752. "partnershipDomainALL": null,
  6753. "partnershipDomainPL011": null,
  6754. "partnershipDomainPL005": null,
  6755. "partnershipDomainPL002": null,
  6756. "partnershipDomainPL001": null,
  6757. "partnershipDomainSPL007": null,
  6758. "partnershipDomainSPL006": null,
  6759. "partnershipDomainPL003": null,
  6760. "partnershipDomainPL007": null,
  6761. "partnershipDomainPL006": null,
  6762. "potentialList": [],
  6763. "qzType": 0,
  6764. "qzFlag": 0,
  6765. "enterpriseId": null,
  6766. "nowZhaobMoneyD": 0,
  6767. "historyZhaobMoneyD": 0,
  6768. "nowZhaobMoney": "0",
  6769. "historyZhaobMoney": "0",
  6770. "collaborationChanges": null,
  6771. "collaborationChangesReduce": null,
  6772. "partnerType": null,
  6773. "partnerTypeCode": null,
  6774. "oneYearZhongbD": 0,
  6775. "historyZhongbD": 0,
  6776. "oneYearZhongb": "0",
  6777. "historyZhongb": "0",
  6778. "shareUserCode": null,
  6779. "shareUserName": null,
  6780. "pcShareUserName": null,
  6781. "legalPerson": null,
  6782. "registerDate": null,
  6783. "registerAmount": null,
  6784. "address": null,
  6785. "partnershipList": [],
  6786. "certificateList": [],
  6787. "partnership": "空白",
  6788. "pcList": [
  6789. {
  6790. "dataCode": "空白",
  6791. "dataName": "全产业",
  6792. "tagCode": null
  6793. }
  6794. ],
  6795. "pcChangeList": [],
  6796. "importDate": "2014-11-03 00:00:00",
  6797. "createByDate": "2023-11-23 18:44:38",
  6798. "sevenDayCreateTag": null,
  6799. "linkSize": 0
  6800. },
  6801. {
  6802. "id": "2009061107040917",
  6803. "center": "长沙",
  6804. "areaCode": "M4301",
  6805. "areaName": "长沙小微",
  6806. "city": null,
  6807. "partScale": 0,
  6808. "zbMoney": 0,
  6809. "custName": "(押金户)娄底市娄星区玉兴电器有限公司",
  6810. "custCode": "C200046106",
  6811. "officeAddr": "湖南省娄底市洞新电器城243-244",
  6812. "industryStr": null,
  6813. "brandStr": null,
  6814. "partUserCount": "0",
  6815. "centerCode": "12403",
  6816. "notAuthCenter": null,
  6817. "cityCode": null,
  6818. "bigChannelCode": "M",
  6819. "bigChannelName": "直营渠道",
  6820. "smallChannelCode": "HA001",
  6821. "smallChannelName": "纯三专海尔成套专卖类",
  6822. "mdmFlag": 1,
  6823. "zhaobMoney": 0,
  6824. "zhaobCount": 0,
  6825. "signCount": 0,
  6826. "partnershipDomainALL": null,
  6827. "partnershipDomainPL011": null,
  6828. "partnershipDomainPL005": null,
  6829. "partnershipDomainPL002": null,
  6830. "partnershipDomainPL001": null,
  6831. "partnershipDomainSPL007": null,
  6832. "partnershipDomainSPL006": null,
  6833. "partnershipDomainPL003": null,
  6834. "partnershipDomainPL007": null,
  6835. "partnershipDomainPL006": null,
  6836. "potentialList": [],
  6837. "qzType": 0,
  6838. "qzFlag": 0,
  6839. "enterpriseId": null,
  6840. "nowZhaobMoneyD": 0,
  6841. "historyZhaobMoneyD": 0,
  6842. "nowZhaobMoney": "0",
  6843. "historyZhaobMoney": "0",
  6844. "collaborationChanges": null,
  6845. "collaborationChangesReduce": null,
  6846. "partnerType": null,
  6847. "partnerTypeCode": null,
  6848. "oneYearZhongbD": 0,
  6849. "historyZhongbD": 0,
  6850. "oneYearZhongb": "0",
  6851. "historyZhongb": "0",
  6852. "shareUserCode": null,
  6853. "shareUserName": null,
  6854. "pcShareUserName": null,
  6855. "legalPerson": null,
  6856. "registerDate": null,
  6857. "registerAmount": null,
  6858. "address": null,
  6859. "partnershipList": [],
  6860. "certificateList": [],
  6861. "partnership": "空白",
  6862. "pcList": [
  6863. {
  6864. "dataCode": "空白",
  6865. "dataName": "全产业",
  6866. "tagCode": null
  6867. }
  6868. ],
  6869. "pcChangeList": [],
  6870. "importDate": "2009-06-11 13:02:58",
  6871. "createByDate": "2023-11-23 18:47:46",
  6872. "sevenDayCreateTag": null,
  6873. "linkSize": 0
  6874. },
  6875. {
  6876. "id": "2018110923344648",
  6877. "center": "长沙",
  6878. "areaCode": "M4301",
  6879. "areaName": "长沙小微",
  6880. "city": null,
  6881. "partScale": 0,
  6882. "zbMoney": 0,
  6883. "custName": "湖南千佰佳厨房设备有限公司(顺逛专户)",
  6884. "custCode": "C200087272",
  6885. "officeAddr": "湖南省娄底市娄星区娄星南路164号",
  6886. "industryStr": null,
  6887. "brandStr": null,
  6888. "partUserCount": "0",
  6889. "centerCode": "12403",
  6890. "notAuthCenter": null,
  6891. "cityCode": null,
  6892. "bigChannelCode": "M",
  6893. "bigChannelName": "直营渠道",
  6894. "smallChannelCode": "HA007",
  6895. "smallChannelName": "纯三专工程类",
  6896. "mdmFlag": 1,
  6897. "zhaobMoney": 0,
  6898. "zhaobCount": 0,
  6899. "signCount": 0,
  6900. "partnershipDomainALL": null,
  6901. "partnershipDomainPL011": null,
  6902. "partnershipDomainPL005": null,
  6903. "partnershipDomainPL002": null,
  6904. "partnershipDomainPL001": null,
  6905. "partnershipDomainSPL007": null,
  6906. "partnershipDomainSPL006": null,
  6907. "partnershipDomainPL003": null,
  6908. "partnershipDomainPL007": null,
  6909. "partnershipDomainPL006": null,
  6910. "potentialList": [],
  6911. "qzType": 0,
  6912. "qzFlag": 0,
  6913. "enterpriseId": null,
  6914. "nowZhaobMoneyD": 0,
  6915. "historyZhaobMoneyD": 0,
  6916. "nowZhaobMoney": "0",
  6917. "historyZhaobMoney": "0",
  6918. "collaborationChanges": null,
  6919. "collaborationChangesReduce": null,
  6920. "partnerType": null,
  6921. "partnerTypeCode": null,
  6922. "oneYearZhongbD": 0,
  6923. "historyZhongbD": 0,
  6924. "oneYearZhongb": "0",
  6925. "historyZhongb": "0",
  6926. "shareUserCode": null,
  6927. "shareUserName": null,
  6928. "pcShareUserName": null,
  6929. "legalPerson": null,
  6930. "registerDate": null,
  6931. "registerAmount": null,
  6932. "address": null,
  6933. "partnershipList": [],
  6934. "certificateList": [],
  6935. "partnership": "空白",
  6936. "pcList": [
  6937. {
  6938. "dataCode": "空白",
  6939. "dataName": "全产业",
  6940. "tagCode": null
  6941. }
  6942. ],
  6943. "pcChangeList": [],
  6944. "importDate": "2018-11-09 13:15:47",
  6945. "createByDate": "2023-11-23 18:48:15",
  6946. "sevenDayCreateTag": null,
  6947. "linkSize": 0
  6948. },
  6949. {
  6950. "id": "1953290279965294594",
  6951. "center": "长沙",
  6952. "areaCode": "M4301",
  6953. "areaName": "长沙小微",
  6954. "city": "长沙市",
  6955. "partScale": 0,
  6956. "zbMoney": 0,
  6957. "custName": "湖南朗晴环控节能科技有限公司",
  6958. "custCode": "8800646026",
  6959. "officeAddr": "长沙市雨花区同升街道环保中路210号乐沃居1栋、2栋、3栋厂房第2#栋、3#栋4层401号",
  6960. "industryStr": null,
  6961. "brandStr": null,
  6962. "partUserCount": "0",
  6963. "centerCode": "12403",
  6964. "notAuthCenter": null,
  6965. "cityCode": "430100000000",
  6966. "bigChannelCode": "M",
  6967. "bigChannelName": "直营渠道",
  6968. "smallChannelCode": "HA007",
  6969. "smallChannelName": "纯三专工程类",
  6970. "mdmFlag": 1,
  6971. "zhaobMoney": 0,
  6972. "zhaobCount": 0,
  6973. "signCount": 4,
  6974. "partnershipDomainALL": null,
  6975. "partnershipDomainPL011": null,
  6976. "partnershipDomainPL005": null,
  6977. "partnershipDomainPL002": null,
  6978. "partnershipDomainPL001": null,
  6979. "partnershipDomainSPL007": null,
  6980. "partnershipDomainSPL006": null,
  6981. "partnershipDomainPL003": null,
  6982. "partnershipDomainPL007": null,
  6983. "partnershipDomainPL006": null,
  6984. "potentialList": [],
  6985. "qzType": 0,
  6986. "qzFlag": 0,
  6987. "enterpriseId": null,
  6988. "nowZhaobMoneyD": 0,
  6989. "historyZhaobMoneyD": 0,
  6990. "nowZhaobMoney": "0",
  6991. "historyZhaobMoney": "0",
  6992. "collaborationChanges": null,
  6993. "collaborationChangesReduce": null,
  6994. "partnerType": null,
  6995. "partnerTypeCode": null,
  6996. "oneYearZhongbD": 0,
  6997. "historyZhongbD": 0,
  6998. "oneYearZhongb": "0",
  6999. "historyZhongb": "0",
  7000. "shareUserCode": null,
  7001. "shareUserName": null,
  7002. "pcShareUserName": null,
  7003. "legalPerson": null,
  7004. "registerDate": null,
  7005. "registerAmount": null,
  7006. "address": null,
  7007. "partnershipList": [],
  7008. "certificateList": [],
  7009. "partnership": "薄弱",
  7010. "pcList": [
  7011. {
  7012. "dataCode": "薄弱",
  7013. "dataName": "全产业",
  7014. "tagCode": null
  7015. }
  7016. ],
  7017. "pcChangeList": [],
  7018. "importDate": "2025-08-25 17:33:19",
  7019. "createByDate": "2025-08-07 11:01:07",
  7020. "sevenDayCreateTag": null,
  7021. "linkSize": 0
  7022. },
  7023. {
  7024. "id": "2023092755553681",
  7025. "center": "长沙",
  7026. "areaCode": "M4301",
  7027. "areaName": "长沙小微",
  7028. "city": "永州市",
  7029. "partScale": 0,
  7030. "zbMoney": 0,
  7031. "custName": "永州市润成电器有限公司江永县智慧城空气店",
  7032. "custCode": "8800538536",
  7033. "officeAddr": "永州市江永县中国供销智慧商贸物流城8栋",
  7034. "industryStr": null,
  7035. "brandStr": null,
  7036. "partUserCount": "0",
  7037. "centerCode": "12403",
  7038. "notAuthCenter": null,
  7039. "cityCode": "431100000000",
  7040. "bigChannelCode": "M",
  7041. "bigChannelName": "直营渠道",
  7042. "smallChannelCode": "HA001",
  7043. "smallChannelName": "纯三专海尔成套专卖类",
  7044. "mdmFlag": 1,
  7045. "zhaobMoney": 0,
  7046. "zhaobCount": 0,
  7047. "signCount": 0,
  7048. "partnershipDomainALL": null,
  7049. "partnershipDomainPL011": null,
  7050. "partnershipDomainPL005": null,
  7051. "partnershipDomainPL002": null,
  7052. "partnershipDomainPL001": null,
  7053. "partnershipDomainSPL007": null,
  7054. "partnershipDomainSPL006": null,
  7055. "partnershipDomainPL003": null,
  7056. "partnershipDomainPL007": null,
  7057. "partnershipDomainPL006": null,
  7058. "potentialList": [],
  7059. "qzType": 0,
  7060. "qzFlag": 0,
  7061. "enterpriseId": null,
  7062. "nowZhaobMoneyD": 0,
  7063. "historyZhaobMoneyD": 0,
  7064. "nowZhaobMoney": "0",
  7065. "historyZhaobMoney": "0",
  7066. "collaborationChanges": null,
  7067. "collaborationChangesReduce": null,
  7068. "partnerType": null,
  7069. "partnerTypeCode": null,
  7070. "oneYearZhongbD": 0,
  7071. "historyZhongbD": 0,
  7072. "oneYearZhongb": "0",
  7073. "historyZhongb": "0",
  7074. "shareUserCode": null,
  7075. "shareUserName": null,
  7076. "pcShareUserName": null,
  7077. "legalPerson": null,
  7078. "registerDate": null,
  7079. "registerAmount": null,
  7080. "address": null,
  7081. "partnershipList": [],
  7082. "certificateList": [],
  7083. "partnership": "空白",
  7084. "pcList": [
  7085. {
  7086. "dataCode": "空白",
  7087. "dataName": "全产业",
  7088. "tagCode": null
  7089. }
  7090. ],
  7091. "pcChangeList": [],
  7092. "importDate": "2023-09-27 00:00:00",
  7093. "createByDate": "2023-11-23 18:40:05",
  7094. "sevenDayCreateTag": null,
  7095. "linkSize": 0
  7096. },
  7097. {
  7098. "id": "2024022099887790",
  7099. "center": "长沙",
  7100. "areaCode": "M4301",
  7101. "areaName": "长沙小微",
  7102. "city": "长沙市",
  7103. "partScale": 0,
  7104. "zbMoney": 0,
  7105. "custName": "长沙市和美电器贸易有限公司嘉宝点石家装公司洗护店",
  7106. "custCode": "8800558319",
  7107. "officeAddr": "长沙市芙蓉区马王堆中路与远大路交汇处东方芙蓉3楼",
  7108. "industryStr": null,
  7109. "brandStr": null,
  7110. "partUserCount": "0",
  7111. "centerCode": "12403",
  7112. "notAuthCenter": null,
  7113. "cityCode": "430100000000",
  7114. "bigChannelCode": "M",
  7115. "bigChannelName": "直营渠道",
  7116. "smallChannelCode": "HA001",
  7117. "smallChannelName": "纯三专海尔成套专卖类",
  7118. "mdmFlag": 1,
  7119. "zhaobMoney": 0,
  7120. "zhaobCount": 0,
  7121. "signCount": 0,
  7122. "partnershipDomainALL": null,
  7123. "partnershipDomainPL011": null,
  7124. "partnershipDomainPL005": null,
  7125. "partnershipDomainPL002": null,
  7126. "partnershipDomainPL001": null,
  7127. "partnershipDomainSPL007": null,
  7128. "partnershipDomainSPL006": null,
  7129. "partnershipDomainPL003": null,
  7130. "partnershipDomainPL007": null,
  7131. "partnershipDomainPL006": null,
  7132. "potentialList": [],
  7133. "qzType": 0,
  7134. "qzFlag": 0,
  7135. "enterpriseId": null,
  7136. "nowZhaobMoneyD": 0,
  7137. "historyZhaobMoneyD": 0,
  7138. "nowZhaobMoney": "0",
  7139. "historyZhaobMoney": "0",
  7140. "collaborationChanges": null,
  7141. "collaborationChangesReduce": null,
  7142. "partnerType": null,
  7143. "partnerTypeCode": null,
  7144. "oneYearZhongbD": 0,
  7145. "historyZhongbD": 0,
  7146. "oneYearZhongb": "0",
  7147. "historyZhongb": "0",
  7148. "shareUserCode": null,
  7149. "shareUserName": null,
  7150. "pcShareUserName": null,
  7151. "legalPerson": null,
  7152. "registerDate": null,
  7153. "registerAmount": null,
  7154. "address": null,
  7155. "partnershipList": [],
  7156. "certificateList": [],
  7157. "partnership": "空白",
  7158. "pcList": [
  7159. {
  7160. "dataCode": "空白",
  7161. "dataName": "全产业",
  7162. "tagCode": null
  7163. }
  7164. ],
  7165. "pcChangeList": [],
  7166. "importDate": "2024-02-20 00:00:00",
  7167. "createByDate": "2024-02-21 02:50:01",
  7168. "sevenDayCreateTag": null,
  7169. "linkSize": 0
  7170. },
  7171. {
  7172. "id": "2009061107041037",
  7173. "center": "长沙",
  7174. "areaCode": "M4301",
  7175. "areaName": "长沙小微",
  7176. "city": null,
  7177. "partScale": 0,
  7178. "zbMoney": 0,
  7179. "custName": "(押金户)岳阳市亚邦电器有限公司",
  7180. "custCode": "C200046166",
  7181. "officeAddr": "岳阳市君山区柳林洲镇挂口新区亚华大市场10栋7号",
  7182. "industryStr": null,
  7183. "brandStr": null,
  7184. "partUserCount": "0",
  7185. "centerCode": "12403",
  7186. "notAuthCenter": null,
  7187. "cityCode": null,
  7188. "bigChannelCode": "M",
  7189. "bigChannelName": "直营渠道",
  7190. "smallChannelCode": "HA001",
  7191. "smallChannelName": "纯三专海尔成套专卖类",
  7192. "mdmFlag": 1,
  7193. "zhaobMoney": 0,
  7194. "zhaobCount": 0,
  7195. "signCount": 0,
  7196. "partnershipDomainALL": null,
  7197. "partnershipDomainPL011": null,
  7198. "partnershipDomainPL005": null,
  7199. "partnershipDomainPL002": null,
  7200. "partnershipDomainPL001": null,
  7201. "partnershipDomainSPL007": null,
  7202. "partnershipDomainSPL006": null,
  7203. "partnershipDomainPL003": null,
  7204. "partnershipDomainPL007": null,
  7205. "partnershipDomainPL006": null,
  7206. "potentialList": [],
  7207. "qzType": 0,
  7208. "qzFlag": 0,
  7209. "enterpriseId": null,
  7210. "nowZhaobMoneyD": 0,
  7211. "historyZhaobMoneyD": 0,
  7212. "nowZhaobMoney": "0",
  7213. "historyZhaobMoney": "0",
  7214. "collaborationChanges": null,
  7215. "collaborationChangesReduce": null,
  7216. "partnerType": null,
  7217. "partnerTypeCode": null,
  7218. "oneYearZhongbD": 0,
  7219. "historyZhongbD": 0,
  7220. "oneYearZhongb": "0",
  7221. "historyZhongb": "0",
  7222. "shareUserCode": null,
  7223. "shareUserName": null,
  7224. "pcShareUserName": null,
  7225. "legalPerson": null,
  7226. "registerDate": null,
  7227. "registerAmount": null,
  7228. "address": null,
  7229. "partnershipList": [],
  7230. "certificateList": [],
  7231. "partnership": "空白",
  7232. "pcList": [
  7233. {
  7234. "dataCode": "空白",
  7235. "dataName": "全产业",
  7236. "tagCode": null
  7237. }
  7238. ],
  7239. "pcChangeList": [],
  7240. "importDate": "2009-06-11 13:02:58",
  7241. "createByDate": "2023-11-23 18:47:46",
  7242. "sevenDayCreateTag": null,
  7243. "linkSize": 0
  7244. },
  7245. {
  7246. "id": "2018110923350484",
  7247. "center": "长沙",
  7248. "areaCode": "M4301",
  7249. "areaName": "长沙小微",
  7250. "city": null,
  7251. "partScale": 0,
  7252. "zbMoney": 0,
  7253. "custName": "安仁县家乐电器有限责任公司(顺逛专户)",
  7254. "custCode": "C200090175",
  7255. "officeAddr": "安仁县城关镇五一南路",
  7256. "industryStr": null,
  7257. "brandStr": null,
  7258. "partUserCount": "0",
  7259. "centerCode": "12403",
  7260. "notAuthCenter": null,
  7261. "cityCode": null,
  7262. "bigChannelCode": "M",
  7263. "bigChannelName": "直营渠道",
  7264. "smallChannelCode": "HM002",
  7265. "smallChannelName": "准三专海尔家电卖场类",
  7266. "mdmFlag": 1,
  7267. "zhaobMoney": 0,
  7268. "zhaobCount": 0,
  7269. "signCount": 0,
  7270. "partnershipDomainALL": null,
  7271. "partnershipDomainPL011": null,
  7272. "partnershipDomainPL005": null,
  7273. "partnershipDomainPL002": null,
  7274. "partnershipDomainPL001": null,
  7275. "partnershipDomainSPL007": null,
  7276. "partnershipDomainSPL006": null,
  7277. "partnershipDomainPL003": null,
  7278. "partnershipDomainPL007": null,
  7279. "partnershipDomainPL006": null,
  7280. "potentialList": [],
  7281. "qzType": 0,
  7282. "qzFlag": 0,
  7283. "enterpriseId": null,
  7284. "nowZhaobMoneyD": 0,
  7285. "historyZhaobMoneyD": 0,
  7286. "nowZhaobMoney": "0",
  7287. "historyZhaobMoney": "0",
  7288. "collaborationChanges": null,
  7289. "collaborationChangesReduce": null,
  7290. "partnerType": null,
  7291. "partnerTypeCode": null,
  7292. "oneYearZhongbD": 0,
  7293. "historyZhongbD": 0,
  7294. "oneYearZhongb": "0",
  7295. "historyZhongb": "0",
  7296. "shareUserCode": null,
  7297. "shareUserName": null,
  7298. "pcShareUserName": null,
  7299. "legalPerson": null,
  7300. "registerDate": null,
  7301. "registerAmount": null,
  7302. "address": null,
  7303. "partnershipList": [],
  7304. "certificateList": [],
  7305. "partnership": "空白",
  7306. "pcList": [
  7307. {
  7308. "dataCode": "空白",
  7309. "dataName": "全产业",
  7310. "tagCode": null
  7311. }
  7312. ],
  7313. "pcChangeList": [],
  7314. "importDate": "2018-11-09 13:16:08",
  7315. "createByDate": "2023-11-23 18:48:09",
  7316. "sevenDayCreateTag": null,
  7317. "linkSize": 0
  7318. },
  7319. {
  7320. "id": "2018110923336856",
  7321. "center": "长沙",
  7322. "areaCode": "M4301",
  7323. "areaName": "长沙小微",
  7324. "city": null,
  7325. "partScale": 0,
  7326. "zbMoney": 0,
  7327. "custName": "湖南雪熊低温节能科技有限公司(顺逛专户)",
  7328. "custCode": "C200083450",
  7329. "officeAddr": "雨花区韶山北路356号包装大厦B座1208房",
  7330. "industryStr": null,
  7331. "brandStr": null,
  7332. "partUserCount": "0",
  7333. "centerCode": "12403",
  7334. "notAuthCenter": null,
  7335. "cityCode": null,
  7336. "bigChannelCode": "M",
  7337. "bigChannelName": "直营渠道",
  7338. "smallChannelCode": "HA007",
  7339. "smallChannelName": "纯三专工程类",
  7340. "mdmFlag": 1,
  7341. "zhaobMoney": 0,
  7342. "zhaobCount": 0,
  7343. "signCount": 0,
  7344. "partnershipDomainALL": null,
  7345. "partnershipDomainPL011": null,
  7346. "partnershipDomainPL005": null,
  7347. "partnershipDomainPL002": null,
  7348. "partnershipDomainPL001": null,
  7349. "partnershipDomainSPL007": null,
  7350. "partnershipDomainSPL006": null,
  7351. "partnershipDomainPL003": null,
  7352. "partnershipDomainPL007": null,
  7353. "partnershipDomainPL006": null,
  7354. "potentialList": [],
  7355. "qzType": 0,
  7356. "qzFlag": 0,
  7357. "enterpriseId": null,
  7358. "nowZhaobMoneyD": 0,
  7359. "historyZhaobMoneyD": 0,
  7360. "nowZhaobMoney": "0",
  7361. "historyZhaobMoney": "0",
  7362. "collaborationChanges": null,
  7363. "collaborationChangesReduce": null,
  7364. "partnerType": null,
  7365. "partnerTypeCode": null,
  7366. "oneYearZhongbD": 0,
  7367. "historyZhongbD": 0,
  7368. "oneYearZhongb": "0",
  7369. "historyZhongb": "0",
  7370. "shareUserCode": null,
  7371. "shareUserName": null,
  7372. "pcShareUserName": null,
  7373. "legalPerson": null,
  7374. "registerDate": null,
  7375. "registerAmount": null,
  7376. "address": null,
  7377. "partnershipList": [],
  7378. "certificateList": [],
  7379. "partnership": "空白",
  7380. "pcList": [
  7381. {
  7382. "dataCode": "空白",
  7383. "dataName": "全产业",
  7384. "tagCode": null
  7385. }
  7386. ],
  7387. "pcChangeList": [],
  7388. "importDate": "2018-11-09 13:15:17",
  7389. "createByDate": "2023-11-23 18:48:24",
  7390. "sevenDayCreateTag": null,
  7391. "linkSize": 0
  7392. },
  7393. {
  7394. "id": "2025091103278080",
  7395. "center": "长沙",
  7396. "areaCode": "M4301",
  7397. "areaName": "长沙小微",
  7398. "city": "长沙市",
  7399. "partScale": 0,
  7400. "zbMoney": 0,
  7401. "custName": "(空调户)湖南至诚建筑环境工程设备有限公司",
  7402. "custCode": "C200157532",
  7403. "officeAddr": "湖南省长沙市雨花区劳动东路79号海华嘉园4栋503号",
  7404. "industryStr": null,
  7405. "brandStr": null,
  7406. "partUserCount": "0",
  7407. "centerCode": "12403",
  7408. "notAuthCenter": null,
  7409. "cityCode": "430100000000",
  7410. "bigChannelCode": "M",
  7411. "bigChannelName": "直营渠道",
  7412. "smallChannelCode": "HA007",
  7413. "smallChannelName": "纯三专工程类",
  7414. "mdmFlag": 1,
  7415. "zhaobMoney": 0,
  7416. "zhaobCount": 0,
  7417. "signCount": 0,
  7418. "partnershipDomainALL": null,
  7419. "partnershipDomainPL011": null,
  7420. "partnershipDomainPL005": null,
  7421. "partnershipDomainPL002": null,
  7422. "partnershipDomainPL001": null,
  7423. "partnershipDomainSPL007": null,
  7424. "partnershipDomainSPL006": null,
  7425. "partnershipDomainPL003": null,
  7426. "partnershipDomainPL007": null,
  7427. "partnershipDomainPL006": null,
  7428. "potentialList": [],
  7429. "qzType": 0,
  7430. "qzFlag": 0,
  7431. "enterpriseId": null,
  7432. "nowZhaobMoneyD": 0,
  7433. "historyZhaobMoneyD": 0,
  7434. "nowZhaobMoney": "0",
  7435. "historyZhaobMoney": "0",
  7436. "collaborationChanges": null,
  7437. "collaborationChangesReduce": null,
  7438. "partnerType": null,
  7439. "partnerTypeCode": null,
  7440. "oneYearZhongbD": 0,
  7441. "historyZhongbD": 0,
  7442. "oneYearZhongb": "0",
  7443. "historyZhongb": "0",
  7444. "shareUserCode": null,
  7445. "shareUserName": null,
  7446. "pcShareUserName": null,
  7447. "legalPerson": null,
  7448. "registerDate": null,
  7449. "registerAmount": null,
  7450. "address": null,
  7451. "partnershipList": [],
  7452. "certificateList": [],
  7453. "partnership": "空白",
  7454. "pcList": [
  7455. {
  7456. "dataCode": "空白",
  7457. "dataName": "全产业",
  7458. "tagCode": null
  7459. }
  7460. ],
  7461. "pcChangeList": [],
  7462. "importDate": "2025-09-11 09:01:39",
  7463. "createByDate": "2025-09-12 02:50:02",
  7464. "sevenDayCreateTag": null,
  7465. "linkSize": 0
  7466. }
  7467. ]