p17.txt 237 KB

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