p16.txt 236 KB

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