p18.txt 239 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552
  1. [
  2. {
  3. "id": "2018110923350518",
  4. "center": "长沙",
  5. "areaCode": "M4301",
  6. "areaName": "长沙小微",
  7. "city": null,
  8. "partScale": 0,
  9. "zbMoney": 0,
  10. "custName": "益阳市金顺兴商贸有限公司(顺逛专户)",
  11. "custCode": "C200090192",
  12. "officeAddr": "益阳市资阳区迎风桥镇迎风桥村",
  13. "industryStr": null,
  14. "brandStr": null,
  15. "partUserCount": "0",
  16. "centerCode": "12403",
  17. "notAuthCenter": null,
  18. "cityCode": null,
  19. "bigChannelCode": "M",
  20. "bigChannelName": "直营渠道",
  21. "smallChannelCode": "HM006",
  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": "2018-11-09 13:16:08",
  72. "createByDate": "2023-11-23 18:48:09",
  73. "sevenDayCreateTag": null,
  74. "linkSize": 0
  75. },
  76. {
  77. "id": "2024011622261854",
  78. "center": "长沙",
  79. "areaCode": "M4301",
  80. "areaName": "长沙小微",
  81. "city": "张家界市",
  82. "partScale": 0,
  83. "zbMoney": 0,
  84. "custName": "张家界鑫辉暖通工程有限公司",
  85. "custCode": "8800555323",
  86. "officeAddr": "湖南省张家界市永定区崇文办事处凤湾居委会子午路3幢104二层",
  87. "industryStr": null,
  88. "brandStr": null,
  89. "partUserCount": "0",
  90. "centerCode": "12403",
  91. "notAuthCenter": null,
  92. "cityCode": "430800000000",
  93. "bigChannelCode": "M",
  94. "bigChannelName": "直营渠道",
  95. "smallChannelCode": "HA002",
  96. "smallChannelName": "纯三专海尔产品专卖类(空调)",
  97. "mdmFlag": 1,
  98. "zhaobMoney": 0,
  99. "zhaobCount": 0,
  100. "signCount": 0,
  101. "partnershipDomainALL": null,
  102. "partnershipDomainPL011": null,
  103. "partnershipDomainPL005": null,
  104. "partnershipDomainPL002": null,
  105. "partnershipDomainPL001": null,
  106. "partnershipDomainSPL007": null,
  107. "partnershipDomainSPL006": null,
  108. "partnershipDomainPL003": null,
  109. "partnershipDomainPL007": null,
  110. "partnershipDomainPL006": null,
  111. "potentialList": [],
  112. "qzType": 0,
  113. "qzFlag": 0,
  114. "enterpriseId": null,
  115. "nowZhaobMoneyD": 0,
  116. "historyZhaobMoneyD": 0,
  117. "nowZhaobMoney": "0",
  118. "historyZhaobMoney": "0",
  119. "collaborationChanges": null,
  120. "collaborationChangesReduce": null,
  121. "partnerType": null,
  122. "partnerTypeCode": null,
  123. "oneYearZhongbD": 0,
  124. "historyZhongbD": 0,
  125. "oneYearZhongb": "0",
  126. "historyZhongb": "0",
  127. "shareUserCode": null,
  128. "shareUserName": null,
  129. "pcShareUserName": null,
  130. "legalPerson": null,
  131. "registerDate": null,
  132. "registerAmount": null,
  133. "address": null,
  134. "partnershipList": [],
  135. "certificateList": [],
  136. "partnership": "空白",
  137. "pcList": [
  138. {
  139. "dataCode": "空白",
  140. "dataName": "全产业",
  141. "tagCode": null
  142. }
  143. ],
  144. "pcChangeList": [],
  145. "importDate": "2024-01-16 18:51:32",
  146. "createByDate": "2024-01-17 02:50:01",
  147. "sevenDayCreateTag": null,
  148. "linkSize": 0
  149. },
  150. {
  151. "id": "2018110923342844",
  152. "center": "长沙",
  153. "areaCode": "M4301",
  154. "areaName": "长沙小微",
  155. "city": null,
  156. "partScale": 0,
  157. "zbMoney": 0,
  158. "custName": "湖南菱翔空调设备工程有限公司(顺逛专户)",
  159. "custCode": "C200086374",
  160. "officeAddr": "湖南省株洲市天元区黄山路388号华晨御园4栋106、206室",
  161. "industryStr": null,
  162. "brandStr": null,
  163. "partUserCount": "0",
  164. "centerCode": "12403",
  165. "notAuthCenter": null,
  166. "cityCode": null,
  167. "bigChannelCode": "M",
  168. "bigChannelName": "直营渠道",
  169. "smallChannelCode": "HA007",
  170. "smallChannelName": "纯三专工程类",
  171. "mdmFlag": 1,
  172. "zhaobMoney": 0,
  173. "zhaobCount": 0,
  174. "signCount": 0,
  175. "partnershipDomainALL": null,
  176. "partnershipDomainPL011": null,
  177. "partnershipDomainPL005": null,
  178. "partnershipDomainPL002": null,
  179. "partnershipDomainPL001": null,
  180. "partnershipDomainSPL007": null,
  181. "partnershipDomainSPL006": null,
  182. "partnershipDomainPL003": null,
  183. "partnershipDomainPL007": null,
  184. "partnershipDomainPL006": null,
  185. "potentialList": [],
  186. "qzType": 0,
  187. "qzFlag": 0,
  188. "enterpriseId": null,
  189. "nowZhaobMoneyD": 0,
  190. "historyZhaobMoneyD": 0,
  191. "nowZhaobMoney": "0",
  192. "historyZhaobMoney": "0",
  193. "collaborationChanges": null,
  194. "collaborationChangesReduce": null,
  195. "partnerType": null,
  196. "partnerTypeCode": null,
  197. "oneYearZhongbD": 0,
  198. "historyZhongbD": 0,
  199. "oneYearZhongb": "0",
  200. "historyZhongb": "0",
  201. "shareUserCode": null,
  202. "shareUserName": null,
  203. "pcShareUserName": null,
  204. "legalPerson": null,
  205. "registerDate": null,
  206. "registerAmount": null,
  207. "address": null,
  208. "partnershipList": [],
  209. "certificateList": [],
  210. "partnership": "空白",
  211. "pcList": [
  212. {
  213. "dataCode": "空白",
  214. "dataName": "全产业",
  215. "tagCode": null
  216. }
  217. ],
  218. "pcChangeList": [],
  219. "importDate": "2018-11-09 13:15:40",
  220. "createByDate": "2023-11-23 18:48:18",
  221. "sevenDayCreateTag": null,
  222. "linkSize": 0
  223. },
  224. {
  225. "id": "2022091579576281",
  226. "center": "长沙",
  227. "areaCode": "M4301",
  228. "areaName": "长沙小微",
  229. "city": null,
  230. "partScale": 0,
  231. "zbMoney": 0,
  232. "custName": "(押金户)衡阳市瑞腾电器有限公司",
  233. "custCode": "C200150372",
  234. "officeAddr": "湖南省衡阳市石鼓区黄沙湾街道进步村3组B-5栋111",
  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-09-15 00:00:00",
  294. "createByDate": "2023-11-23 18:40:27",
  295. "sevenDayCreateTag": null,
  296. "linkSize": 0
  297. },
  298. {
  299. "id": "2024031209534387",
  300. "center": "长沙",
  301. "areaCode": "M4301",
  302. "areaName": "长沙小微",
  303. "city": null,
  304. "partScale": 0,
  305. "zbMoney": 0,
  306. "custName": "(金融备货空调户)衡阳瀚禹科贸有限公司",
  307. "custCode": "C200094578",
  308. "officeAddr": "湖南省衡阳市衡阳县蒸阳大道京华苑",
  309. "industryStr": null,
  310. "brandStr": null,
  311. "partUserCount": "0",
  312. "centerCode": "12403",
  313. "notAuthCenter": null,
  314. "cityCode": "",
  315. "bigChannelCode": "M",
  316. "bigChannelName": "直营渠道",
  317. "smallChannelCode": "HV002",
  318. "smallChannelName": "三翼鸟001",
  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": "2024-03-12 00:00:00",
  368. "createByDate": "2024-03-13 02:50:04",
  369. "sevenDayCreateTag": null,
  370. "linkSize": 0
  371. },
  372. {
  373. "id": "2018011256912680",
  374. "center": "长沙",
  375. "areaCode": "M4301",
  376. "areaName": "长沙小微",
  377. "city": null,
  378. "partScale": 0,
  379. "zbMoney": 0,
  380. "custName": "(押金户)衡阳傲天贸易有限公司",
  381. "custCode": "C200132304",
  382. "officeAddr": "湖南省衡阳市珠晖区东风支路17号东风财富广场1044室",
  383. "industryStr": null,
  384. "brandStr": null,
  385. "partUserCount": "0",
  386. "centerCode": "12403",
  387. "notAuthCenter": null,
  388. "cityCode": null,
  389. "bigChannelCode": "M",
  390. "bigChannelName": "直营渠道",
  391. "smallChannelCode": "TA001",
  392. "smallChannelName": "纯三专统帅成套专卖类",
  393. "mdmFlag": 1,
  394. "zhaobMoney": 0,
  395. "zhaobCount": 0,
  396. "signCount": 0,
  397. "partnershipDomainALL": null,
  398. "partnershipDomainPL011": null,
  399. "partnershipDomainPL005": null,
  400. "partnershipDomainPL002": null,
  401. "partnershipDomainPL001": null,
  402. "partnershipDomainSPL007": null,
  403. "partnershipDomainSPL006": null,
  404. "partnershipDomainPL003": null,
  405. "partnershipDomainPL007": null,
  406. "partnershipDomainPL006": null,
  407. "potentialList": [],
  408. "qzType": 0,
  409. "qzFlag": 0,
  410. "enterpriseId": null,
  411. "nowZhaobMoneyD": 0,
  412. "historyZhaobMoneyD": 0,
  413. "nowZhaobMoney": "0",
  414. "historyZhaobMoney": "0",
  415. "collaborationChanges": null,
  416. "collaborationChangesReduce": null,
  417. "partnerType": null,
  418. "partnerTypeCode": null,
  419. "oneYearZhongbD": 0,
  420. "historyZhongbD": 0,
  421. "oneYearZhongb": "0",
  422. "historyZhongb": "0",
  423. "shareUserCode": null,
  424. "shareUserName": null,
  425. "pcShareUserName": null,
  426. "legalPerson": null,
  427. "registerDate": null,
  428. "registerAmount": null,
  429. "address": null,
  430. "partnershipList": [],
  431. "certificateList": [],
  432. "partnership": "空白",
  433. "pcList": [
  434. {
  435. "dataCode": "空白",
  436. "dataName": "全产业",
  437. "tagCode": null
  438. }
  439. ],
  440. "pcChangeList": [],
  441. "importDate": "2018-01-12 17:48:26",
  442. "createByDate": "2023-11-23 18:47:52",
  443. "sevenDayCreateTag": null,
  444. "linkSize": 0
  445. },
  446. {
  447. "id": "2020112394900382",
  448. "center": "长沙",
  449. "areaCode": "M4301",
  450. "areaName": "长沙小微",
  451. "city": "株洲市",
  452. "partScale": 0,
  453. "zbMoney": 0,
  454. "custName": "(押金户)株洲大为智家电器贸易有限公司",
  455. "custCode": "C200144929",
  456. "officeAddr": "湖南省株洲市天元区湘山路50号株洲体育新城体验式商业街8栋101号",
  457. "industryStr": null,
  458. "brandStr": null,
  459. "partUserCount": "0",
  460. "centerCode": "12403",
  461. "notAuthCenter": null,
  462. "cityCode": "430200000000",
  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": "2020-11-23 00:00:00",
  516. "createByDate": "2023-11-23 18:41:25",
  517. "sevenDayCreateTag": null,
  518. "linkSize": 0
  519. },
  520. {
  521. "id": "2018110923346103",
  522. "center": "长沙",
  523. "areaCode": "M4301",
  524. "areaName": "长沙小微",
  525. "city": null,
  526. "partScale": 0,
  527. "zbMoney": 0,
  528. "custName": "石门县亚太电器有限责任公司(顺逛专户)",
  529. "custCode": "C200087996",
  530. "officeAddr": "常德市石门县楚江镇楚江街道观山社区澧阳中路009号",
  531. "industryStr": null,
  532. "brandStr": null,
  533. "partUserCount": "0",
  534. "centerCode": "12403",
  535. "notAuthCenter": null,
  536. "cityCode": null,
  537. "bigChannelCode": "M",
  538. "bigChannelName": "直营渠道",
  539. "smallChannelCode": "HM002",
  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": "2018-11-09 13:15:52",
  590. "createByDate": "2023-11-23 18:48:12",
  591. "sevenDayCreateTag": null,
  592. "linkSize": 0
  593. },
  594. {
  595. "id": "2025112269311559",
  596. "center": "长沙",
  597. "areaCode": "M4301",
  598. "areaName": "长沙小微",
  599. "city": null,
  600. "partScale": 0,
  601. "zbMoney": 0,
  602. "custName": "(押金户)长沙辉菱电器有限公司",
  603. "custCode": "C200157918",
  604. "officeAddr": "长沙市芙蓉区三湘南湖大市场家电城B栋1楼38-39号门面",
  605. "industryStr": null,
  606. "brandStr": null,
  607. "partUserCount": "0",
  608. "centerCode": "12403",
  609. "notAuthCenter": null,
  610. "cityCode": null,
  611. "bigChannelCode": "M",
  612. "bigChannelName": "直营渠道",
  613. "smallChannelCode": "HA007",
  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": "2025-11-22 14:46:10",
  664. "createByDate": "2025-11-23 04:50:02",
  665. "sevenDayCreateTag": null,
  666. "linkSize": 0
  667. },
  668. {
  669. "id": "2025032562933565",
  670. "center": "长沙",
  671. "areaCode": "M4301",
  672. "areaName": "长沙小微",
  673. "city": "长沙市",
  674. "partScale": 0,
  675. "zbMoney": 0,
  676. "custName": "(押金户)长沙市幸福港电器有限责任公司",
  677. "custCode": "C200156350",
  678. "officeAddr": "长沙市芙蓉区湖湘街道三湘南湖大市场3栋1楼33号",
  679. "industryStr": null,
  680. "brandStr": null,
  681. "partUserCount": "0",
  682. "centerCode": "12403",
  683. "notAuthCenter": null,
  684. "cityCode": "430100000000",
  685. "bigChannelCode": "M",
  686. "bigChannelName": "直营渠道",
  687. "smallChannelCode": "HA001",
  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": "2025-03-25 10:51:20",
  738. "createByDate": "2025-03-26 02:50:00",
  739. "sevenDayCreateTag": null,
  740. "linkSize": 0
  741. },
  742. {
  743. "id": "2024112832324551",
  744. "center": "长沙",
  745. "areaCode": "M4301",
  746. "areaName": "长沙小微",
  747. "city": "邵阳市",
  748. "partScale": 0,
  749. "zbMoney": 0,
  750. "custName": "邵阳群秀商贸有限公司",
  751. "custCode": "8800600822",
  752. "officeAddr": "湖南省邵阳市北塔区状元洲街道蔡锷路与龙山路交汇处东南角广厦名都5#楼0001011",
  753. "industryStr": null,
  754. "brandStr": null,
  755. "partUserCount": "0",
  756. "centerCode": "12403",
  757. "notAuthCenter": null,
  758. "cityCode": "430500000000",
  759. "bigChannelCode": "M",
  760. "bigChannelName": "直营渠道",
  761. "smallChannelCode": "HM002",
  762. "smallChannelName": "准三专海尔家电卖场类",
  763. "mdmFlag": 1,
  764. "zhaobMoney": 0,
  765. "zhaobCount": 0,
  766. "signCount": 0,
  767. "partnershipDomainALL": null,
  768. "partnershipDomainPL011": null,
  769. "partnershipDomainPL005": null,
  770. "partnershipDomainPL002": null,
  771. "partnershipDomainPL001": null,
  772. "partnershipDomainSPL007": null,
  773. "partnershipDomainSPL006": null,
  774. "partnershipDomainPL003": null,
  775. "partnershipDomainPL007": null,
  776. "partnershipDomainPL006": null,
  777. "potentialList": [],
  778. "qzType": 0,
  779. "qzFlag": 0,
  780. "enterpriseId": null,
  781. "nowZhaobMoneyD": 0,
  782. "historyZhaobMoneyD": 0,
  783. "nowZhaobMoney": "0",
  784. "historyZhaobMoney": "0",
  785. "collaborationChanges": null,
  786. "collaborationChangesReduce": null,
  787. "partnerType": null,
  788. "partnerTypeCode": null,
  789. "oneYearZhongbD": 0,
  790. "historyZhongbD": 0,
  791. "oneYearZhongb": "0",
  792. "historyZhongb": "0",
  793. "shareUserCode": null,
  794. "shareUserName": null,
  795. "pcShareUserName": null,
  796. "legalPerson": null,
  797. "registerDate": null,
  798. "registerAmount": null,
  799. "address": null,
  800. "partnershipList": [],
  801. "certificateList": [],
  802. "partnership": "空白",
  803. "pcList": [
  804. {
  805. "dataCode": "空白",
  806. "dataName": "全产业",
  807. "tagCode": null
  808. }
  809. ],
  810. "pcChangeList": [],
  811. "importDate": "2024-11-28 11:53:47",
  812. "createByDate": "2024-11-29 02:50:04",
  813. "sevenDayCreateTag": null,
  814. "linkSize": 0
  815. },
  816. {
  817. "id": "2025091103277607",
  818. "center": "长沙",
  819. "areaCode": "M4301",
  820. "areaName": "长沙小微",
  821. "city": "长沙市",
  822. "partScale": 0,
  823. "zbMoney": 0,
  824. "custName": "(押金户)湖南谷轮机电设备有限公司",
  825. "custCode": "C200157529",
  826. "officeAddr": "湖南省长沙市岳麓区梅溪湖街道阳明山庄25栋一单元202室",
  827. "industryStr": null,
  828. "brandStr": null,
  829. "partUserCount": "0",
  830. "centerCode": "12403",
  831. "notAuthCenter": null,
  832. "cityCode": "430100000000",
  833. "bigChannelCode": "M",
  834. "bigChannelName": "直营渠道",
  835. "smallChannelCode": "HA007",
  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": "2025-09-11 09:00:55",
  886. "createByDate": "2025-09-12 02:50:02",
  887. "sevenDayCreateTag": null,
  888. "linkSize": 0
  889. },
  890. {
  891. "id": "2024031209534503",
  892. "center": "长沙",
  893. "areaCode": "M4301",
  894. "areaName": "长沙小微",
  895. "city": null,
  896. "partScale": 0,
  897. "zbMoney": 0,
  898. "custName": "(金融备货空调户)茶陵县阳光有限责任公司",
  899. "custCode": "C200094607",
  900. "officeAddr": "茶陵县城关镇炎帝中路",
  901. "industryStr": null,
  902. "brandStr": null,
  903. "partUserCount": "0",
  904. "centerCode": "12403",
  905. "notAuthCenter": null,
  906. "cityCode": "",
  907. "bigChannelCode": "M",
  908. "bigChannelName": "直营渠道",
  909. "smallChannelCode": "HM002",
  910. "smallChannelName": "准三专海尔家电卖场类",
  911. "mdmFlag": 1,
  912. "zhaobMoney": 0,
  913. "zhaobCount": 0,
  914. "signCount": 0,
  915. "partnershipDomainALL": null,
  916. "partnershipDomainPL011": null,
  917. "partnershipDomainPL005": null,
  918. "partnershipDomainPL002": null,
  919. "partnershipDomainPL001": null,
  920. "partnershipDomainSPL007": null,
  921. "partnershipDomainSPL006": null,
  922. "partnershipDomainPL003": null,
  923. "partnershipDomainPL007": null,
  924. "partnershipDomainPL006": null,
  925. "potentialList": [],
  926. "qzType": 0,
  927. "qzFlag": 0,
  928. "enterpriseId": null,
  929. "nowZhaobMoneyD": 0,
  930. "historyZhaobMoneyD": 0,
  931. "nowZhaobMoney": "0",
  932. "historyZhaobMoney": "0",
  933. "collaborationChanges": null,
  934. "collaborationChangesReduce": null,
  935. "partnerType": null,
  936. "partnerTypeCode": null,
  937. "oneYearZhongbD": 0,
  938. "historyZhongbD": 0,
  939. "oneYearZhongb": "0",
  940. "historyZhongb": "0",
  941. "shareUserCode": null,
  942. "shareUserName": null,
  943. "pcShareUserName": null,
  944. "legalPerson": null,
  945. "registerDate": null,
  946. "registerAmount": null,
  947. "address": null,
  948. "partnershipList": [],
  949. "certificateList": [],
  950. "partnership": "空白",
  951. "pcList": [
  952. {
  953. "dataCode": "空白",
  954. "dataName": "全产业",
  955. "tagCode": null
  956. }
  957. ],
  958. "pcChangeList": [],
  959. "importDate": "2024-03-12 00:00:00",
  960. "createByDate": "2024-03-13 02:50:04",
  961. "sevenDayCreateTag": null,
  962. "linkSize": 0
  963. },
  964. {
  965. "id": "2025112066985730",
  966. "center": "长沙",
  967. "areaCode": "M4301",
  968. "areaName": "长沙小微",
  969. "city": null,
  970. "partScale": 0,
  971. "zbMoney": 0,
  972. "custName": "湖南菱一机电设备有限公司",
  973. "custCode": "8800656464",
  974. "officeAddr": "湖南省衡阳市石鼓区黄沙湾街道蒸湘北路239号101室",
  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": "HA024",
  984. "smallChannelName": "纯三专水联网前置类客户",
  985. "mdmFlag": 1,
  986. "zhaobMoney": 0,
  987. "zhaobCount": 0,
  988. "signCount": 0,
  989. "partnershipDomainALL": null,
  990. "partnershipDomainPL011": null,
  991. "partnershipDomainPL005": null,
  992. "partnershipDomainPL002": null,
  993. "partnershipDomainPL001": null,
  994. "partnershipDomainSPL007": null,
  995. "partnershipDomainSPL006": null,
  996. "partnershipDomainPL003": null,
  997. "partnershipDomainPL007": null,
  998. "partnershipDomainPL006": null,
  999. "potentialList": [],
  1000. "qzType": 0,
  1001. "qzFlag": 0,
  1002. "enterpriseId": null,
  1003. "nowZhaobMoneyD": 0,
  1004. "historyZhaobMoneyD": 0,
  1005. "nowZhaobMoney": "0",
  1006. "historyZhaobMoney": "0",
  1007. "collaborationChanges": null,
  1008. "collaborationChangesReduce": null,
  1009. "partnerType": null,
  1010. "partnerTypeCode": null,
  1011. "oneYearZhongbD": 0,
  1012. "historyZhongbD": 0,
  1013. "oneYearZhongb": "0",
  1014. "historyZhongb": "0",
  1015. "shareUserCode": null,
  1016. "shareUserName": null,
  1017. "pcShareUserName": null,
  1018. "legalPerson": null,
  1019. "registerDate": null,
  1020. "registerAmount": null,
  1021. "address": null,
  1022. "partnershipList": [],
  1023. "certificateList": [],
  1024. "partnership": "空白",
  1025. "pcList": [
  1026. {
  1027. "dataCode": "空白",
  1028. "dataName": "全产业",
  1029. "tagCode": null
  1030. }
  1031. ],
  1032. "pcChangeList": [],
  1033. "importDate": "2025-11-20 13:57:16",
  1034. "createByDate": "2025-11-21 04:50:02",
  1035. "sevenDayCreateTag": null,
  1036. "linkSize": 0
  1037. },
  1038. {
  1039. "id": "2024031209534507",
  1040. "center": "长沙",
  1041. "areaCode": "M4301",
  1042. "areaName": "长沙小微",
  1043. "city": null,
  1044. "partScale": 0,
  1045. "zbMoney": 0,
  1046. "custName": "(金融备货空调户)常德科唯电器销售有限公司",
  1047. "custCode": "C200094608",
  1048. "officeAddr": "湖南省常德市武陵区白马湖街道长家山社区滨湖路(中原·德景园小区5幢22楼2202室)",
  1049. "industryStr": null,
  1050. "brandStr": null,
  1051. "partUserCount": "0",
  1052. "centerCode": "12403",
  1053. "notAuthCenter": null,
  1054. "cityCode": "",
  1055. "bigChannelCode": "M",
  1056. "bigChannelName": "直营渠道",
  1057. "smallChannelCode": "HA001",
  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": "2024-03-12 00:00:00",
  1108. "createByDate": "2024-03-13 02:50:04",
  1109. "sevenDayCreateTag": null,
  1110. "linkSize": 0
  1111. },
  1112. {
  1113. "id": "2025080171806407",
  1114. "center": "长沙",
  1115. "areaCode": "M4301",
  1116. "areaName": "长沙小微",
  1117. "city": "湘西土家族苗族自治州",
  1118. "partScale": 0,
  1119. "zbMoney": 0,
  1120. "custName": "(押金户)吉首市隆美电器有限公司",
  1121. "custCode": "C200157284",
  1122. "officeAddr": "湖南省吉首市乾州街道人民中路美世界精品建材广场一层105号",
  1123. "industryStr": null,
  1124. "brandStr": null,
  1125. "partUserCount": "0",
  1126. "centerCode": "12403",
  1127. "notAuthCenter": null,
  1128. "cityCode": "433100000000",
  1129. "bigChannelCode": "M",
  1130. "bigChannelName": "直营渠道",
  1131. "smallChannelCode": "HA007",
  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": "2025-08-01 14:22:18",
  1182. "createByDate": "2025-08-02 02:50:00",
  1183. "sevenDayCreateTag": null,
  1184. "linkSize": 0
  1185. },
  1186. {
  1187. "id": "2019071951587214",
  1188. "center": "长沙",
  1189. "areaCode": "M4301",
  1190. "areaName": "长沙小微",
  1191. "city": "长沙市",
  1192. "partScale": 5.25,
  1193. "zbMoney": 0,
  1194. "custName": "长沙市长钰智能科技有限公司",
  1195. "custCode": "8800333438",
  1196. "officeAddr": "长沙市雨花区湘府中路18号德思勤城市广场B4栋2134房",
  1197. "industryStr": null,
  1198. "brandStr": null,
  1199. "partUserCount": "0",
  1200. "centerCode": "12403",
  1201. "notAuthCenter": null,
  1202. "cityCode": "430100000000",
  1203. "bigChannelCode": "M",
  1204. "bigChannelName": "直营渠道",
  1205. "smallChannelCode": "HA016",
  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": "2019-07-19 00:00:00",
  1256. "createByDate": "2023-11-23 18:42:22",
  1257. "sevenDayCreateTag": null,
  1258. "linkSize": 0
  1259. },
  1260. {
  1261. "id": "2014072102085143",
  1262. "center": "长沙",
  1263. "areaCode": "M4301",
  1264. "areaName": "长沙小微",
  1265. "city": null,
  1266. "partScale": 0,
  1267. "zbMoney": 0,
  1268. "custName": "(押金户)湘潭市万祥电器有限公司",
  1269. "custCode": "C200123139",
  1270. "officeAddr": "雨湖区车站路121号",
  1271. "industryStr": null,
  1272. "brandStr": null,
  1273. "partUserCount": "0",
  1274. "centerCode": "12403",
  1275. "notAuthCenter": null,
  1276. "cityCode": "",
  1277. "bigChannelCode": "M",
  1278. "bigChannelName": "直营渠道",
  1279. "smallChannelCode": "HM002",
  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": "2014-07-21 00:00:00",
  1330. "createByDate": "2023-11-23 18:44:52",
  1331. "sevenDayCreateTag": null,
  1332. "linkSize": 0
  1333. },
  1334. {
  1335. "id": "2014080106655328",
  1336. "center": "长沙",
  1337. "areaCode": "M4301",
  1338. "areaName": "长沙小微",
  1339. "city": null,
  1340. "partScale": 0,
  1341. "zbMoney": 0,
  1342. "custName": "(金融空调户)新化县国康电器有限公司",
  1343. "custCode": "C200067813",
  1344. "officeAddr": "新化县梅苑开发区梅苑南路",
  1345. "industryStr": null,
  1346. "brandStr": null,
  1347. "partUserCount": "0",
  1348. "centerCode": "12403",
  1349. "notAuthCenter": null,
  1350. "cityCode": null,
  1351. "bigChannelCode": "M",
  1352. "bigChannelName": "直营渠道",
  1353. "smallChannelCode": "HA001",
  1354. "smallChannelName": "纯三专海尔成套专卖类",
  1355. "mdmFlag": 1,
  1356. "zhaobMoney": 0,
  1357. "zhaobCount": 0,
  1358. "signCount": 0,
  1359. "partnershipDomainALL": null,
  1360. "partnershipDomainPL011": null,
  1361. "partnershipDomainPL005": null,
  1362. "partnershipDomainPL002": null,
  1363. "partnershipDomainPL001": null,
  1364. "partnershipDomainSPL007": null,
  1365. "partnershipDomainSPL006": null,
  1366. "partnershipDomainPL003": null,
  1367. "partnershipDomainPL007": null,
  1368. "partnershipDomainPL006": null,
  1369. "potentialList": [],
  1370. "qzType": 0,
  1371. "qzFlag": 0,
  1372. "enterpriseId": null,
  1373. "nowZhaobMoneyD": 0,
  1374. "historyZhaobMoneyD": 0,
  1375. "nowZhaobMoney": "0",
  1376. "historyZhaobMoney": "0",
  1377. "collaborationChanges": null,
  1378. "collaborationChangesReduce": null,
  1379. "partnerType": null,
  1380. "partnerTypeCode": null,
  1381. "oneYearZhongbD": 0,
  1382. "historyZhongbD": 0,
  1383. "oneYearZhongb": "0",
  1384. "historyZhongb": "0",
  1385. "shareUserCode": null,
  1386. "shareUserName": null,
  1387. "pcShareUserName": null,
  1388. "legalPerson": null,
  1389. "registerDate": null,
  1390. "registerAmount": null,
  1391. "address": null,
  1392. "partnershipList": [],
  1393. "certificateList": [],
  1394. "partnership": "空白",
  1395. "pcList": [
  1396. {
  1397. "dataCode": "空白",
  1398. "dataName": "全产业",
  1399. "tagCode": null
  1400. }
  1401. ],
  1402. "pcChangeList": [],
  1403. "importDate": "2014-08-01 00:00:00",
  1404. "createByDate": "2023-11-23 18:44:45",
  1405. "sevenDayCreateTag": null,
  1406. "linkSize": 0
  1407. },
  1408. {
  1409. "id": "2022022193834855",
  1410. "center": "长沙",
  1411. "areaCode": "M4301",
  1412. "areaName": "长沙小微",
  1413. "city": null,
  1414. "partScale": 0,
  1415. "zbMoney": 0,
  1416. "custName": "湖南鸿羽厨卫科技有限公司",
  1417. "custCode": "8800454159",
  1418. "officeAddr": "长沙市雨花区长沙大道789号新华都万家城13幢N单元501房",
  1419. "industryStr": null,
  1420. "brandStr": null,
  1421. "partUserCount": "0",
  1422. "centerCode": "12403",
  1423. "notAuthCenter": null,
  1424. "cityCode": null,
  1425. "bigChannelCode": "M",
  1426. "bigChannelName": "直营渠道",
  1427. "smallChannelCode": "TM002",
  1428. "smallChannelName": "准三专统帅家电卖场类",
  1429. "mdmFlag": 1,
  1430. "zhaobMoney": 0,
  1431. "zhaobCount": 0,
  1432. "signCount": 0,
  1433. "partnershipDomainALL": null,
  1434. "partnershipDomainPL011": null,
  1435. "partnershipDomainPL005": null,
  1436. "partnershipDomainPL002": null,
  1437. "partnershipDomainPL001": null,
  1438. "partnershipDomainSPL007": null,
  1439. "partnershipDomainSPL006": null,
  1440. "partnershipDomainPL003": null,
  1441. "partnershipDomainPL007": null,
  1442. "partnershipDomainPL006": null,
  1443. "potentialList": [],
  1444. "qzType": 0,
  1445. "qzFlag": 0,
  1446. "enterpriseId": null,
  1447. "nowZhaobMoneyD": 0,
  1448. "historyZhaobMoneyD": 0,
  1449. "nowZhaobMoney": "0",
  1450. "historyZhaobMoney": "0",
  1451. "collaborationChanges": null,
  1452. "collaborationChangesReduce": null,
  1453. "partnerType": null,
  1454. "partnerTypeCode": null,
  1455. "oneYearZhongbD": 0,
  1456. "historyZhongbD": 0,
  1457. "oneYearZhongb": "0",
  1458. "historyZhongb": "0",
  1459. "shareUserCode": null,
  1460. "shareUserName": null,
  1461. "pcShareUserName": null,
  1462. "legalPerson": null,
  1463. "registerDate": null,
  1464. "registerAmount": null,
  1465. "address": null,
  1466. "partnershipList": [],
  1467. "certificateList": [],
  1468. "partnership": "空白",
  1469. "pcList": [
  1470. {
  1471. "dataCode": "空白",
  1472. "dataName": "全产业",
  1473. "tagCode": null
  1474. }
  1475. ],
  1476. "pcChangeList": [],
  1477. "importDate": "2022-02-21 00:00:00",
  1478. "createByDate": "2023-11-23 18:40:45",
  1479. "sevenDayCreateTag": null,
  1480. "linkSize": 0
  1481. },
  1482. {
  1483. "id": "2023020335778873",
  1484. "center": "长沙",
  1485. "areaCode": "M4301",
  1486. "areaName": "长沙小微",
  1487. "city": "郴州市",
  1488. "partScale": 0,
  1489. "zbMoney": 0,
  1490. "custName": "桂阳县益和电器有限公司汇金城冰箱前置店",
  1491. "custCode": "8800503198",
  1492. "officeAddr": "郴州市桂阳县迎宾路与蓉湖路交汇处君御尚城1栋2004-2005号铺",
  1493. "industryStr": null,
  1494. "brandStr": null,
  1495. "partUserCount": "0",
  1496. "centerCode": "12403",
  1497. "notAuthCenter": null,
  1498. "cityCode": "431000000000",
  1499. "bigChannelCode": "M",
  1500. "bigChannelName": "直营渠道",
  1501. "smallChannelCode": "HM002",
  1502. "smallChannelName": "准三专海尔家电卖场类",
  1503. "mdmFlag": 1,
  1504. "zhaobMoney": 0,
  1505. "zhaobCount": 0,
  1506. "signCount": 0,
  1507. "partnershipDomainALL": null,
  1508. "partnershipDomainPL011": null,
  1509. "partnershipDomainPL005": null,
  1510. "partnershipDomainPL002": null,
  1511. "partnershipDomainPL001": null,
  1512. "partnershipDomainSPL007": null,
  1513. "partnershipDomainSPL006": null,
  1514. "partnershipDomainPL003": null,
  1515. "partnershipDomainPL007": null,
  1516. "partnershipDomainPL006": null,
  1517. "potentialList": [],
  1518. "qzType": 0,
  1519. "qzFlag": 0,
  1520. "enterpriseId": null,
  1521. "nowZhaobMoneyD": 0,
  1522. "historyZhaobMoneyD": 0,
  1523. "nowZhaobMoney": "0",
  1524. "historyZhaobMoney": "0",
  1525. "collaborationChanges": null,
  1526. "collaborationChangesReduce": null,
  1527. "partnerType": null,
  1528. "partnerTypeCode": null,
  1529. "oneYearZhongbD": 0,
  1530. "historyZhongbD": 0,
  1531. "oneYearZhongb": "0",
  1532. "historyZhongb": "0",
  1533. "shareUserCode": null,
  1534. "shareUserName": null,
  1535. "pcShareUserName": null,
  1536. "legalPerson": null,
  1537. "registerDate": null,
  1538. "registerAmount": null,
  1539. "address": null,
  1540. "partnershipList": [],
  1541. "certificateList": [],
  1542. "partnership": "空白",
  1543. "pcList": [
  1544. {
  1545. "dataCode": "空白",
  1546. "dataName": "全产业",
  1547. "tagCode": null
  1548. }
  1549. ],
  1550. "pcChangeList": [],
  1551. "importDate": "2023-02-03 14:33:10",
  1552. "createByDate": "2023-11-23 18:40:20",
  1553. "sevenDayCreateTag": null,
  1554. "linkSize": 0
  1555. },
  1556. {
  1557. "id": "2023052265463085",
  1558. "center": "长沙",
  1559. "areaCode": "M4301",
  1560. "areaName": "长沙小微",
  1561. "city": "岳阳市",
  1562. "partScale": 0,
  1563. "zbMoney": 0,
  1564. "custName": "岳阳市沃姆节能设备有限公司岳阳楼区采暖店",
  1565. "custCode": "8800522848",
  1566. "officeAddr": "NaN华强路188号",
  1567. "industryStr": null,
  1568. "brandStr": null,
  1569. "partUserCount": "0",
  1570. "centerCode": "12403",
  1571. "notAuthCenter": null,
  1572. "cityCode": "430600000000",
  1573. "bigChannelCode": "M",
  1574. "bigChannelName": "直营渠道",
  1575. "smallChannelCode": "HA024",
  1576. "smallChannelName": "纯三专水联网前置类客户",
  1577. "mdmFlag": 1,
  1578. "zhaobMoney": 0,
  1579. "zhaobCount": 0,
  1580. "signCount": 0,
  1581. "partnershipDomainALL": null,
  1582. "partnershipDomainPL011": null,
  1583. "partnershipDomainPL005": null,
  1584. "partnershipDomainPL002": null,
  1585. "partnershipDomainPL001": null,
  1586. "partnershipDomainSPL007": null,
  1587. "partnershipDomainSPL006": null,
  1588. "partnershipDomainPL003": null,
  1589. "partnershipDomainPL007": null,
  1590. "partnershipDomainPL006": null,
  1591. "potentialList": [],
  1592. "qzType": 0,
  1593. "qzFlag": 0,
  1594. "enterpriseId": null,
  1595. "nowZhaobMoneyD": 0,
  1596. "historyZhaobMoneyD": 0,
  1597. "nowZhaobMoney": "0",
  1598. "historyZhaobMoney": "0",
  1599. "collaborationChanges": null,
  1600. "collaborationChangesReduce": null,
  1601. "partnerType": null,
  1602. "partnerTypeCode": null,
  1603. "oneYearZhongbD": 0,
  1604. "historyZhongbD": 0,
  1605. "oneYearZhongb": "0",
  1606. "historyZhongb": "0",
  1607. "shareUserCode": null,
  1608. "shareUserName": null,
  1609. "pcShareUserName": null,
  1610. "legalPerson": null,
  1611. "registerDate": null,
  1612. "registerAmount": null,
  1613. "address": null,
  1614. "partnershipList": [],
  1615. "certificateList": [],
  1616. "partnership": "空白",
  1617. "pcList": [
  1618. {
  1619. "dataCode": "空白",
  1620. "dataName": "全产业",
  1621. "tagCode": null
  1622. }
  1623. ],
  1624. "pcChangeList": [],
  1625. "importDate": "2023-05-22 15:05:38",
  1626. "createByDate": "2023-11-23 18:40:12",
  1627. "sevenDayCreateTag": null,
  1628. "linkSize": 0
  1629. },
  1630. {
  1631. "id": "2022062267014199",
  1632. "center": "长沙",
  1633. "areaCode": "M4301",
  1634. "areaName": "长沙小微",
  1635. "city": null,
  1636. "partScale": 0,
  1637. "zbMoney": 0,
  1638. "custName": "长沙兴德电器销售有限公司洋湖店",
  1639. "custCode": "8800477167",
  1640. "officeAddr": "长沙市岳麓区洋湖路25号荟聚购物中心东门",
  1641. "industryStr": null,
  1642. "brandStr": null,
  1643. "partUserCount": "0",
  1644. "centerCode": "12403",
  1645. "notAuthCenter": null,
  1646. "cityCode": null,
  1647. "bigChannelCode": "M",
  1648. "bigChannelName": "直营渠道",
  1649. "smallChannelCode": "HA001",
  1650. "smallChannelName": "纯三专海尔成套专卖类",
  1651. "mdmFlag": 1,
  1652. "zhaobMoney": 0,
  1653. "zhaobCount": 0,
  1654. "signCount": 0,
  1655. "partnershipDomainALL": null,
  1656. "partnershipDomainPL011": null,
  1657. "partnershipDomainPL005": null,
  1658. "partnershipDomainPL002": null,
  1659. "partnershipDomainPL001": null,
  1660. "partnershipDomainSPL007": null,
  1661. "partnershipDomainSPL006": null,
  1662. "partnershipDomainPL003": null,
  1663. "partnershipDomainPL007": null,
  1664. "partnershipDomainPL006": null,
  1665. "potentialList": [],
  1666. "qzType": 0,
  1667. "qzFlag": 0,
  1668. "enterpriseId": null,
  1669. "nowZhaobMoneyD": 0,
  1670. "historyZhaobMoneyD": 0,
  1671. "nowZhaobMoney": "0",
  1672. "historyZhaobMoney": "0",
  1673. "collaborationChanges": null,
  1674. "collaborationChangesReduce": null,
  1675. "partnerType": null,
  1676. "partnerTypeCode": null,
  1677. "oneYearZhongbD": 0,
  1678. "historyZhongbD": 0,
  1679. "oneYearZhongb": "0",
  1680. "historyZhongb": "0",
  1681. "shareUserCode": null,
  1682. "shareUserName": null,
  1683. "pcShareUserName": null,
  1684. "legalPerson": null,
  1685. "registerDate": null,
  1686. "registerAmount": null,
  1687. "address": null,
  1688. "partnershipList": [],
  1689. "certificateList": [],
  1690. "partnership": "空白",
  1691. "pcList": [
  1692. {
  1693. "dataCode": "空白",
  1694. "dataName": "全产业",
  1695. "tagCode": null
  1696. }
  1697. ],
  1698. "pcChangeList": [],
  1699. "importDate": "2022-06-22 14:18:42",
  1700. "createByDate": "2023-11-23 18:40:33",
  1701. "sevenDayCreateTag": null,
  1702. "linkSize": 0
  1703. },
  1704. {
  1705. "id": "1877233006426923009",
  1706. "center": "长沙",
  1707. "areaCode": "M4301",
  1708. "areaName": "长沙小微",
  1709. "city": "益阳市",
  1710. "partScale": 0,
  1711. "zbMoney": 339.28,
  1712. "custName": "湖南鹏城能源科技有限公司",
  1713. "custCode": "8800645400",
  1714. "officeAddr": "湖南省长沙市雨花区同升街道金海路128号领智工业园A1栋202号-224",
  1715. "industryStr": null,
  1716. "brandStr": null,
  1717. "partUserCount": "1",
  1718. "centerCode": "12403",
  1719. "notAuthCenter": null,
  1720. "cityCode": "430900000000",
  1721. "bigChannelCode": "M",
  1722. "bigChannelName": "直营渠道",
  1723. "smallChannelCode": "HA007",
  1724. "smallChannelName": "纯三专工程类",
  1725. "mdmFlag": 1,
  1726. "zhaobMoney": 0,
  1727. "zhaobCount": 0,
  1728. "signCount": 5,
  1729. "partnershipDomainALL": null,
  1730. "partnershipDomainPL011": null,
  1731. "partnershipDomainPL005": null,
  1732. "partnershipDomainPL002": null,
  1733. "partnershipDomainPL001": null,
  1734. "partnershipDomainSPL007": null,
  1735. "partnershipDomainSPL006": null,
  1736. "partnershipDomainPL003": null,
  1737. "partnershipDomainPL007": null,
  1738. "partnershipDomainPL006": null,
  1739. "potentialList": [],
  1740. "qzType": 0,
  1741. "qzFlag": 0,
  1742. "enterpriseId": 1877233006456283100,
  1743. "nowZhaobMoneyD": 0,
  1744. "historyZhaobMoneyD": 0,
  1745. "nowZhaobMoney": "0",
  1746. "historyZhaobMoney": "0",
  1747. "collaborationChanges": null,
  1748. "collaborationChangesReduce": null,
  1749. "partnerType": null,
  1750. "partnerTypeCode": null,
  1751. "oneYearZhongbD": 0,
  1752. "historyZhongbD": 0,
  1753. "oneYearZhongb": "0",
  1754. "historyZhongb": "0",
  1755. "shareUserCode": null,
  1756. "shareUserName": null,
  1757. "pcShareUserName": null,
  1758. "legalPerson": "周永忠",
  1759. "registerDate": "2021",
  1760. "registerAmount": "3000万人民币",
  1761. "address": "湖南省长沙市雨花区同升街道金海路128号领智工业园A1栋202号-224",
  1762. "partnershipList": [
  1763. {
  1764. "dataCode": "发展",
  1765. "dataName": "智慧楼宇",
  1766. "tagCode": "8800645400"
  1767. }
  1768. ],
  1769. "certificateList": [],
  1770. "partnership": "发展",
  1771. "pcList": [
  1772. {
  1773. "dataCode": "发展",
  1774. "dataName": "全产业",
  1775. "tagCode": null
  1776. },
  1777. {
  1778. "dataCode": "发展",
  1779. "dataName": "智慧楼宇",
  1780. "tagCode": "8800645400"
  1781. }
  1782. ],
  1783. "pcChangeList": [],
  1784. "importDate": "2025-08-21 08:48:16",
  1785. "createByDate": "2025-01-09 13:56:40",
  1786. "sevenDayCreateTag": null,
  1787. "linkSize": 0
  1788. },
  1789. {
  1790. "id": "2024011621199960",
  1791. "center": "长沙",
  1792. "areaCode": "M4301",
  1793. "areaName": "长沙小微",
  1794. "city": "娄底市",
  1795. "partScale": 0,
  1796. "zbMoney": 0,
  1797. "custName": "娄底市惠尔圣电器有限公司娄星区涟钢冰冷体验店",
  1798. "custCode": "8800555209",
  1799. "officeAddr": "娄底市娄星区五江建材城",
  1800. "industryStr": null,
  1801. "brandStr": null,
  1802. "partUserCount": "0",
  1803. "centerCode": "12403",
  1804. "notAuthCenter": null,
  1805. "cityCode": "431300000000",
  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": "2024-01-16 00:00:00",
  1859. "createByDate": "2024-01-17 02:50:01",
  1860. "sevenDayCreateTag": null,
  1861. "linkSize": 0
  1862. },
  1863. {
  1864. "id": "2018110923352754",
  1865. "center": "长沙",
  1866. "areaCode": "M4301",
  1867. "areaName": "长沙小微",
  1868. "city": null,
  1869. "partScale": 0,
  1870. "zbMoney": 0,
  1871. "custName": "湖南绿诚机械设备贸易有限公司(顺逛专户)",
  1872. "custCode": "C200091306",
  1873. "officeAddr": "长沙高新区麓谷谷园路38号麓谷加州阳光11栋304房",
  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": "HM006",
  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:16:16",
  1933. "createByDate": "2023-11-23 18:48:07",
  1934. "sevenDayCreateTag": null,
  1935. "linkSize": 0
  1936. },
  1937. {
  1938. "id": "2024031209534571",
  1939. "center": "长沙",
  1940. "areaCode": "M4301",
  1941. "areaName": "长沙小微",
  1942. "city": null,
  1943. "partScale": 0,
  1944. "zbMoney": 0,
  1945. "custName": "(金融备货空调户)郴州市卓一暖通工程有限公司",
  1946. "custCode": "C200094624",
  1947. "officeAddr": "郴州市北湖区御泉城市花园一期1楼1035号",
  1948. "industryStr": null,
  1949. "brandStr": null,
  1950. "partUserCount": "0",
  1951. "centerCode": "12403",
  1952. "notAuthCenter": null,
  1953. "cityCode": "",
  1954. "bigChannelCode": "M",
  1955. "bigChannelName": "直营渠道",
  1956. "smallChannelCode": "HA007",
  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-03-12 00:00:00",
  2007. "createByDate": "2024-03-13 02:50:04",
  2008. "sevenDayCreateTag": null,
  2009. "linkSize": 0
  2010. },
  2011. {
  2012. "id": "2010081220327344",
  2013. "center": "长沙",
  2014. "areaCode": "M4301",
  2015. "areaName": "长沙小微",
  2016. "city": null,
  2017. "partScale": 0,
  2018. "zbMoney": 0,
  2019. "custName": "(空调户)新化县国泰电器销售有限公司",
  2020. "custCode": "C200101452",
  2021. "officeAddr": "湖南省新化县上梅镇天华南路124号",
  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": "HM002",
  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": "2010-08-12 00:00:00",
  2081. "createByDate": "2023-11-23 18:46:08",
  2082. "sevenDayCreateTag": null,
  2083. "linkSize": 0
  2084. },
  2085. {
  2086. "id": "2024031209534395",
  2087. "center": "长沙",
  2088. "areaCode": "M4301",
  2089. "areaName": "长沙小微",
  2090. "city": null,
  2091. "partScale": 0,
  2092. "zbMoney": 0,
  2093. "custName": "(金融备货空调户)新化县新苑电器有限公司",
  2094. "custCode": "C200094580",
  2095. "officeAddr": "湖南省娄底市新化县上渡街道上渡社区华夏和美D栋",
  2096. "industryStr": null,
  2097. "brandStr": null,
  2098. "partUserCount": "0",
  2099. "centerCode": "12403",
  2100. "notAuthCenter": null,
  2101. "cityCode": "",
  2102. "bigChannelCode": "M",
  2103. "bigChannelName": "直营渠道",
  2104. "smallChannelCode": "HA001",
  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": "2024-03-12 00:00:00",
  2155. "createByDate": "2024-03-13 02:50:04",
  2156. "sevenDayCreateTag": null,
  2157. "linkSize": 0
  2158. },
  2159. {
  2160. "id": "2024022099887743",
  2161. "center": "长沙",
  2162. "areaCode": "M4301",
  2163. "areaName": "长沙小微",
  2164. "city": "长沙市",
  2165. "partScale": 0,
  2166. "zbMoney": 0,
  2167. "custName": "长沙兴德电器销售有限公司华浔家装公司店",
  2168. "custCode": "8800558318",
  2169. "officeAddr": "长沙市长沙县开元东路65号星沙筑梦佳园1栋4层",
  2170. "industryStr": null,
  2171. "brandStr": null,
  2172. "partUserCount": "0",
  2173. "centerCode": "12403",
  2174. "notAuthCenter": null,
  2175. "cityCode": "430100000000",
  2176. "bigChannelCode": "M",
  2177. "bigChannelName": "直营渠道",
  2178. "smallChannelCode": "HA001",
  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": "2024-02-20 15:32:41",
  2229. "createByDate": "2024-02-21 02:50:01",
  2230. "sevenDayCreateTag": null,
  2231. "linkSize": 0
  2232. },
  2233. {
  2234. "id": "2017042873955832",
  2235. "center": "长沙",
  2236. "areaCode": "M4301",
  2237. "areaName": "长沙小微",
  2238. "city": "永州市",
  2239. "partScale": 0,
  2240. "zbMoney": 0,
  2241. "custName": "永州市源海家电有限公司芝山路店",
  2242. "custCode": "8800234832",
  2243. "officeAddr": "永州市零陵区芝山北路158号",
  2244. "industryStr": null,
  2245. "brandStr": null,
  2246. "partUserCount": "0",
  2247. "centerCode": "12403",
  2248. "notAuthCenter": null,
  2249. "cityCode": "431100000000",
  2250. "bigChannelCode": "M",
  2251. "bigChannelName": "直营渠道",
  2252. "smallChannelCode": "HA001",
  2253. "smallChannelName": "纯三专海尔成套专卖类",
  2254. "mdmFlag": 1,
  2255. "zhaobMoney": 0,
  2256. "zhaobCount": 0,
  2257. "signCount": 1,
  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": "2017-04-28 00:00:00",
  2303. "createByDate": "2023-11-23 18:43:58",
  2304. "sevenDayCreateTag": null,
  2305. "linkSize": 0
  2306. },
  2307. {
  2308. "id": "2011071500807084",
  2309. "center": "长沙",
  2310. "areaCode": "M4301",
  2311. "areaName": "长沙小微",
  2312. "city": null,
  2313. "partScale": 0,
  2314. "zbMoney": 0,
  2315. "custName": "(押金户)辰溪县华天电器有限责任公司",
  2316. "custCode": "C200104532",
  2317. "officeAddr": "辰溪县辰阳镇食品街",
  2318. "industryStr": null,
  2319. "brandStr": null,
  2320. "partUserCount": "0",
  2321. "centerCode": "12403",
  2322. "notAuthCenter": null,
  2323. "cityCode": "",
  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": "2011-07-15 00:00:00",
  2377. "createByDate": "2023-11-23 18:45:56",
  2378. "sevenDayCreateTag": null,
  2379. "linkSize": 0
  2380. },
  2381. {
  2382. "id": "2009040898243010",
  2383. "center": "长沙",
  2384. "areaCode": "M4301",
  2385. "areaName": "长沙小微",
  2386. "city": "邵阳市",
  2387. "partScale": 0,
  2388. "zbMoney": 0,
  2389. "custName": "湖南明珠集团有限公司",
  2390. "custCode": "8800015109",
  2391. "officeAddr": "邵东县星火大道430号",
  2392. "industryStr": null,
  2393. "brandStr": null,
  2394. "partUserCount": "0",
  2395. "centerCode": "12403",
  2396. "notAuthCenter": null,
  2397. "cityCode": "430500000000",
  2398. "bigChannelCode": "M",
  2399. "bigChannelName": "直营渠道",
  2400. "smallChannelCode": "HM006",
  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": "2009-04-08 18:56:56",
  2451. "createByDate": "2023-11-23 18:46:26",
  2452. "sevenDayCreateTag": null,
  2453. "linkSize": 0
  2454. },
  2455. {
  2456. "id": "2018110923340466",
  2457. "center": "长沙",
  2458. "areaCode": "M4301",
  2459. "areaName": "长沙小微",
  2460. "city": "长沙市",
  2461. "partScale": 0,
  2462. "zbMoney": 0,
  2463. "custName": "湖南达仨江暖通工程有限公司(顺逛专户)",
  2464. "custCode": "C200085250",
  2465. "officeAddr": "湖南省长沙市开福区柏叶路2号靠近劳卡全屋定制(红星美凯龙店)",
  2466. "industryStr": null,
  2467. "brandStr": null,
  2468. "partUserCount": "0",
  2469. "centerCode": "12403",
  2470. "notAuthCenter": null,
  2471. "cityCode": "430100000000",
  2472. "bigChannelCode": "M",
  2473. "bigChannelName": "直营渠道",
  2474. "smallChannelCode": "HA007",
  2475. "smallChannelName": "纯三专工程类",
  2476. "mdmFlag": 1,
  2477. "zhaobMoney": 0,
  2478. "zhaobCount": 0,
  2479. "signCount": 84,
  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": "2018-11-09 13:15:32",
  2525. "createByDate": "2023-11-23 18:48:21",
  2526. "sevenDayCreateTag": null,
  2527. "linkSize": 0
  2528. },
  2529. {
  2530. "id": "2023112437253484",
  2531. "center": "长沙",
  2532. "areaCode": "M4301",
  2533. "areaName": "长沙小微",
  2534. "city": "岳阳市",
  2535. "partScale": 0,
  2536. "zbMoney": 0,
  2537. "custName": "长沙海日新商贸有限公司岳阳仓",
  2538. "custCode": "8800546899",
  2539. "officeAddr": "岳阳市岳阳楼区深国际智慧物流园",
  2540. "industryStr": null,
  2541. "brandStr": null,
  2542. "partUserCount": "0",
  2543. "centerCode": "12403",
  2544. "notAuthCenter": null,
  2545. "cityCode": "430600000000",
  2546. "bigChannelCode": "M",
  2547. "bigChannelName": "直营渠道",
  2548. "smallChannelCode": "HA003",
  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": "2023-11-24 00:00:00",
  2599. "createByDate": "2023-11-25 02:58:54",
  2600. "sevenDayCreateTag": null,
  2601. "linkSize": 0
  2602. },
  2603. {
  2604. "id": "2024071689910951",
  2605. "center": "长沙",
  2606. "areaCode": "M4301",
  2607. "areaName": "长沙小微",
  2608. "city": "长沙市",
  2609. "partScale": 0,
  2610. "zbMoney": 0,
  2611. "custName": "宜春市麦云舒适环境工程有限公司雨花区中城丽景香山水联网前置店",
  2612. "custCode": "8800579654",
  2613. "officeAddr": "长沙市雨花区中城香山丽景22栋",
  2614. "industryStr": null,
  2615. "brandStr": null,
  2616. "partUserCount": "0",
  2617. "centerCode": "12403",
  2618. "notAuthCenter": null,
  2619. "cityCode": "430100000000",
  2620. "bigChannelCode": "M",
  2621. "bigChannelName": "直营渠道",
  2622. "smallChannelCode": "HA024",
  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": "2024-07-16 15:06:54",
  2673. "createByDate": "2024-07-17 02:50:03",
  2674. "sevenDayCreateTag": null,
  2675. "linkSize": 0
  2676. },
  2677. {
  2678. "id": "2021121550407846",
  2679. "center": "长沙",
  2680. "areaCode": "M4301",
  2681. "areaName": "长沙小微",
  2682. "city": null,
  2683. "partScale": 22.94,
  2684. "zbMoney": 0,
  2685. "custName": "湖南利勃暖通工程有限公司",
  2686. "custCode": "8800448012",
  2687. "officeAddr": "湖南省湘潭市岳塘区宝塔街道湖湘北路4号金芙蓉国际广场9号楼1单元2801002号",
  2688. "industryStr": "热水器(1)",
  2689. "brandStr": "海尔",
  2690. "partUserCount": "7",
  2691. "centerCode": "12403",
  2692. "notAuthCenter": null,
  2693. "cityCode": null,
  2694. "bigChannelCode": "M",
  2695. "bigChannelName": "直营渠道",
  2696. "smallChannelCode": "HA011",
  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": 23,
  2718. "nowZhaobMoney": "0",
  2719. "historyZhaobMoney": "23",
  2720. "collaborationChanges": null,
  2721. "collaborationChangesReduce": null,
  2722. "partnerType": "其他,企业",
  2723. "partnerTypeCode": "-1,91",
  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": "2021-12-15 20:32:23",
  2747. "createByDate": "2023-11-23 18:40:48",
  2748. "sevenDayCreateTag": null,
  2749. "linkSize": 0
  2750. },
  2751. {
  2752. "id": "1848937093879496706",
  2753. "center": "长沙",
  2754. "areaCode": "M4301",
  2755. "areaName": "长沙小微",
  2756. "city": null,
  2757. "partScale": 0,
  2758. "zbMoney": 0,
  2759. "custName": "怀化鸿亮机电设备工程有限公司",
  2760. "custCode": "8800637322",
  2761. "officeAddr": "湖南省怀化市鹤城区环城西路辅路a1-2栋靠近金口岸金融产业园(建设中)",
  2762. "industryStr": null,
  2763. "brandStr": null,
  2764. "partUserCount": "2",
  2765. "centerCode": "12403",
  2766. "notAuthCenter": null,
  2767. "cityCode": "431200",
  2768. "bigChannelCode": "M",
  2769. "bigChannelName": "直营渠道",
  2770. "smallChannelCode": "HA007",
  2771. "smallChannelName": "纯三专工程类",
  2772. "mdmFlag": 1,
  2773. "zhaobMoney": 0,
  2774. "zhaobCount": 0,
  2775. "signCount": 44,
  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": 1848937093900468200,
  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": "李亮",
  2806. "registerDate": "2017",
  2807. "registerAmount": "200万人民币",
  2808. "address": "湖南省怀化市经开区武陵山建材广场(武陵山现代商贸物流城)A区1栋1033号",
  2809. "partnershipList": [
  2810. {
  2811. "dataCode": "薄弱",
  2812. "dataName": "智慧楼宇",
  2813. "tagCode": "8800637322"
  2814. }
  2815. ],
  2816. "certificateList": [],
  2817. "partnership": "薄弱",
  2818. "pcList": [
  2819. {
  2820. "dataCode": "薄弱",
  2821. "dataName": "全产业",
  2822. "tagCode": null
  2823. },
  2824. {
  2825. "dataCode": "薄弱",
  2826. "dataName": "智慧楼宇",
  2827. "tagCode": "8800637322"
  2828. }
  2829. ],
  2830. "pcChangeList": [],
  2831. "importDate": "2025-06-20 16:56:48",
  2832. "createByDate": "2024-10-23 11:58:49",
  2833. "sevenDayCreateTag": null,
  2834. "linkSize": 0
  2835. },
  2836. {
  2837. "id": "2018110923339494",
  2838. "center": "长沙",
  2839. "areaCode": "M4301",
  2840. "areaName": "长沙小微",
  2841. "city": null,
  2842. "partScale": 0,
  2843. "zbMoney": 0,
  2844. "custName": "湖南智腾能源开发有限公司(顺逛专户)",
  2845. "custCode": "C200084766",
  2846. "officeAddr": "湖南省湘乡市潭市镇永明村八组04栋",
  2847. "industryStr": null,
  2848. "brandStr": null,
  2849. "partUserCount": "0",
  2850. "centerCode": "12403",
  2851. "notAuthCenter": null,
  2852. "cityCode": null,
  2853. "bigChannelCode": "M",
  2854. "bigChannelName": "直营渠道",
  2855. "smallChannelCode": "HA007",
  2856. "smallChannelName": "纯三专工程类",
  2857. "mdmFlag": 1,
  2858. "zhaobMoney": 0,
  2859. "zhaobCount": 0,
  2860. "signCount": 0,
  2861. "partnershipDomainALL": null,
  2862. "partnershipDomainPL011": null,
  2863. "partnershipDomainPL005": null,
  2864. "partnershipDomainPL002": null,
  2865. "partnershipDomainPL001": null,
  2866. "partnershipDomainSPL007": null,
  2867. "partnershipDomainSPL006": null,
  2868. "partnershipDomainPL003": null,
  2869. "partnershipDomainPL007": null,
  2870. "partnershipDomainPL006": null,
  2871. "potentialList": [],
  2872. "qzType": 0,
  2873. "qzFlag": 0,
  2874. "enterpriseId": null,
  2875. "nowZhaobMoneyD": 0,
  2876. "historyZhaobMoneyD": 0,
  2877. "nowZhaobMoney": "0",
  2878. "historyZhaobMoney": "0",
  2879. "collaborationChanges": null,
  2880. "collaborationChangesReduce": null,
  2881. "partnerType": null,
  2882. "partnerTypeCode": null,
  2883. "oneYearZhongbD": 0,
  2884. "historyZhongbD": 0,
  2885. "oneYearZhongb": "0",
  2886. "historyZhongb": "0",
  2887. "shareUserCode": null,
  2888. "shareUserName": null,
  2889. "pcShareUserName": null,
  2890. "legalPerson": null,
  2891. "registerDate": null,
  2892. "registerAmount": null,
  2893. "address": null,
  2894. "partnershipList": [],
  2895. "certificateList": [],
  2896. "partnership": "空白",
  2897. "pcList": [
  2898. {
  2899. "dataCode": "空白",
  2900. "dataName": "全产业",
  2901. "tagCode": null
  2902. }
  2903. ],
  2904. "pcChangeList": [],
  2905. "importDate": "2018-11-09 13:15:28",
  2906. "createByDate": "2023-11-23 18:48:21",
  2907. "sevenDayCreateTag": null,
  2908. "linkSize": 0
  2909. },
  2910. {
  2911. "id": "2024040958622513",
  2912. "center": "长沙",
  2913. "areaCode": "M4301",
  2914. "areaName": "长沙小微",
  2915. "city": "常德市",
  2916. "partScale": 0,
  2917. "zbMoney": 0,
  2918. "custName": "常德浩敏建材有限公司鼎城区善卷路热水器专营店",
  2919. "custCode": "8800565936",
  2920. "officeAddr": "常德市鼎城区常德市鼎城区善卷路1877号",
  2921. "industryStr": null,
  2922. "brandStr": null,
  2923. "partUserCount": "0",
  2924. "centerCode": "12403",
  2925. "notAuthCenter": null,
  2926. "cityCode": "430700000000",
  2927. "bigChannelCode": "M",
  2928. "bigChannelName": "直营渠道",
  2929. "smallChannelCode": "HA011",
  2930. "smallChannelName": "纯三专海尔产品专卖类(净水+热水器)",
  2931. "mdmFlag": 1,
  2932. "zhaobMoney": 0,
  2933. "zhaobCount": 0,
  2934. "signCount": 0,
  2935. "partnershipDomainALL": null,
  2936. "partnershipDomainPL011": null,
  2937. "partnershipDomainPL005": null,
  2938. "partnershipDomainPL002": null,
  2939. "partnershipDomainPL001": null,
  2940. "partnershipDomainSPL007": null,
  2941. "partnershipDomainSPL006": null,
  2942. "partnershipDomainPL003": null,
  2943. "partnershipDomainPL007": null,
  2944. "partnershipDomainPL006": null,
  2945. "potentialList": [],
  2946. "qzType": 0,
  2947. "qzFlag": 0,
  2948. "enterpriseId": null,
  2949. "nowZhaobMoneyD": 0,
  2950. "historyZhaobMoneyD": 0,
  2951. "nowZhaobMoney": "0",
  2952. "historyZhaobMoney": "0",
  2953. "collaborationChanges": null,
  2954. "collaborationChangesReduce": null,
  2955. "partnerType": null,
  2956. "partnerTypeCode": null,
  2957. "oneYearZhongbD": 0,
  2958. "historyZhongbD": 0,
  2959. "oneYearZhongb": "0",
  2960. "historyZhongb": "0",
  2961. "shareUserCode": null,
  2962. "shareUserName": null,
  2963. "pcShareUserName": null,
  2964. "legalPerson": null,
  2965. "registerDate": null,
  2966. "registerAmount": null,
  2967. "address": null,
  2968. "partnershipList": [],
  2969. "certificateList": [],
  2970. "partnership": "空白",
  2971. "pcList": [
  2972. {
  2973. "dataCode": "空白",
  2974. "dataName": "全产业",
  2975. "tagCode": null
  2976. }
  2977. ],
  2978. "pcChangeList": [],
  2979. "importDate": "2024-04-09 18:41:51",
  2980. "createByDate": "2024-04-10 02:50:01",
  2981. "sevenDayCreateTag": null,
  2982. "linkSize": 0
  2983. },
  2984. {
  2985. "id": "2015121455173172",
  2986. "center": "长沙",
  2987. "areaCode": "M4301",
  2988. "areaName": "长沙小微",
  2989. "city": "娄底市",
  2990. "partScale": 0,
  2991. "zbMoney": 0,
  2992. "custName": "新化县国泰电器销售有限公司河东梅苑分店",
  2993. "custCode": "8800202853",
  2994. "officeAddr": "新化县河东梅苑南路十字路口",
  2995. "industryStr": null,
  2996. "brandStr": null,
  2997. "partUserCount": "0",
  2998. "centerCode": "12403",
  2999. "notAuthCenter": null,
  3000. "cityCode": "431300000000",
  3001. "bigChannelCode": "M",
  3002. "bigChannelName": "直营渠道",
  3003. "smallChannelCode": "HM002",
  3004. "smallChannelName": "准三专海尔家电卖场类",
  3005. "mdmFlag": 1,
  3006. "zhaobMoney": 0,
  3007. "zhaobCount": 0,
  3008. "signCount": 2,
  3009. "partnershipDomainALL": null,
  3010. "partnershipDomainPL011": null,
  3011. "partnershipDomainPL005": null,
  3012. "partnershipDomainPL002": null,
  3013. "partnershipDomainPL001": null,
  3014. "partnershipDomainSPL007": null,
  3015. "partnershipDomainSPL006": null,
  3016. "partnershipDomainPL003": null,
  3017. "partnershipDomainPL007": null,
  3018. "partnershipDomainPL006": null,
  3019. "potentialList": [],
  3020. "qzType": 0,
  3021. "qzFlag": 0,
  3022. "enterpriseId": null,
  3023. "nowZhaobMoneyD": 0,
  3024. "historyZhaobMoneyD": 0,
  3025. "nowZhaobMoney": "0",
  3026. "historyZhaobMoney": "0",
  3027. "collaborationChanges": null,
  3028. "collaborationChangesReduce": null,
  3029. "partnerType": null,
  3030. "partnerTypeCode": null,
  3031. "oneYearZhongbD": 0,
  3032. "historyZhongbD": 0,
  3033. "oneYearZhongb": "0",
  3034. "historyZhongb": "0",
  3035. "shareUserCode": null,
  3036. "shareUserName": null,
  3037. "pcShareUserName": null,
  3038. "legalPerson": null,
  3039. "registerDate": null,
  3040. "registerAmount": null,
  3041. "address": null,
  3042. "partnershipList": [],
  3043. "certificateList": [],
  3044. "partnership": "空白",
  3045. "pcList": [
  3046. {
  3047. "dataCode": "空白",
  3048. "dataName": "全产业",
  3049. "tagCode": null
  3050. }
  3051. ],
  3052. "pcChangeList": [],
  3053. "importDate": "2015-12-14 00:00:00",
  3054. "createByDate": "2023-11-23 18:44:19",
  3055. "sevenDayCreateTag": null,
  3056. "linkSize": 0
  3057. },
  3058. {
  3059. "id": "2021100910262946",
  3060. "center": "长沙",
  3061. "areaCode": "M4301",
  3062. "areaName": "长沙小微",
  3063. "city": null,
  3064. "partScale": 79.65,
  3065. "zbMoney": 561.74,
  3066. "custName": "湘西自治州兴达科技有限责任公司",
  3067. "custCode": "8800438119",
  3068. "officeAddr": "湖南省湘西土家族苗族自治州吉首市武陵山大道靠近国盛商业广场",
  3069. "industryStr": "家用空调(1)",
  3070. "brandStr": "海尔",
  3071. "partUserCount": "10",
  3072. "centerCode": "12403",
  3073. "notAuthCenter": null,
  3074. "cityCode": "433100",
  3075. "bigChannelCode": "M",
  3076. "bigChannelName": "直营渠道",
  3077. "smallChannelCode": "HA007",
  3078. "smallChannelName": "纯三专工程类",
  3079. "mdmFlag": 1,
  3080. "zhaobMoney": 1025.58,
  3081. "zhaobCount": 12,
  3082. "signCount": 13,
  3083. "partnershipDomainALL": null,
  3084. "partnershipDomainPL011": null,
  3085. "partnershipDomainPL005": null,
  3086. "partnershipDomainPL002": null,
  3087. "partnershipDomainPL001": null,
  3088. "partnershipDomainSPL007": null,
  3089. "partnershipDomainSPL006": null,
  3090. "partnershipDomainPL003": null,
  3091. "partnershipDomainPL007": null,
  3092. "partnershipDomainPL006": null,
  3093. "potentialList": [
  3094. {
  3095. "dataCode": "高",
  3096. "dataName": "智慧楼宇",
  3097. "tagCode": null
  3098. }
  3099. ],
  3100. "qzType": 0,
  3101. "qzFlag": 2,
  3102. "enterpriseId": 1996776178172899300,
  3103. "nowZhaobMoneyD": 0,
  3104. "historyZhaobMoneyD": 80,
  3105. "nowZhaobMoney": "0",
  3106. "historyZhaobMoney": "80",
  3107. "collaborationChanges": null,
  3108. "collaborationChangesReduce": null,
  3109. "partnerType": "事业单位,其他",
  3110. "partnerTypeCode": "12,-1",
  3111. "oneYearZhongbD": 1,
  3112. "historyZhongbD": 1026,
  3113. "oneYearZhongb": "1",
  3114. "historyZhongb": "1,026",
  3115. "shareUserCode": null,
  3116. "shareUserName": null,
  3117. "pcShareUserName": null,
  3118. "legalPerson": "庹骁",
  3119. "registerDate": "1998",
  3120. "registerAmount": "1000万人民币",
  3121. "address": "湖南省吉首市镇溪办事处武陵东路55号1-1415、14-15号门面",
  3122. "partnershipList": [],
  3123. "certificateList": [],
  3124. "partnership": "空白",
  3125. "pcList": [
  3126. {
  3127. "dataCode": "空白",
  3128. "dataName": "全产业",
  3129. "tagCode": null
  3130. },
  3131. {
  3132. "dataCode": "高",
  3133. "dataName": "智慧楼宇",
  3134. "tagCode": null
  3135. }
  3136. ],
  3137. "pcChangeList": [],
  3138. "importDate": "2021-10-09 00:00:00",
  3139. "createByDate": "2023-11-23 18:40:54",
  3140. "sevenDayCreateTag": null,
  3141. "linkSize": 0
  3142. },
  3143. {
  3144. "id": "2016082364131484",
  3145. "center": "长沙",
  3146. "areaCode": "M4301",
  3147. "areaName": "长沙小微",
  3148. "city": null,
  3149. "partScale": 0,
  3150. "zbMoney": 0,
  3151. "custName": "(押金户)长沙万业电器贸易有限公司",
  3152. "custCode": "C200129134",
  3153. "officeAddr": "长沙市芙蓉区火星街道凌霄路019栋202房",
  3154. "industryStr": null,
  3155. "brandStr": null,
  3156. "partUserCount": "0",
  3157. "centerCode": "12403",
  3158. "notAuthCenter": null,
  3159. "cityCode": null,
  3160. "bigChannelCode": "M",
  3161. "bigChannelName": "直营渠道",
  3162. "smallChannelCode": "HA001",
  3163. "smallChannelName": "纯三专海尔成套专卖类",
  3164. "mdmFlag": 1,
  3165. "zhaobMoney": 0,
  3166. "zhaobCount": 0,
  3167. "signCount": 0,
  3168. "partnershipDomainALL": null,
  3169. "partnershipDomainPL011": null,
  3170. "partnershipDomainPL005": null,
  3171. "partnershipDomainPL002": null,
  3172. "partnershipDomainPL001": null,
  3173. "partnershipDomainSPL007": null,
  3174. "partnershipDomainSPL006": null,
  3175. "partnershipDomainPL003": null,
  3176. "partnershipDomainPL007": null,
  3177. "partnershipDomainPL006": null,
  3178. "potentialList": [],
  3179. "qzType": 0,
  3180. "qzFlag": 0,
  3181. "enterpriseId": null,
  3182. "nowZhaobMoneyD": 0,
  3183. "historyZhaobMoneyD": 0,
  3184. "nowZhaobMoney": "0",
  3185. "historyZhaobMoney": "0",
  3186. "collaborationChanges": null,
  3187. "collaborationChangesReduce": null,
  3188. "partnerType": null,
  3189. "partnerTypeCode": null,
  3190. "oneYearZhongbD": 0,
  3191. "historyZhongbD": 0,
  3192. "oneYearZhongb": "0",
  3193. "historyZhongb": "0",
  3194. "shareUserCode": null,
  3195. "shareUserName": null,
  3196. "pcShareUserName": null,
  3197. "legalPerson": null,
  3198. "registerDate": null,
  3199. "registerAmount": null,
  3200. "address": null,
  3201. "partnershipList": [],
  3202. "certificateList": [],
  3203. "partnership": "空白",
  3204. "pcList": [
  3205. {
  3206. "dataCode": "空白",
  3207. "dataName": "全产业",
  3208. "tagCode": null
  3209. }
  3210. ],
  3211. "pcChangeList": [],
  3212. "importDate": "2016-08-23 17:07:51",
  3213. "createByDate": "2023-11-23 18:47:55",
  3214. "sevenDayCreateTag": null,
  3215. "linkSize": 0
  3216. },
  3217. {
  3218. "id": "2022022499789298",
  3219. "center": "长沙",
  3220. "areaCode": "M4301",
  3221. "areaName": "长沙小微",
  3222. "city": null,
  3223. "partScale": 0,
  3224. "zbMoney": 0,
  3225. "custName": "(押金户)怀化市经济开发区贸新家电服务有限公司",
  3226. "custCode": "C200149040",
  3227. "officeAddr": "怀化市经济开发区河西家电城2栋9号",
  3228. "industryStr": null,
  3229. "brandStr": null,
  3230. "partUserCount": "0",
  3231. "centerCode": "12403",
  3232. "notAuthCenter": null,
  3233. "cityCode": null,
  3234. "bigChannelCode": "M",
  3235. "bigChannelName": "直营渠道",
  3236. "smallChannelCode": "HM002",
  3237. "smallChannelName": "准三专海尔家电卖场类",
  3238. "mdmFlag": 1,
  3239. "zhaobMoney": 0,
  3240. "zhaobCount": 0,
  3241. "signCount": 0,
  3242. "partnershipDomainALL": null,
  3243. "partnershipDomainPL011": null,
  3244. "partnershipDomainPL005": null,
  3245. "partnershipDomainPL002": null,
  3246. "partnershipDomainPL001": null,
  3247. "partnershipDomainSPL007": null,
  3248. "partnershipDomainSPL006": null,
  3249. "partnershipDomainPL003": null,
  3250. "partnershipDomainPL007": null,
  3251. "partnershipDomainPL006": null,
  3252. "potentialList": [],
  3253. "qzType": 0,
  3254. "qzFlag": 0,
  3255. "enterpriseId": null,
  3256. "nowZhaobMoneyD": 0,
  3257. "historyZhaobMoneyD": 0,
  3258. "nowZhaobMoney": "0",
  3259. "historyZhaobMoney": "0",
  3260. "collaborationChanges": null,
  3261. "collaborationChangesReduce": null,
  3262. "partnerType": null,
  3263. "partnerTypeCode": null,
  3264. "oneYearZhongbD": 0,
  3265. "historyZhongbD": 0,
  3266. "oneYearZhongb": "0",
  3267. "historyZhongb": "0",
  3268. "shareUserCode": null,
  3269. "shareUserName": null,
  3270. "pcShareUserName": null,
  3271. "legalPerson": null,
  3272. "registerDate": null,
  3273. "registerAmount": null,
  3274. "address": null,
  3275. "partnershipList": [],
  3276. "certificateList": [],
  3277. "partnership": "空白",
  3278. "pcList": [
  3279. {
  3280. "dataCode": "空白",
  3281. "dataName": "全产业",
  3282. "tagCode": null
  3283. }
  3284. ],
  3285. "pcChangeList": [],
  3286. "importDate": "2022-02-24 00:00:00",
  3287. "createByDate": "2023-11-23 18:40:44",
  3288. "sevenDayCreateTag": null,
  3289. "linkSize": 0
  3290. },
  3291. {
  3292. "id": "2021011283402739",
  3293. "center": "长沙",
  3294. "areaCode": "M4301",
  3295. "areaName": "长沙小微",
  3296. "city": "长沙市",
  3297. "partScale": 0,
  3298. "zbMoney": 0,
  3299. "custName": "(押金户)长沙米纳智能科技有限公司",
  3300. "custCode": "C200145640",
  3301. "officeAddr": "长沙高新开发区文轩路27号麓谷钰园生产车间B-7104",
  3302. "industryStr": null,
  3303. "brandStr": null,
  3304. "partUserCount": "0",
  3305. "centerCode": "12403",
  3306. "notAuthCenter": null,
  3307. "cityCode": "430100000000",
  3308. "bigChannelCode": "M",
  3309. "bigChannelName": "直营渠道",
  3310. "smallChannelCode": "HA009",
  3311. "smallChannelName": "纯三专海尔产品专卖类(净水)",
  3312. "mdmFlag": 1,
  3313. "zhaobMoney": 0,
  3314. "zhaobCount": 0,
  3315. "signCount": 0,
  3316. "partnershipDomainALL": null,
  3317. "partnershipDomainPL011": null,
  3318. "partnershipDomainPL005": null,
  3319. "partnershipDomainPL002": null,
  3320. "partnershipDomainPL001": null,
  3321. "partnershipDomainSPL007": null,
  3322. "partnershipDomainSPL006": null,
  3323. "partnershipDomainPL003": null,
  3324. "partnershipDomainPL007": null,
  3325. "partnershipDomainPL006": null,
  3326. "potentialList": [],
  3327. "qzType": 0,
  3328. "qzFlag": 0,
  3329. "enterpriseId": null,
  3330. "nowZhaobMoneyD": 0,
  3331. "historyZhaobMoneyD": 0,
  3332. "nowZhaobMoney": "0",
  3333. "historyZhaobMoney": "0",
  3334. "collaborationChanges": null,
  3335. "collaborationChangesReduce": null,
  3336. "partnerType": null,
  3337. "partnerTypeCode": null,
  3338. "oneYearZhongbD": 0,
  3339. "historyZhongbD": 0,
  3340. "oneYearZhongb": "0",
  3341. "historyZhongb": "0",
  3342. "shareUserCode": null,
  3343. "shareUserName": null,
  3344. "pcShareUserName": null,
  3345. "legalPerson": null,
  3346. "registerDate": null,
  3347. "registerAmount": null,
  3348. "address": null,
  3349. "partnershipList": [],
  3350. "certificateList": [],
  3351. "partnership": "空白",
  3352. "pcList": [
  3353. {
  3354. "dataCode": "空白",
  3355. "dataName": "全产业",
  3356. "tagCode": null
  3357. }
  3358. ],
  3359. "pcChangeList": [],
  3360. "importDate": "2021-01-12 00:00:00",
  3361. "createByDate": "2023-11-23 18:41:21",
  3362. "sevenDayCreateTag": null,
  3363. "linkSize": 0
  3364. },
  3365. {
  3366. "id": "2024072496245441",
  3367. "center": "长沙",
  3368. "areaCode": "M4301",
  3369. "areaName": "长沙小微",
  3370. "city": "长沙市",
  3371. "partScale": 0,
  3372. "zbMoney": 0,
  3373. "custName": "长沙市和美电器贸易有限公司居然之家南站水联网店",
  3374. "custCode": "8800580631",
  3375. "officeAddr": "长沙市雨花区长沙市雨花区中意一路811号",
  3376. "industryStr": null,
  3377. "brandStr": null,
  3378. "partUserCount": "0",
  3379. "centerCode": "12403",
  3380. "notAuthCenter": null,
  3381. "cityCode": "430100000000",
  3382. "bigChannelCode": "M",
  3383. "bigChannelName": "直营渠道",
  3384. "smallChannelCode": "HA001",
  3385. "smallChannelName": "纯三专海尔成套专卖类",
  3386. "mdmFlag": 1,
  3387. "zhaobMoney": 0,
  3388. "zhaobCount": 0,
  3389. "signCount": 0,
  3390. "partnershipDomainALL": null,
  3391. "partnershipDomainPL011": null,
  3392. "partnershipDomainPL005": null,
  3393. "partnershipDomainPL002": null,
  3394. "partnershipDomainPL001": null,
  3395. "partnershipDomainSPL007": null,
  3396. "partnershipDomainSPL006": null,
  3397. "partnershipDomainPL003": null,
  3398. "partnershipDomainPL007": null,
  3399. "partnershipDomainPL006": null,
  3400. "potentialList": [],
  3401. "qzType": 0,
  3402. "qzFlag": 0,
  3403. "enterpriseId": null,
  3404. "nowZhaobMoneyD": 0,
  3405. "historyZhaobMoneyD": 0,
  3406. "nowZhaobMoney": "0",
  3407. "historyZhaobMoney": "0",
  3408. "collaborationChanges": null,
  3409. "collaborationChangesReduce": null,
  3410. "partnerType": null,
  3411. "partnerTypeCode": null,
  3412. "oneYearZhongbD": 0,
  3413. "historyZhongbD": 0,
  3414. "oneYearZhongb": "0",
  3415. "historyZhongb": "0",
  3416. "shareUserCode": null,
  3417. "shareUserName": null,
  3418. "pcShareUserName": null,
  3419. "legalPerson": null,
  3420. "registerDate": null,
  3421. "registerAmount": null,
  3422. "address": null,
  3423. "partnershipList": [],
  3424. "certificateList": [],
  3425. "partnership": "空白",
  3426. "pcList": [
  3427. {
  3428. "dataCode": "空白",
  3429. "dataName": "全产业",
  3430. "tagCode": null
  3431. }
  3432. ],
  3433. "pcChangeList": [],
  3434. "importDate": "2024-07-24 10:09:14",
  3435. "createByDate": "2024-07-25 02:50:03",
  3436. "sevenDayCreateTag": null,
  3437. "linkSize": 0
  3438. },
  3439. {
  3440. "id": "2024031209534423",
  3441. "center": "长沙",
  3442. "areaCode": "M4301",
  3443. "areaName": "长沙小微",
  3444. "city": null,
  3445. "partScale": 0,
  3446. "zbMoney": 0,
  3447. "custName": "(金融备货空调户)邵阳佳轩贸易有限公司",
  3448. "custCode": "C200094587",
  3449. "officeAddr": "湖南省邵阳市洞口县文昌街道新平村新廻路旁龙汇阁1号楼",
  3450. "industryStr": null,
  3451. "brandStr": null,
  3452. "partUserCount": "0",
  3453. "centerCode": "12403",
  3454. "notAuthCenter": null,
  3455. "cityCode": "",
  3456. "bigChannelCode": "M",
  3457. "bigChannelName": "直营渠道",
  3458. "smallChannelCode": "HA002",
  3459. "smallChannelName": "纯三专海尔产品专卖类(空调)",
  3460. "mdmFlag": 1,
  3461. "zhaobMoney": 0,
  3462. "zhaobCount": 0,
  3463. "signCount": 0,
  3464. "partnershipDomainALL": null,
  3465. "partnershipDomainPL011": null,
  3466. "partnershipDomainPL005": null,
  3467. "partnershipDomainPL002": null,
  3468. "partnershipDomainPL001": null,
  3469. "partnershipDomainSPL007": null,
  3470. "partnershipDomainSPL006": null,
  3471. "partnershipDomainPL003": null,
  3472. "partnershipDomainPL007": null,
  3473. "partnershipDomainPL006": null,
  3474. "potentialList": [],
  3475. "qzType": 0,
  3476. "qzFlag": 0,
  3477. "enterpriseId": null,
  3478. "nowZhaobMoneyD": 0,
  3479. "historyZhaobMoneyD": 0,
  3480. "nowZhaobMoney": "0",
  3481. "historyZhaobMoney": "0",
  3482. "collaborationChanges": null,
  3483. "collaborationChangesReduce": null,
  3484. "partnerType": null,
  3485. "partnerTypeCode": null,
  3486. "oneYearZhongbD": 0,
  3487. "historyZhongbD": 0,
  3488. "oneYearZhongb": "0",
  3489. "historyZhongb": "0",
  3490. "shareUserCode": null,
  3491. "shareUserName": null,
  3492. "pcShareUserName": null,
  3493. "legalPerson": null,
  3494. "registerDate": null,
  3495. "registerAmount": null,
  3496. "address": null,
  3497. "partnershipList": [],
  3498. "certificateList": [],
  3499. "partnership": "空白",
  3500. "pcList": [
  3501. {
  3502. "dataCode": "空白",
  3503. "dataName": "全产业",
  3504. "tagCode": null
  3505. }
  3506. ],
  3507. "pcChangeList": [],
  3508. "importDate": "2024-03-12 00:00:00",
  3509. "createByDate": "2024-03-13 02:50:04",
  3510. "sevenDayCreateTag": null,
  3511. "linkSize": 0
  3512. },
  3513. {
  3514. "id": "2018110923326079",
  3515. "center": "长沙",
  3516. "areaCode": "M4301",
  3517. "areaName": "长沙小微",
  3518. "city": null,
  3519. "partScale": 0,
  3520. "zbMoney": 0,
  3521. "custName": "怀化嘉成商贸有限公司(顺逛专户)",
  3522. "custCode": "C200078071",
  3523. "officeAddr": "湖南省怀化市经开区舞阳大道家电城5栋105-106号",
  3524. "industryStr": null,
  3525. "brandStr": null,
  3526. "partUserCount": "0",
  3527. "centerCode": "12403",
  3528. "notAuthCenter": null,
  3529. "cityCode": null,
  3530. "bigChannelCode": "M",
  3531. "bigChannelName": "直营渠道",
  3532. "smallChannelCode": "HA001",
  3533. "smallChannelName": "纯三专海尔成套专卖类",
  3534. "mdmFlag": 1,
  3535. "zhaobMoney": 0,
  3536. "zhaobCount": 0,
  3537. "signCount": 0,
  3538. "partnershipDomainALL": null,
  3539. "partnershipDomainPL011": null,
  3540. "partnershipDomainPL005": null,
  3541. "partnershipDomainPL002": null,
  3542. "partnershipDomainPL001": null,
  3543. "partnershipDomainSPL007": null,
  3544. "partnershipDomainSPL006": null,
  3545. "partnershipDomainPL003": null,
  3546. "partnershipDomainPL007": null,
  3547. "partnershipDomainPL006": null,
  3548. "potentialList": [],
  3549. "qzType": 0,
  3550. "qzFlag": 0,
  3551. "enterpriseId": null,
  3552. "nowZhaobMoneyD": 0,
  3553. "historyZhaobMoneyD": 0,
  3554. "nowZhaobMoney": "0",
  3555. "historyZhaobMoney": "0",
  3556. "collaborationChanges": null,
  3557. "collaborationChangesReduce": null,
  3558. "partnerType": null,
  3559. "partnerTypeCode": null,
  3560. "oneYearZhongbD": 0,
  3561. "historyZhongbD": 0,
  3562. "oneYearZhongb": "0",
  3563. "historyZhongb": "0",
  3564. "shareUserCode": null,
  3565. "shareUserName": null,
  3566. "pcShareUserName": null,
  3567. "legalPerson": null,
  3568. "registerDate": null,
  3569. "registerAmount": null,
  3570. "address": null,
  3571. "partnershipList": [],
  3572. "certificateList": [],
  3573. "partnership": "空白",
  3574. "pcList": [
  3575. {
  3576. "dataCode": "空白",
  3577. "dataName": "全产业",
  3578. "tagCode": null
  3579. }
  3580. ],
  3581. "pcChangeList": [],
  3582. "importDate": "2018-11-09 13:14:35",
  3583. "createByDate": "2023-11-23 18:48:39",
  3584. "sevenDayCreateTag": null,
  3585. "linkSize": 0
  3586. },
  3587. {
  3588. "id": "2024073000987082",
  3589. "center": "长沙",
  3590. "areaCode": "M4301",
  3591. "areaName": "长沙小微",
  3592. "city": "怀化市",
  3593. "partScale": 0,
  3594. "zbMoney": 0,
  3595. "custName": "怀化新海潮电器有限公司大美时光里热水专营店",
  3596. "custCode": "8800581489",
  3597. "officeAddr": "怀化市鹤城区正清路338号大美时光里2楼",
  3598. "industryStr": null,
  3599. "brandStr": null,
  3600. "partUserCount": "0",
  3601. "centerCode": "12403",
  3602. "notAuthCenter": null,
  3603. "cityCode": "431200000000",
  3604. "bigChannelCode": "M",
  3605. "bigChannelName": "直营渠道",
  3606. "smallChannelCode": "HA001",
  3607. "smallChannelName": "纯三专海尔成套专卖类",
  3608. "mdmFlag": 1,
  3609. "zhaobMoney": 0,
  3610. "zhaobCount": 0,
  3611. "signCount": 0,
  3612. "partnershipDomainALL": null,
  3613. "partnershipDomainPL011": null,
  3614. "partnershipDomainPL005": null,
  3615. "partnershipDomainPL002": null,
  3616. "partnershipDomainPL001": null,
  3617. "partnershipDomainSPL007": null,
  3618. "partnershipDomainSPL006": null,
  3619. "partnershipDomainPL003": null,
  3620. "partnershipDomainPL007": null,
  3621. "partnershipDomainPL006": null,
  3622. "potentialList": [],
  3623. "qzType": 0,
  3624. "qzFlag": 0,
  3625. "enterpriseId": null,
  3626. "nowZhaobMoneyD": 0,
  3627. "historyZhaobMoneyD": 0,
  3628. "nowZhaobMoney": "0",
  3629. "historyZhaobMoney": "0",
  3630. "collaborationChanges": null,
  3631. "collaborationChangesReduce": null,
  3632. "partnerType": null,
  3633. "partnerTypeCode": null,
  3634. "oneYearZhongbD": 0,
  3635. "historyZhongbD": 0,
  3636. "oneYearZhongb": "0",
  3637. "historyZhongb": "0",
  3638. "shareUserCode": null,
  3639. "shareUserName": null,
  3640. "pcShareUserName": null,
  3641. "legalPerson": null,
  3642. "registerDate": null,
  3643. "registerAmount": null,
  3644. "address": null,
  3645. "partnershipList": [],
  3646. "certificateList": [],
  3647. "partnership": "空白",
  3648. "pcList": [
  3649. {
  3650. "dataCode": "空白",
  3651. "dataName": "全产业",
  3652. "tagCode": null
  3653. }
  3654. ],
  3655. "pcChangeList": [],
  3656. "importDate": "2024-07-30 16:42:44",
  3657. "createByDate": "2024-07-31 02:50:01",
  3658. "sevenDayCreateTag": null,
  3659. "linkSize": 0
  3660. },
  3661. {
  3662. "id": "2024122563373627",
  3663. "center": "长沙",
  3664. "areaCode": "M4301",
  3665. "areaName": "长沙小微",
  3666. "city": "怀化市",
  3667. "partScale": 0,
  3668. "zbMoney": 0,
  3669. "custName": "沅陵县德天家用电器有限公司",
  3670. "custCode": "8800606719",
  3671. "officeAddr": "湖南省怀化市沅陵县沅陵镇黄花溶凤凰景城16栋109号",
  3672. "industryStr": null,
  3673. "brandStr": null,
  3674. "partUserCount": "0",
  3675. "centerCode": "12403",
  3676. "notAuthCenter": null,
  3677. "cityCode": "431200000000",
  3678. "bigChannelCode": "M",
  3679. "bigChannelName": "直营渠道",
  3680. "smallChannelCode": "HA001",
  3681. "smallChannelName": "纯三专海尔成套专卖类",
  3682. "mdmFlag": 1,
  3683. "zhaobMoney": 0,
  3684. "zhaobCount": 0,
  3685. "signCount": 0,
  3686. "partnershipDomainALL": null,
  3687. "partnershipDomainPL011": null,
  3688. "partnershipDomainPL005": null,
  3689. "partnershipDomainPL002": null,
  3690. "partnershipDomainPL001": null,
  3691. "partnershipDomainSPL007": null,
  3692. "partnershipDomainSPL006": null,
  3693. "partnershipDomainPL003": null,
  3694. "partnershipDomainPL007": null,
  3695. "partnershipDomainPL006": null,
  3696. "potentialList": [],
  3697. "qzType": 0,
  3698. "qzFlag": 0,
  3699. "enterpriseId": null,
  3700. "nowZhaobMoneyD": 0,
  3701. "historyZhaobMoneyD": 0,
  3702. "nowZhaobMoney": "0",
  3703. "historyZhaobMoney": "0",
  3704. "collaborationChanges": null,
  3705. "collaborationChangesReduce": null,
  3706. "partnerType": null,
  3707. "partnerTypeCode": null,
  3708. "oneYearZhongbD": 0,
  3709. "historyZhongbD": 0,
  3710. "oneYearZhongb": "0",
  3711. "historyZhongb": "0",
  3712. "shareUserCode": null,
  3713. "shareUserName": null,
  3714. "pcShareUserName": null,
  3715. "legalPerson": null,
  3716. "registerDate": null,
  3717. "registerAmount": null,
  3718. "address": null,
  3719. "partnershipList": [],
  3720. "certificateList": [],
  3721. "partnership": "空白",
  3722. "pcList": [
  3723. {
  3724. "dataCode": "空白",
  3725. "dataName": "全产业",
  3726. "tagCode": null
  3727. }
  3728. ],
  3729. "pcChangeList": [],
  3730. "importDate": "2024-12-25 11:54:17",
  3731. "createByDate": "2024-12-26 02:50:04",
  3732. "sevenDayCreateTag": null,
  3733. "linkSize": 0
  3734. },
  3735. {
  3736. "id": "2024012249774503",
  3737. "center": "长沙",
  3738. "areaCode": "M4301",
  3739. "areaName": "长沙小微",
  3740. "city": "常德市",
  3741. "partScale": 0,
  3742. "zbMoney": 0,
  3743. "custName": "常德市鼎城区双雄家电销售有限公司武陵区南坪街道家居产业园海尔综合店",
  3744. "custCode": "8800556200",
  3745. "officeAddr": "常德市武陵区家居产业园家饰城15栋2楼",
  3746. "industryStr": null,
  3747. "brandStr": null,
  3748. "partUserCount": "0",
  3749. "centerCode": "12403",
  3750. "notAuthCenter": null,
  3751. "cityCode": "430700000000",
  3752. "bigChannelCode": "M",
  3753. "bigChannelName": "直营渠道",
  3754. "smallChannelCode": "HA001",
  3755. "smallChannelName": "纯三专海尔成套专卖类",
  3756. "mdmFlag": 1,
  3757. "zhaobMoney": 0,
  3758. "zhaobCount": 0,
  3759. "signCount": 0,
  3760. "partnershipDomainALL": null,
  3761. "partnershipDomainPL011": null,
  3762. "partnershipDomainPL005": null,
  3763. "partnershipDomainPL002": null,
  3764. "partnershipDomainPL001": null,
  3765. "partnershipDomainSPL007": null,
  3766. "partnershipDomainSPL006": null,
  3767. "partnershipDomainPL003": null,
  3768. "partnershipDomainPL007": null,
  3769. "partnershipDomainPL006": null,
  3770. "potentialList": [],
  3771. "qzType": 0,
  3772. "qzFlag": 0,
  3773. "enterpriseId": null,
  3774. "nowZhaobMoneyD": 0,
  3775. "historyZhaobMoneyD": 0,
  3776. "nowZhaobMoney": "0",
  3777. "historyZhaobMoney": "0",
  3778. "collaborationChanges": null,
  3779. "collaborationChangesReduce": null,
  3780. "partnerType": null,
  3781. "partnerTypeCode": null,
  3782. "oneYearZhongbD": 0,
  3783. "historyZhongbD": 0,
  3784. "oneYearZhongb": "0",
  3785. "historyZhongb": "0",
  3786. "shareUserCode": null,
  3787. "shareUserName": null,
  3788. "pcShareUserName": null,
  3789. "legalPerson": null,
  3790. "registerDate": null,
  3791. "registerAmount": null,
  3792. "address": null,
  3793. "partnershipList": [],
  3794. "certificateList": [],
  3795. "partnership": "空白",
  3796. "pcList": [
  3797. {
  3798. "dataCode": "空白",
  3799. "dataName": "全产业",
  3800. "tagCode": null
  3801. }
  3802. ],
  3803. "pcChangeList": [],
  3804. "importDate": "2024-01-22 10:58:53",
  3805. "createByDate": "2024-01-23 02:50:01",
  3806. "sevenDayCreateTag": null,
  3807. "linkSize": 0
  3808. },
  3809. {
  3810. "id": "2022022401163294",
  3811. "center": "长沙",
  3812. "areaCode": "M4301",
  3813. "areaName": "长沙小微",
  3814. "city": null,
  3815. "partScale": 0,
  3816. "zbMoney": 0,
  3817. "custName": "(押金户)湖南达仨江暖通工程有限公司",
  3818. "custCode": "C200149051",
  3819. "officeAddr": "长沙市开福区捞刀河街道中岭社区彭家巷龙塘小区C6栋3单元301号房",
  3820. "industryStr": null,
  3821. "brandStr": null,
  3822. "partUserCount": "0",
  3823. "centerCode": "12403",
  3824. "notAuthCenter": null,
  3825. "cityCode": "",
  3826. "bigChannelCode": "M",
  3827. "bigChannelName": "直营渠道",
  3828. "smallChannelCode": "HA007",
  3829. "smallChannelName": "纯三专工程类",
  3830. "mdmFlag": 1,
  3831. "zhaobMoney": 0,
  3832. "zhaobCount": 0,
  3833. "signCount": 0,
  3834. "partnershipDomainALL": null,
  3835. "partnershipDomainPL011": null,
  3836. "partnershipDomainPL005": null,
  3837. "partnershipDomainPL002": null,
  3838. "partnershipDomainPL001": null,
  3839. "partnershipDomainSPL007": null,
  3840. "partnershipDomainSPL006": null,
  3841. "partnershipDomainPL003": null,
  3842. "partnershipDomainPL007": null,
  3843. "partnershipDomainPL006": null,
  3844. "potentialList": [],
  3845. "qzType": 0,
  3846. "qzFlag": 0,
  3847. "enterpriseId": null,
  3848. "nowZhaobMoneyD": 0,
  3849. "historyZhaobMoneyD": 0,
  3850. "nowZhaobMoney": "0",
  3851. "historyZhaobMoney": "0",
  3852. "collaborationChanges": null,
  3853. "collaborationChangesReduce": null,
  3854. "partnerType": null,
  3855. "partnerTypeCode": null,
  3856. "oneYearZhongbD": 0,
  3857. "historyZhongbD": 0,
  3858. "oneYearZhongb": "0",
  3859. "historyZhongb": "0",
  3860. "shareUserCode": null,
  3861. "shareUserName": null,
  3862. "pcShareUserName": null,
  3863. "legalPerson": null,
  3864. "registerDate": null,
  3865. "registerAmount": null,
  3866. "address": null,
  3867. "partnershipList": [],
  3868. "certificateList": [],
  3869. "partnership": "空白",
  3870. "pcList": [
  3871. {
  3872. "dataCode": "空白",
  3873. "dataName": "全产业",
  3874. "tagCode": null
  3875. }
  3876. ],
  3877. "pcChangeList": [],
  3878. "importDate": "2022-02-24 00:00:00",
  3879. "createByDate": "2023-11-23 18:40:44",
  3880. "sevenDayCreateTag": null,
  3881. "linkSize": 0
  3882. },
  3883. {
  3884. "id": "2025112470719737",
  3885. "center": "长沙",
  3886. "areaCode": "M4301",
  3887. "areaName": "长沙小微",
  3888. "city": null,
  3889. "partScale": 0,
  3890. "zbMoney": 0,
  3891. "custName": "长沙顺逛电器贸易有限公司",
  3892. "custCode": "8800657046",
  3893. "officeAddr": "湖南省长沙市芙蓉区湘湖街道三湘南湖大市场家电城4栋1楼9-10号门面",
  3894. "industryStr": null,
  3895. "brandStr": null,
  3896. "partUserCount": "0",
  3897. "centerCode": "12403",
  3898. "notAuthCenter": null,
  3899. "cityCode": null,
  3900. "bigChannelCode": "M",
  3901. "bigChannelName": "直营渠道",
  3902. "smallChannelCode": "HA001",
  3903. "smallChannelName": "纯三专海尔成套专卖类",
  3904. "mdmFlag": 1,
  3905. "zhaobMoney": 0,
  3906. "zhaobCount": 0,
  3907. "signCount": 0,
  3908. "partnershipDomainALL": null,
  3909. "partnershipDomainPL011": null,
  3910. "partnershipDomainPL005": null,
  3911. "partnershipDomainPL002": null,
  3912. "partnershipDomainPL001": null,
  3913. "partnershipDomainSPL007": null,
  3914. "partnershipDomainSPL006": null,
  3915. "partnershipDomainPL003": null,
  3916. "partnershipDomainPL007": null,
  3917. "partnershipDomainPL006": null,
  3918. "potentialList": [],
  3919. "qzType": 0,
  3920. "qzFlag": 0,
  3921. "enterpriseId": null,
  3922. "nowZhaobMoneyD": 0,
  3923. "historyZhaobMoneyD": 0,
  3924. "nowZhaobMoney": "0",
  3925. "historyZhaobMoney": "0",
  3926. "collaborationChanges": null,
  3927. "collaborationChangesReduce": null,
  3928. "partnerType": null,
  3929. "partnerTypeCode": null,
  3930. "oneYearZhongbD": 0,
  3931. "historyZhongbD": 0,
  3932. "oneYearZhongb": "0",
  3933. "historyZhongb": "0",
  3934. "shareUserCode": null,
  3935. "shareUserName": null,
  3936. "pcShareUserName": null,
  3937. "legalPerson": null,
  3938. "registerDate": null,
  3939. "registerAmount": null,
  3940. "address": null,
  3941. "partnershipList": [],
  3942. "certificateList": [],
  3943. "partnership": "空白",
  3944. "pcList": [
  3945. {
  3946. "dataCode": "空白",
  3947. "dataName": "全产业",
  3948. "tagCode": null
  3949. }
  3950. ],
  3951. "pcChangeList": [],
  3952. "importDate": "2025-11-24 13:32:37",
  3953. "createByDate": "2025-11-25 04:50:02",
  3954. "sevenDayCreateTag": null,
  3955. "linkSize": 0
  3956. },
  3957. {
  3958. "id": "2025121089743082",
  3959. "center": "长沙",
  3960. "areaCode": "M4301",
  3961. "areaName": "长沙小微",
  3962. "city": null,
  3963. "partScale": 0,
  3964. "zbMoney": 0,
  3965. "custName": "郴州群创贸易有限公司",
  3966. "custCode": "8800659267",
  3967. "officeAddr": "湖南省郴州市北湖区郴江街道郴州大道1197号湘南大市场30栋118",
  3968. "industryStr": null,
  3969. "brandStr": null,
  3970. "partUserCount": "0",
  3971. "centerCode": "12403",
  3972. "notAuthCenter": null,
  3973. "cityCode": null,
  3974. "bigChannelCode": "M",
  3975. "bigChannelName": "直营渠道",
  3976. "smallChannelCode": "HA009",
  3977. "smallChannelName": "纯三专海尔产品专卖类(净水)",
  3978. "mdmFlag": 1,
  3979. "zhaobMoney": 0,
  3980. "zhaobCount": 0,
  3981. "signCount": 0,
  3982. "partnershipDomainALL": null,
  3983. "partnershipDomainPL011": null,
  3984. "partnershipDomainPL005": null,
  3985. "partnershipDomainPL002": null,
  3986. "partnershipDomainPL001": null,
  3987. "partnershipDomainSPL007": null,
  3988. "partnershipDomainSPL006": null,
  3989. "partnershipDomainPL003": null,
  3990. "partnershipDomainPL007": null,
  3991. "partnershipDomainPL006": null,
  3992. "potentialList": [],
  3993. "qzType": 0,
  3994. "qzFlag": 0,
  3995. "enterpriseId": null,
  3996. "nowZhaobMoneyD": 0,
  3997. "historyZhaobMoneyD": 0,
  3998. "nowZhaobMoney": "0",
  3999. "historyZhaobMoney": "0",
  4000. "collaborationChanges": null,
  4001. "collaborationChangesReduce": null,
  4002. "partnerType": null,
  4003. "partnerTypeCode": null,
  4004. "oneYearZhongbD": 0,
  4005. "historyZhongbD": 0,
  4006. "oneYearZhongb": "0",
  4007. "historyZhongb": "0",
  4008. "shareUserCode": null,
  4009. "shareUserName": null,
  4010. "pcShareUserName": null,
  4011. "legalPerson": null,
  4012. "registerDate": null,
  4013. "registerAmount": null,
  4014. "address": null,
  4015. "partnershipList": [],
  4016. "certificateList": [],
  4017. "partnership": "空白",
  4018. "pcList": [
  4019. {
  4020. "dataCode": "空白",
  4021. "dataName": "全产业",
  4022. "tagCode": null
  4023. }
  4024. ],
  4025. "pcChangeList": [],
  4026. "importDate": "2025-12-10 18:59:26",
  4027. "createByDate": "2025-12-11 04:50:02",
  4028. "sevenDayCreateTag": "7天内新增",
  4029. "linkSize": 0
  4030. },
  4031. {
  4032. "id": "2021072663369052",
  4033. "center": "长沙",
  4034. "areaCode": "M4301",
  4035. "areaName": "长沙小微",
  4036. "city": "湘西土家族苗族自治州",
  4037. "partScale": 0,
  4038. "zbMoney": 0,
  4039. "custName": "吉首市双祥电器销售有限责任公司乾州量子店",
  4040. "custCode": "8800427679",
  4041. "officeAddr": "湘西土家族苗族自治州吉首市华商国际城119号门面",
  4042. "industryStr": null,
  4043. "brandStr": null,
  4044. "partUserCount": "0",
  4045. "centerCode": "12403",
  4046. "notAuthCenter": null,
  4047. "cityCode": "433100000000",
  4048. "bigChannelCode": "M",
  4049. "bigChannelName": "直营渠道",
  4050. "smallChannelCode": "HA001",
  4051. "smallChannelName": "纯三专海尔成套专卖类",
  4052. "mdmFlag": 1,
  4053. "zhaobMoney": 0,
  4054. "zhaobCount": 0,
  4055. "signCount": 0,
  4056. "partnershipDomainALL": null,
  4057. "partnershipDomainPL011": null,
  4058. "partnershipDomainPL005": null,
  4059. "partnershipDomainPL002": null,
  4060. "partnershipDomainPL001": null,
  4061. "partnershipDomainSPL007": null,
  4062. "partnershipDomainSPL006": null,
  4063. "partnershipDomainPL003": null,
  4064. "partnershipDomainPL007": null,
  4065. "partnershipDomainPL006": null,
  4066. "potentialList": [],
  4067. "qzType": 0,
  4068. "qzFlag": 0,
  4069. "enterpriseId": null,
  4070. "nowZhaobMoneyD": 0,
  4071. "historyZhaobMoneyD": 0,
  4072. "nowZhaobMoney": "0",
  4073. "historyZhaobMoney": "0",
  4074. "collaborationChanges": null,
  4075. "collaborationChangesReduce": null,
  4076. "partnerType": null,
  4077. "partnerTypeCode": null,
  4078. "oneYearZhongbD": 0,
  4079. "historyZhongbD": 0,
  4080. "oneYearZhongb": "0",
  4081. "historyZhongb": "0",
  4082. "shareUserCode": null,
  4083. "shareUserName": null,
  4084. "pcShareUserName": null,
  4085. "legalPerson": null,
  4086. "registerDate": null,
  4087. "registerAmount": null,
  4088. "address": null,
  4089. "partnershipList": [],
  4090. "certificateList": [],
  4091. "partnership": "空白",
  4092. "pcList": [
  4093. {
  4094. "dataCode": "空白",
  4095. "dataName": "全产业",
  4096. "tagCode": null
  4097. }
  4098. ],
  4099. "pcChangeList": [],
  4100. "importDate": "2021-07-26 00:00:00",
  4101. "createByDate": "2023-11-28 02:51:41",
  4102. "sevenDayCreateTag": null,
  4103. "linkSize": 0
  4104. },
  4105. {
  4106. "id": "2020113009649204",
  4107. "center": "长沙",
  4108. "areaCode": "M4301",
  4109. "areaName": "长沙小微",
  4110. "city": "长沙市",
  4111. "partScale": 29.41,
  4112. "zbMoney": 24.91,
  4113. "custName": "湖南湘众智能工程有限公司",
  4114. "custCode": "8800390927",
  4115. "officeAddr": "湖南省长沙市天心区芙蓉南路二段生活艺术城12栋105房",
  4116. "industryStr": null,
  4117. "brandStr": null,
  4118. "partUserCount": "2",
  4119. "centerCode": "12403",
  4120. "notAuthCenter": null,
  4121. "cityCode": "430100000000",
  4122. "bigChannelCode": "M",
  4123. "bigChannelName": "直营渠道",
  4124. "smallChannelCode": "HA007",
  4125. "smallChannelName": "纯三专工程类",
  4126. "mdmFlag": 1,
  4127. "zhaobMoney": 473.91,
  4128. "zhaobCount": 1,
  4129. "signCount": 3,
  4130. "partnershipDomainALL": null,
  4131. "partnershipDomainPL011": null,
  4132. "partnershipDomainPL005": null,
  4133. "partnershipDomainPL002": null,
  4134. "partnershipDomainPL001": null,
  4135. "partnershipDomainSPL007": null,
  4136. "partnershipDomainSPL006": null,
  4137. "partnershipDomainPL003": null,
  4138. "partnershipDomainPL007": null,
  4139. "partnershipDomainPL006": null,
  4140. "potentialList": [
  4141. {
  4142. "dataCode": "高",
  4143. "dataName": "家用空调",
  4144. "tagCode": null
  4145. },
  4146. {
  4147. "dataCode": "高",
  4148. "dataName": "智慧楼宇",
  4149. "tagCode": null
  4150. },
  4151. {
  4152. "dataCode": "高",
  4153. "dataName": "水联网",
  4154. "tagCode": null
  4155. }
  4156. ],
  4157. "qzType": 0,
  4158. "qzFlag": 2,
  4159. "enterpriseId": 1996776178172899300,
  4160. "nowZhaobMoneyD": 0,
  4161. "historyZhaobMoneyD": 0,
  4162. "nowZhaobMoney": "0",
  4163. "historyZhaobMoney": "0",
  4164. "collaborationChanges": null,
  4165. "collaborationChangesReduce": null,
  4166. "partnerType": "企业",
  4167. "partnerTypeCode": "91",
  4168. "oneYearZhongbD": 0,
  4169. "historyZhongbD": 474,
  4170. "oneYearZhongb": "0",
  4171. "historyZhongb": "474",
  4172. "shareUserCode": null,
  4173. "shareUserName": null,
  4174. "pcShareUserName": null,
  4175. "legalPerson": "向洪锋",
  4176. "registerDate": "2019",
  4177. "registerAmount": "208万人民币",
  4178. "address": "湖南省长沙市天心区芙蓉南路二段生活艺术城12栋105房",
  4179. "partnershipList": [],
  4180. "certificateList": [],
  4181. "partnership": "空白",
  4182. "pcList": [
  4183. {
  4184. "dataCode": "空白",
  4185. "dataName": "全产业",
  4186. "tagCode": null
  4187. },
  4188. {
  4189. "dataCode": "高",
  4190. "dataName": "家用空调",
  4191. "tagCode": null
  4192. },
  4193. {
  4194. "dataCode": "高",
  4195. "dataName": "智慧楼宇",
  4196. "tagCode": null
  4197. },
  4198. {
  4199. "dataCode": "高",
  4200. "dataName": "水联网",
  4201. "tagCode": null
  4202. }
  4203. ],
  4204. "pcChangeList": [],
  4205. "importDate": "2020-11-30 00:00:00",
  4206. "createByDate": "2023-11-23 18:41:25",
  4207. "sevenDayCreateTag": null,
  4208. "linkSize": 0
  4209. },
  4210. {
  4211. "id": "2021081709788983",
  4212. "center": "长沙",
  4213. "areaCode": "M4301",
  4214. "areaName": "长沙小微",
  4215. "city": null,
  4216. "partScale": 0,
  4217. "zbMoney": 0,
  4218. "custName": "岳阳金鞍电器有限公司居然之家冰冷体验店",
  4219. "custCode": "8800431073",
  4220. "officeAddr": "岳阳市云溪区中南街道居然之家一楼1021至1022",
  4221. "industryStr": null,
  4222. "brandStr": null,
  4223. "partUserCount": "0",
  4224. "centerCode": "12403",
  4225. "notAuthCenter": null,
  4226. "cityCode": null,
  4227. "bigChannelCode": "M",
  4228. "bigChannelName": "直营渠道",
  4229. "smallChannelCode": "HA001",
  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": "2021-08-17 14:33:15",
  4280. "createByDate": "2023-11-23 18:40:59",
  4281. "sevenDayCreateTag": null,
  4282. "linkSize": 0
  4283. },
  4284. {
  4285. "id": "2019042381556088",
  4286. "center": "长沙",
  4287. "areaCode": "M4301",
  4288. "areaName": "长沙小微",
  4289. "city": "长沙市",
  4290. "partScale": 1321.04,
  4291. "zbMoney": 96.48,
  4292. "custName": "湖南嘉亿科技有限公司",
  4293. "custCode": "8800323166",
  4294. "officeAddr": "湖南省长沙市岳麓区观沙岭街道潇湘北路三段889号江汇苑第2栋1706号房",
  4295. "industryStr": "商用空调(1)",
  4296. "brandStr": "海尔",
  4297. "partUserCount": "4",
  4298. "centerCode": "12403",
  4299. "notAuthCenter": null,
  4300. "cityCode": "430100000000",
  4301. "bigChannelCode": "M",
  4302. "bigChannelName": "直营渠道",
  4303. "smallChannelCode": "HA007",
  4304. "smallChannelName": "纯三专工程类",
  4305. "mdmFlag": 1,
  4306. "zhaobMoney": 96.48,
  4307. "zhaobCount": 2,
  4308. "signCount": 0,
  4309. "partnershipDomainALL": "1",
  4310. "partnershipDomainPL011": "1",
  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": 1899641414982642400,
  4323. "nowZhaobMoneyD": 0,
  4324. "historyZhaobMoneyD": 1321,
  4325. "nowZhaobMoney": "0",
  4326. "historyZhaobMoney": "1,321",
  4327. "collaborationChanges": null,
  4328. "collaborationChangesReduce": null,
  4329. "partnerType": "企业",
  4330. "partnerTypeCode": "91",
  4331. "oneYearZhongbD": 0,
  4332. "historyZhongbD": 96,
  4333. "oneYearZhongb": "0",
  4334. "historyZhongb": "96",
  4335. "shareUserCode": "01291311",
  4336. "shareUserName": "袁超",
  4337. "pcShareUserName": "袁超(智慧楼宇)、谭州(厨电)",
  4338. "legalPerson": "黄建斌",
  4339. "registerDate": "2014",
  4340. "registerAmount": "2000万元人民币",
  4341. "address": "湖南省长沙市岳麓区观沙岭街道潇湘北路三段808号启迪协信商业中心5栋1717",
  4342. "partnershipList": [],
  4343. "certificateList": [],
  4344. "partnership": "空白",
  4345. "pcList": [
  4346. {
  4347. "dataCode": "空白",
  4348. "dataName": "全产业",
  4349. "tagCode": null
  4350. }
  4351. ],
  4352. "pcChangeList": [
  4353. {
  4354. "dataCode": "降103万",
  4355. "dataName": "全产业",
  4356. "tagCode": "1"
  4357. },
  4358. {
  4359. "dataCode": "降103万",
  4360. "dataName": "智慧楼宇",
  4361. "tagCode": "1"
  4362. }
  4363. ],
  4364. "importDate": "2019-04-23 00:00:00",
  4365. "createByDate": "2023-11-23 18:42:32",
  4366. "sevenDayCreateTag": null,
  4367. "linkSize": 0
  4368. },
  4369. {
  4370. "id": "2018110923350342",
  4371. "center": "长沙",
  4372. "areaCode": "M4301",
  4373. "areaName": "长沙小微",
  4374. "city": null,
  4375. "partScale": 0,
  4376. "zbMoney": 0,
  4377. "custName": "岳阳市新宏达电器有限公司(顺逛专户)",
  4378. "custCode": "C200090104",
  4379. "officeAddr": "岳阳楼区桥西菜园坡路78号原石油公司家属区4栋602室",
  4380. "industryStr": null,
  4381. "brandStr": null,
  4382. "partUserCount": "0",
  4383. "centerCode": "12403",
  4384. "notAuthCenter": null,
  4385. "cityCode": null,
  4386. "bigChannelCode": "M",
  4387. "bigChannelName": "直营渠道",
  4388. "smallChannelCode": "HM001",
  4389. "smallChannelName": "准三专海尔百货商场类",
  4390. "mdmFlag": 1,
  4391. "zhaobMoney": 0,
  4392. "zhaobCount": 0,
  4393. "signCount": 0,
  4394. "partnershipDomainALL": null,
  4395. "partnershipDomainPL011": null,
  4396. "partnershipDomainPL005": null,
  4397. "partnershipDomainPL002": null,
  4398. "partnershipDomainPL001": null,
  4399. "partnershipDomainSPL007": null,
  4400. "partnershipDomainSPL006": null,
  4401. "partnershipDomainPL003": null,
  4402. "partnershipDomainPL007": null,
  4403. "partnershipDomainPL006": null,
  4404. "potentialList": [],
  4405. "qzType": 0,
  4406. "qzFlag": 0,
  4407. "enterpriseId": null,
  4408. "nowZhaobMoneyD": 0,
  4409. "historyZhaobMoneyD": 0,
  4410. "nowZhaobMoney": "0",
  4411. "historyZhaobMoney": "0",
  4412. "collaborationChanges": null,
  4413. "collaborationChangesReduce": null,
  4414. "partnerType": null,
  4415. "partnerTypeCode": null,
  4416. "oneYearZhongbD": 0,
  4417. "historyZhongbD": 0,
  4418. "oneYearZhongb": "0",
  4419. "historyZhongb": "0",
  4420. "shareUserCode": null,
  4421. "shareUserName": null,
  4422. "pcShareUserName": null,
  4423. "legalPerson": null,
  4424. "registerDate": null,
  4425. "registerAmount": null,
  4426. "address": null,
  4427. "partnershipList": [],
  4428. "certificateList": [],
  4429. "partnership": "空白",
  4430. "pcList": [
  4431. {
  4432. "dataCode": "空白",
  4433. "dataName": "全产业",
  4434. "tagCode": null
  4435. }
  4436. ],
  4437. "pcChangeList": [],
  4438. "importDate": "2018-11-09 13:16:07",
  4439. "createByDate": "2023-11-23 18:48:09",
  4440. "sevenDayCreateTag": null,
  4441. "linkSize": 0
  4442. },
  4443. {
  4444. "id": "2014063093676586",
  4445. "center": "长沙",
  4446. "areaCode": "M4301",
  4447. "areaName": "长沙小微",
  4448. "city": null,
  4449. "partScale": 0,
  4450. "zbMoney": 0,
  4451. "custName": "宁远县幸福贸易有限公司国税店",
  4452. "custCode": "8800170816",
  4453. "officeAddr": "宁远县九嶷路",
  4454. "industryStr": null,
  4455. "brandStr": null,
  4456. "partUserCount": "0",
  4457. "centerCode": "12403",
  4458. "notAuthCenter": null,
  4459. "cityCode": null,
  4460. "bigChannelCode": "M",
  4461. "bigChannelName": "直营渠道",
  4462. "smallChannelCode": "HA001",
  4463. "smallChannelName": "纯三专海尔成套专卖类",
  4464. "mdmFlag": 1,
  4465. "zhaobMoney": 0,
  4466. "zhaobCount": 0,
  4467. "signCount": 0,
  4468. "partnershipDomainALL": null,
  4469. "partnershipDomainPL011": null,
  4470. "partnershipDomainPL005": null,
  4471. "partnershipDomainPL002": null,
  4472. "partnershipDomainPL001": null,
  4473. "partnershipDomainSPL007": null,
  4474. "partnershipDomainSPL006": null,
  4475. "partnershipDomainPL003": null,
  4476. "partnershipDomainPL007": null,
  4477. "partnershipDomainPL006": null,
  4478. "potentialList": [],
  4479. "qzType": 0,
  4480. "qzFlag": 0,
  4481. "enterpriseId": null,
  4482. "nowZhaobMoneyD": 0,
  4483. "historyZhaobMoneyD": 0,
  4484. "nowZhaobMoney": "0",
  4485. "historyZhaobMoney": "0",
  4486. "collaborationChanges": null,
  4487. "collaborationChangesReduce": null,
  4488. "partnerType": null,
  4489. "partnerTypeCode": null,
  4490. "oneYearZhongbD": 0,
  4491. "historyZhongbD": 0,
  4492. "oneYearZhongb": "0",
  4493. "historyZhongb": "0",
  4494. "shareUserCode": null,
  4495. "shareUserName": null,
  4496. "pcShareUserName": null,
  4497. "legalPerson": null,
  4498. "registerDate": null,
  4499. "registerAmount": null,
  4500. "address": null,
  4501. "partnershipList": [],
  4502. "certificateList": [],
  4503. "partnership": "空白",
  4504. "pcList": [
  4505. {
  4506. "dataCode": "空白",
  4507. "dataName": "全产业",
  4508. "tagCode": null
  4509. }
  4510. ],
  4511. "pcChangeList": [],
  4512. "importDate": "2014-06-30 00:00:00",
  4513. "createByDate": "2023-11-23 18:44:52",
  4514. "sevenDayCreateTag": null,
  4515. "linkSize": 0
  4516. },
  4517. {
  4518. "id": "2017092702560419",
  4519. "center": "长沙",
  4520. "areaCode": "M4301",
  4521. "areaName": "长沙小微",
  4522. "city": null,
  4523. "partScale": 0,
  4524. "zbMoney": 0,
  4525. "custName": "(押金户)湖南泽德智能科技有限公司",
  4526. "custCode": "C200131679",
  4527. "officeAddr": "长沙市望城区高塘岭街道莲湖新村5栋1号门面",
  4528. "industryStr": null,
  4529. "brandStr": null,
  4530. "partUserCount": "0",
  4531. "centerCode": "12403",
  4532. "notAuthCenter": null,
  4533. "cityCode": null,
  4534. "bigChannelCode": "M",
  4535. "bigChannelName": "直营渠道",
  4536. "smallChannelCode": "HA001",
  4537. "smallChannelName": "纯三专海尔成套专卖类",
  4538. "mdmFlag": 1,
  4539. "zhaobMoney": 0,
  4540. "zhaobCount": 0,
  4541. "signCount": 0,
  4542. "partnershipDomainALL": null,
  4543. "partnershipDomainPL011": null,
  4544. "partnershipDomainPL005": null,
  4545. "partnershipDomainPL002": null,
  4546. "partnershipDomainPL001": null,
  4547. "partnershipDomainSPL007": null,
  4548. "partnershipDomainSPL006": null,
  4549. "partnershipDomainPL003": null,
  4550. "partnershipDomainPL007": null,
  4551. "partnershipDomainPL006": null,
  4552. "potentialList": [],
  4553. "qzType": 0,
  4554. "qzFlag": 0,
  4555. "enterpriseId": null,
  4556. "nowZhaobMoneyD": 0,
  4557. "historyZhaobMoneyD": 0,
  4558. "nowZhaobMoney": "0",
  4559. "historyZhaobMoney": "0",
  4560. "collaborationChanges": null,
  4561. "collaborationChangesReduce": null,
  4562. "partnerType": null,
  4563. "partnerTypeCode": null,
  4564. "oneYearZhongbD": 0,
  4565. "historyZhongbD": 0,
  4566. "oneYearZhongb": "0",
  4567. "historyZhongb": "0",
  4568. "shareUserCode": null,
  4569. "shareUserName": null,
  4570. "pcShareUserName": null,
  4571. "legalPerson": null,
  4572. "registerDate": null,
  4573. "registerAmount": null,
  4574. "address": null,
  4575. "partnershipList": [],
  4576. "certificateList": [],
  4577. "partnership": "空白",
  4578. "pcList": [
  4579. {
  4580. "dataCode": "空白",
  4581. "dataName": "全产业",
  4582. "tagCode": null
  4583. }
  4584. ],
  4585. "pcChangeList": [],
  4586. "importDate": "2017-09-27 17:39:22",
  4587. "createByDate": "2023-11-23 18:47:55",
  4588. "sevenDayCreateTag": null,
  4589. "linkSize": 0
  4590. },
  4591. {
  4592. "id": "1760582678542483458",
  4593. "center": "长沙",
  4594. "areaCode": "M4301",
  4595. "areaName": "长沙小微",
  4596. "city": "邵阳市",
  4597. "partScale": 0,
  4598. "zbMoney": 2605.56,
  4599. "custName": "湖南惠通环境工程有限公司",
  4600. "custCode": "8800623526",
  4601. "officeAddr": "湖南省长沙市芙蓉区荷花园街道远大一路280号湘域相遇商务广场B座2408房",
  4602. "industryStr": null,
  4603. "brandStr": null,
  4604. "partUserCount": "12",
  4605. "centerCode": "12403",
  4606. "notAuthCenter": null,
  4607. "cityCode": "430500000000",
  4608. "bigChannelCode": "M",
  4609. "bigChannelName": "直营渠道",
  4610. "smallChannelCode": "HA007",
  4611. "smallChannelName": "纯三专工程类",
  4612. "mdmFlag": 1,
  4613. "zhaobMoney": 1107.02,
  4614. "zhaobCount": 11,
  4615. "signCount": 1,
  4616. "partnershipDomainALL": null,
  4617. "partnershipDomainPL011": null,
  4618. "partnershipDomainPL005": null,
  4619. "partnershipDomainPL002": null,
  4620. "partnershipDomainPL001": null,
  4621. "partnershipDomainSPL007": null,
  4622. "partnershipDomainSPL006": null,
  4623. "partnershipDomainPL003": null,
  4624. "partnershipDomainPL007": null,
  4625. "partnershipDomainPL006": null,
  4626. "potentialList": [
  4627. {
  4628. "dataCode": "高",
  4629. "dataName": "家用空调",
  4630. "tagCode": null
  4631. }
  4632. ],
  4633. "qzType": 0,
  4634. "qzFlag": 2,
  4635. "enterpriseId": 1899641414982718200,
  4636. "nowZhaobMoneyD": 0,
  4637. "historyZhaobMoneyD": 0,
  4638. "nowZhaobMoney": "0",
  4639. "historyZhaobMoney": "0",
  4640. "collaborationChanges": null,
  4641. "collaborationChangesReduce": null,
  4642. "partnerType": null,
  4643. "partnerTypeCode": null,
  4644. "oneYearZhongbD": 230,
  4645. "historyZhongbD": 1107,
  4646. "oneYearZhongb": "230",
  4647. "historyZhongb": "1,107",
  4648. "shareUserCode": "01511109",
  4649. "shareUserName": "张政",
  4650. "pcShareUserName": "张政(空调)",
  4651. "legalPerson": "赵小东",
  4652. "registerDate": "2010",
  4653. "registerAmount": "500万人民币",
  4654. "address": "湖南省长沙市芙蓉区荷花园街道远大一路280号湘域相遇商务广场B座2408房",
  4655. "partnershipList": [
  4656. {
  4657. "dataCode": "发展",
  4658. "dataName": "智慧楼宇",
  4659. "tagCode": "8800623526"
  4660. }
  4661. ],
  4662. "certificateList": [],
  4663. "partnership": "发展",
  4664. "pcList": [
  4665. {
  4666. "dataCode": "发展",
  4667. "dataName": "全产业",
  4668. "tagCode": null
  4669. },
  4670. {
  4671. "dataCode": "发展",
  4672. "dataName": "智慧楼宇",
  4673. "tagCode": "8800623526"
  4674. },
  4675. {
  4676. "dataCode": "高",
  4677. "dataName": "家用空调",
  4678. "tagCode": null
  4679. }
  4680. ],
  4681. "pcChangeList": [],
  4682. "importDate": "2025-03-27 17:35:31",
  4683. "createByDate": "2024-02-22 16:29:55",
  4684. "sevenDayCreateTag": null,
  4685. "linkSize": 0
  4686. },
  4687. {
  4688. "id": "2024042334889460",
  4689. "center": "长沙",
  4690. "areaCode": "M4301",
  4691. "areaName": "长沙小微",
  4692. "city": "怀化市",
  4693. "partScale": 0,
  4694. "zbMoney": 0,
  4695. "custName": "怀化奥荣电器有限公司溆浦县卢峰镇冰冷体验店",
  4696. "custCode": "8800568316",
  4697. "officeAddr": "怀化市溆浦县警予北路75号",
  4698. "industryStr": null,
  4699. "brandStr": null,
  4700. "partUserCount": "0",
  4701. "centerCode": "12403",
  4702. "notAuthCenter": null,
  4703. "cityCode": "431200000000",
  4704. "bigChannelCode": "M",
  4705. "bigChannelName": "直营渠道",
  4706. "smallChannelCode": "HM002",
  4707. "smallChannelName": "准三专海尔家电卖场类",
  4708. "mdmFlag": 1,
  4709. "zhaobMoney": 0,
  4710. "zhaobCount": 0,
  4711. "signCount": 0,
  4712. "partnershipDomainALL": null,
  4713. "partnershipDomainPL011": null,
  4714. "partnershipDomainPL005": null,
  4715. "partnershipDomainPL002": null,
  4716. "partnershipDomainPL001": null,
  4717. "partnershipDomainSPL007": null,
  4718. "partnershipDomainSPL006": null,
  4719. "partnershipDomainPL003": null,
  4720. "partnershipDomainPL007": null,
  4721. "partnershipDomainPL006": null,
  4722. "potentialList": [],
  4723. "qzType": 0,
  4724. "qzFlag": 0,
  4725. "enterpriseId": null,
  4726. "nowZhaobMoneyD": 0,
  4727. "historyZhaobMoneyD": 0,
  4728. "nowZhaobMoney": "0",
  4729. "historyZhaobMoney": "0",
  4730. "collaborationChanges": null,
  4731. "collaborationChangesReduce": null,
  4732. "partnerType": null,
  4733. "partnerTypeCode": null,
  4734. "oneYearZhongbD": 0,
  4735. "historyZhongbD": 0,
  4736. "oneYearZhongb": "0",
  4737. "historyZhongb": "0",
  4738. "shareUserCode": null,
  4739. "shareUserName": null,
  4740. "pcShareUserName": null,
  4741. "legalPerson": null,
  4742. "registerDate": null,
  4743. "registerAmount": null,
  4744. "address": null,
  4745. "partnershipList": [],
  4746. "certificateList": [],
  4747. "partnership": "空白",
  4748. "pcList": [
  4749. {
  4750. "dataCode": "空白",
  4751. "dataName": "全产业",
  4752. "tagCode": null
  4753. }
  4754. ],
  4755. "pcChangeList": [],
  4756. "importDate": "2024-04-23 17:56:35",
  4757. "createByDate": "2024-04-24 02:50:01",
  4758. "sevenDayCreateTag": null,
  4759. "linkSize": 0
  4760. },
  4761. {
  4762. "id": "2019091999209204",
  4763. "center": "长沙",
  4764. "areaCode": "M4301",
  4765. "areaName": "长沙小微",
  4766. "city": "湘西土家族苗族自治州",
  4767. "partScale": 0,
  4768. "zbMoney": 0,
  4769. "custName": "龙山县兴发电器有限责任公司新建西路店",
  4770. "custCode": "8800340154",
  4771. "officeAddr": "湘西土家族苗族自治州龙山县新建西路49号",
  4772. "industryStr": null,
  4773. "brandStr": null,
  4774. "partUserCount": "0",
  4775. "centerCode": "12403",
  4776. "notAuthCenter": null,
  4777. "cityCode": "433100000000",
  4778. "bigChannelCode": "M",
  4779. "bigChannelName": "直营渠道",
  4780. "smallChannelCode": "HM002",
  4781. "smallChannelName": "准三专海尔家电卖场类",
  4782. "mdmFlag": 1,
  4783. "zhaobMoney": 0,
  4784. "zhaobCount": 0,
  4785. "signCount": 0,
  4786. "partnershipDomainALL": null,
  4787. "partnershipDomainPL011": null,
  4788. "partnershipDomainPL005": null,
  4789. "partnershipDomainPL002": null,
  4790. "partnershipDomainPL001": null,
  4791. "partnershipDomainSPL007": null,
  4792. "partnershipDomainSPL006": null,
  4793. "partnershipDomainPL003": null,
  4794. "partnershipDomainPL007": null,
  4795. "partnershipDomainPL006": null,
  4796. "potentialList": [],
  4797. "qzType": 0,
  4798. "qzFlag": 0,
  4799. "enterpriseId": null,
  4800. "nowZhaobMoneyD": 0,
  4801. "historyZhaobMoneyD": 0,
  4802. "nowZhaobMoney": "0",
  4803. "historyZhaobMoney": "0",
  4804. "collaborationChanges": null,
  4805. "collaborationChangesReduce": null,
  4806. "partnerType": null,
  4807. "partnerTypeCode": null,
  4808. "oneYearZhongbD": 0,
  4809. "historyZhongbD": 0,
  4810. "oneYearZhongb": "0",
  4811. "historyZhongb": "0",
  4812. "shareUserCode": null,
  4813. "shareUserName": null,
  4814. "pcShareUserName": null,
  4815. "legalPerson": null,
  4816. "registerDate": null,
  4817. "registerAmount": null,
  4818. "address": null,
  4819. "partnershipList": [],
  4820. "certificateList": [],
  4821. "partnership": "空白",
  4822. "pcList": [
  4823. {
  4824. "dataCode": "空白",
  4825. "dataName": "全产业",
  4826. "tagCode": null
  4827. }
  4828. ],
  4829. "pcChangeList": [],
  4830. "importDate": "2019-09-19 00:00:00",
  4831. "createByDate": "2023-11-23 18:42:15",
  4832. "sevenDayCreateTag": null,
  4833. "linkSize": 0
  4834. },
  4835. {
  4836. "id": "2016081761500804",
  4837. "center": "长沙",
  4838. "areaCode": "M4301",
  4839. "areaName": "长沙小微",
  4840. "city": null,
  4841. "partScale": 0,
  4842. "zbMoney": 0,
  4843. "custName": "(押金户)湖南海萨帝科贸有限公司",
  4844. "custCode": "C200129081",
  4845. "officeAddr": "开福区芙蓉北路街道金泰路199号湘江世纪城富湾国际6幢2802房",
  4846. "industryStr": null,
  4847. "brandStr": null,
  4848. "partUserCount": "0",
  4849. "centerCode": "12403",
  4850. "notAuthCenter": null,
  4851. "cityCode": "",
  4852. "bigChannelCode": "M",
  4853. "bigChannelName": "直营渠道",
  4854. "smallChannelCode": "HA003",
  4855. "smallChannelName": "纯三专海尔产品专卖类(电厨)",
  4856. "mdmFlag": 1,
  4857. "zhaobMoney": 0,
  4858. "zhaobCount": 0,
  4859. "signCount": 0,
  4860. "partnershipDomainALL": null,
  4861. "partnershipDomainPL011": null,
  4862. "partnershipDomainPL005": null,
  4863. "partnershipDomainPL002": null,
  4864. "partnershipDomainPL001": null,
  4865. "partnershipDomainSPL007": null,
  4866. "partnershipDomainSPL006": null,
  4867. "partnershipDomainPL003": null,
  4868. "partnershipDomainPL007": null,
  4869. "partnershipDomainPL006": null,
  4870. "potentialList": [],
  4871. "qzType": 0,
  4872. "qzFlag": 0,
  4873. "enterpriseId": null,
  4874. "nowZhaobMoneyD": 0,
  4875. "historyZhaobMoneyD": 0,
  4876. "nowZhaobMoney": "0",
  4877. "historyZhaobMoney": "0",
  4878. "collaborationChanges": null,
  4879. "collaborationChangesReduce": null,
  4880. "partnerType": null,
  4881. "partnerTypeCode": null,
  4882. "oneYearZhongbD": 0,
  4883. "historyZhongbD": 0,
  4884. "oneYearZhongb": "0",
  4885. "historyZhongb": "0",
  4886. "shareUserCode": null,
  4887. "shareUserName": null,
  4888. "pcShareUserName": null,
  4889. "legalPerson": null,
  4890. "registerDate": null,
  4891. "registerAmount": null,
  4892. "address": null,
  4893. "partnershipList": [],
  4894. "certificateList": [],
  4895. "partnership": "空白",
  4896. "pcList": [
  4897. {
  4898. "dataCode": "空白",
  4899. "dataName": "全产业",
  4900. "tagCode": null
  4901. }
  4902. ],
  4903. "pcChangeList": [],
  4904. "importDate": "2016-08-17 11:20:16",
  4905. "createByDate": "2023-11-23 18:48:45",
  4906. "sevenDayCreateTag": null,
  4907. "linkSize": 0
  4908. },
  4909. {
  4910. "id": "1916406077004476417",
  4911. "center": "长沙",
  4912. "areaCode": "M4301",
  4913. "areaName": "长沙小微",
  4914. "city": "长沙市",
  4915. "partScale": 0,
  4916. "zbMoney": 0,
  4917. "custName": "长沙久鼎环保科技有限公司",
  4918. "custCode": "8800632878",
  4919. "officeAddr": "中国(湖南)自由贸易试验区长沙片区长沙经开区区块人民东路二段189号中部智谷产业园三期第10幢6层16号",
  4920. "industryStr": null,
  4921. "brandStr": null,
  4922. "partUserCount": "1",
  4923. "centerCode": "12403",
  4924. "notAuthCenter": null,
  4925. "cityCode": "430100000000",
  4926. "bigChannelCode": "M",
  4927. "bigChannelName": "直营渠道",
  4928. "smallChannelCode": "HA007",
  4929. "smallChannelName": "纯三专工程类",
  4930. "mdmFlag": 1,
  4931. "zhaobMoney": 0,
  4932. "zhaobCount": 0,
  4933. "signCount": 4,
  4934. "partnershipDomainALL": null,
  4935. "partnershipDomainPL011": null,
  4936. "partnershipDomainPL005": null,
  4937. "partnershipDomainPL002": null,
  4938. "partnershipDomainPL001": null,
  4939. "partnershipDomainSPL007": null,
  4940. "partnershipDomainSPL006": null,
  4941. "partnershipDomainPL003": null,
  4942. "partnershipDomainPL007": null,
  4943. "partnershipDomainPL006": null,
  4944. "potentialList": [],
  4945. "qzType": 0,
  4946. "qzFlag": 0,
  4947. "enterpriseId": null,
  4948. "nowZhaobMoneyD": 0,
  4949. "historyZhaobMoneyD": 0,
  4950. "nowZhaobMoney": "0",
  4951. "historyZhaobMoney": "0",
  4952. "collaborationChanges": null,
  4953. "collaborationChangesReduce": null,
  4954. "partnerType": null,
  4955. "partnerTypeCode": null,
  4956. "oneYearZhongbD": 0,
  4957. "historyZhongbD": 0,
  4958. "oneYearZhongb": "0",
  4959. "historyZhongb": "0",
  4960. "shareUserCode": null,
  4961. "shareUserName": null,
  4962. "pcShareUserName": null,
  4963. "legalPerson": null,
  4964. "registerDate": null,
  4965. "registerAmount": null,
  4966. "address": null,
  4967. "partnershipList": [
  4968. {
  4969. "dataCode": "薄弱",
  4970. "dataName": "智慧楼宇",
  4971. "tagCode": "8800632878"
  4972. }
  4973. ],
  4974. "certificateList": [],
  4975. "partnership": "薄弱",
  4976. "pcList": [
  4977. {
  4978. "dataCode": "薄弱",
  4979. "dataName": "全产业",
  4980. "tagCode": null
  4981. },
  4982. {
  4983. "dataCode": "薄弱",
  4984. "dataName": "智慧楼宇",
  4985. "tagCode": "8800632878"
  4986. }
  4987. ],
  4988. "pcChangeList": [],
  4989. "importDate": "2025-05-22 10:53:05",
  4990. "createByDate": "2025-04-27 16:16:28",
  4991. "sevenDayCreateTag": null,
  4992. "linkSize": 0
  4993. },
  4994. {
  4995. "id": "2021032511891431",
  4996. "center": "长沙",
  4997. "areaCode": "M4301",
  4998. "areaName": "长沙小微",
  4999. "city": "长沙市",
  5000. "partScale": 0,
  5001. "zbMoney": 0,
  5002. "custName": "浏阳市祥美电器销售有限公司北正路店",
  5003. "custCode": "8800411505",
  5004. "officeAddr": "长沙市浏阳市北正北路423号",
  5005. "industryStr": null,
  5006. "brandStr": null,
  5007. "partUserCount": "0",
  5008. "centerCode": "12403",
  5009. "notAuthCenter": null,
  5010. "cityCode": "430100000000",
  5011. "bigChannelCode": "M",
  5012. "bigChannelName": "直营渠道",
  5013. "smallChannelCode": "HA002",
  5014. "smallChannelName": "纯三专海尔产品专卖类(空调)",
  5015. "mdmFlag": 1,
  5016. "zhaobMoney": 0,
  5017. "zhaobCount": 0,
  5018. "signCount": 0,
  5019. "partnershipDomainALL": null,
  5020. "partnershipDomainPL011": null,
  5021. "partnershipDomainPL005": null,
  5022. "partnershipDomainPL002": null,
  5023. "partnershipDomainPL001": null,
  5024. "partnershipDomainSPL007": null,
  5025. "partnershipDomainSPL006": null,
  5026. "partnershipDomainPL003": null,
  5027. "partnershipDomainPL007": null,
  5028. "partnershipDomainPL006": null,
  5029. "potentialList": [],
  5030. "qzType": 0,
  5031. "qzFlag": 0,
  5032. "enterpriseId": null,
  5033. "nowZhaobMoneyD": 0,
  5034. "historyZhaobMoneyD": 0,
  5035. "nowZhaobMoney": "0",
  5036. "historyZhaobMoney": "0",
  5037. "collaborationChanges": null,
  5038. "collaborationChangesReduce": null,
  5039. "partnerType": null,
  5040. "partnerTypeCode": null,
  5041. "oneYearZhongbD": 0,
  5042. "historyZhongbD": 0,
  5043. "oneYearZhongb": "0",
  5044. "historyZhongb": "0",
  5045. "shareUserCode": null,
  5046. "shareUserName": null,
  5047. "pcShareUserName": null,
  5048. "legalPerson": null,
  5049. "registerDate": null,
  5050. "registerAmount": null,
  5051. "address": null,
  5052. "partnershipList": [],
  5053. "certificateList": [],
  5054. "partnership": "空白",
  5055. "pcList": [
  5056. {
  5057. "dataCode": "空白",
  5058. "dataName": "全产业",
  5059. "tagCode": null
  5060. }
  5061. ],
  5062. "pcChangeList": [],
  5063. "importDate": "2021-03-25 00:00:00",
  5064. "createByDate": "2023-11-23 18:41:14",
  5065. "sevenDayCreateTag": null,
  5066. "linkSize": 0
  5067. },
  5068. {
  5069. "id": "2018110923333580",
  5070. "center": "长沙",
  5071. "areaCode": "M4301",
  5072. "areaName": "长沙小微",
  5073. "city": null,
  5074. "partScale": 0,
  5075. "zbMoney": 0,
  5076. "custName": "常德同升商贸有限公司(顺逛专户)",
  5077. "custCode": "C200081812",
  5078. "officeAddr": "湖南省常德市武陵区芷兰街道办事处临紫社区紫菱路1136号(人人乐超市对面)",
  5079. "industryStr": null,
  5080. "brandStr": null,
  5081. "partUserCount": "0",
  5082. "centerCode": "12403",
  5083. "notAuthCenter": null,
  5084. "cityCode": null,
  5085. "bigChannelCode": "M",
  5086. "bigChannelName": "直营渠道",
  5087. "smallChannelCode": "HA007",
  5088. "smallChannelName": "纯三专工程类",
  5089. "mdmFlag": 1,
  5090. "zhaobMoney": 0,
  5091. "zhaobCount": 0,
  5092. "signCount": 0,
  5093. "partnershipDomainALL": null,
  5094. "partnershipDomainPL011": null,
  5095. "partnershipDomainPL005": null,
  5096. "partnershipDomainPL002": null,
  5097. "partnershipDomainPL001": null,
  5098. "partnershipDomainSPL007": null,
  5099. "partnershipDomainSPL006": null,
  5100. "partnershipDomainPL003": null,
  5101. "partnershipDomainPL007": null,
  5102. "partnershipDomainPL006": null,
  5103. "potentialList": [],
  5104. "qzType": 0,
  5105. "qzFlag": 0,
  5106. "enterpriseId": null,
  5107. "nowZhaobMoneyD": 0,
  5108. "historyZhaobMoneyD": 0,
  5109. "nowZhaobMoney": "0",
  5110. "historyZhaobMoney": "0",
  5111. "collaborationChanges": null,
  5112. "collaborationChangesReduce": null,
  5113. "partnerType": null,
  5114. "partnerTypeCode": null,
  5115. "oneYearZhongbD": 0,
  5116. "historyZhongbD": 0,
  5117. "oneYearZhongb": "0",
  5118. "historyZhongb": "0",
  5119. "shareUserCode": null,
  5120. "shareUserName": null,
  5121. "pcShareUserName": null,
  5122. "legalPerson": null,
  5123. "registerDate": null,
  5124. "registerAmount": null,
  5125. "address": null,
  5126. "partnershipList": [],
  5127. "certificateList": [],
  5128. "partnership": "空白",
  5129. "pcList": [
  5130. {
  5131. "dataCode": "空白",
  5132. "dataName": "全产业",
  5133. "tagCode": null
  5134. }
  5135. ],
  5136. "pcChangeList": [],
  5137. "importDate": "2018-11-09 13:15:04",
  5138. "createByDate": "2023-11-23 18:48:30",
  5139. "sevenDayCreateTag": null,
  5140. "linkSize": 0
  5141. },
  5142. {
  5143. "id": "1909152396692889805",
  5144. "center": "长沙",
  5145. "areaCode": "M4301",
  5146. "areaName": "长沙小微",
  5147. "city": "常德市",
  5148. "partScale": 0,
  5149. "zbMoney": 332.09,
  5150. "custName": "桃源县宏发电器有限公司",
  5151. "custCode": "8800297183",
  5152. "officeAddr": "常德市桃源县漳江镇黄花井社区文昌西路004号",
  5153. "industryStr": null,
  5154. "brandStr": null,
  5155. "partUserCount": "13",
  5156. "centerCode": "12403",
  5157. "notAuthCenter": null,
  5158. "cityCode": "430700000000",
  5159. "bigChannelCode": "M",
  5160. "bigChannelName": "直营渠道",
  5161. "smallChannelCode": "HM002",
  5162. "smallChannelName": "准三专海尔家电卖场类",
  5163. "mdmFlag": 1,
  5164. "zhaobMoney": 4.43,
  5165. "zhaobCount": 14,
  5166. "signCount": 0,
  5167. "partnershipDomainALL": null,
  5168. "partnershipDomainPL011": null,
  5169. "partnershipDomainPL005": null,
  5170. "partnershipDomainPL002": null,
  5171. "partnershipDomainPL001": null,
  5172. "partnershipDomainSPL007": null,
  5173. "partnershipDomainSPL006": null,
  5174. "partnershipDomainPL003": null,
  5175. "partnershipDomainPL007": null,
  5176. "partnershipDomainPL006": null,
  5177. "potentialList": [
  5178. {
  5179. "dataCode": "中",
  5180. "dataName": "家用空调",
  5181. "tagCode": null
  5182. },
  5183. {
  5184. "dataCode": "低",
  5185. "dataName": "冰箱",
  5186. "tagCode": null
  5187. },
  5188. {
  5189. "dataCode": "中",
  5190. "dataName": "家用空调",
  5191. "tagCode": null
  5192. },
  5193. {
  5194. "dataCode": "低",
  5195. "dataName": "彩电",
  5196. "tagCode": null
  5197. },
  5198. {
  5199. "dataCode": "中",
  5200. "dataName": "智慧楼宇",
  5201. "tagCode": null
  5202. },
  5203. {
  5204. "dataCode": "低",
  5205. "dataName": "水联网",
  5206. "tagCode": null
  5207. }
  5208. ],
  5209. "qzType": 0,
  5210. "qzFlag": 2,
  5211. "enterpriseId": 1927705648717852700,
  5212. "nowZhaobMoneyD": 0,
  5213. "historyZhaobMoneyD": 0,
  5214. "nowZhaobMoney": "0",
  5215. "historyZhaobMoney": "0",
  5216. "collaborationChanges": null,
  5217. "collaborationChangesReduce": null,
  5218. "partnerType": null,
  5219. "partnerTypeCode": null,
  5220. "oneYearZhongbD": 3,
  5221. "historyZhongbD": 4,
  5222. "oneYearZhongb": "3",
  5223. "historyZhongb": "4",
  5224. "shareUserCode": null,
  5225. "shareUserName": null,
  5226. "pcShareUserName": null,
  5227. "legalPerson": "赵建春",
  5228. "registerDate": "2009",
  5229. "registerAmount": "1000万人民币",
  5230. "address": "常德市桃源县漳江镇黄花井社区文昌西路004号",
  5231. "partnershipList": [],
  5232. "certificateList": [],
  5233. "partnership": "空白",
  5234. "pcList": [
  5235. {
  5236. "dataCode": "空白",
  5237. "dataName": "全产业",
  5238. "tagCode": null
  5239. }
  5240. ],
  5241. "pcChangeList": [],
  5242. "importDate": "2018-09-04 17:05:29",
  5243. "createByDate": "2025-04-07 15:52:57",
  5244. "sevenDayCreateTag": null,
  5245. "linkSize": 0
  5246. },
  5247. {
  5248. "id": "2024031209534643",
  5249. "center": "长沙",
  5250. "areaCode": "M4301",
  5251. "areaName": "长沙小微",
  5252. "city": null,
  5253. "partScale": 0,
  5254. "zbMoney": 0,
  5255. "custName": "(金融备货空调户)湘阴县蓝天家电有限公司",
  5256. "custCode": "C200094642",
  5257. "officeAddr": "湘阴县文星镇北正街",
  5258. "industryStr": null,
  5259. "brandStr": null,
  5260. "partUserCount": "0",
  5261. "centerCode": "12403",
  5262. "notAuthCenter": null,
  5263. "cityCode": "",
  5264. "bigChannelCode": "M",
  5265. "bigChannelName": "直营渠道",
  5266. "smallChannelCode": "HA001",
  5267. "smallChannelName": "纯三专海尔成套专卖类",
  5268. "mdmFlag": 1,
  5269. "zhaobMoney": 0,
  5270. "zhaobCount": 0,
  5271. "signCount": 0,
  5272. "partnershipDomainALL": null,
  5273. "partnershipDomainPL011": null,
  5274. "partnershipDomainPL005": null,
  5275. "partnershipDomainPL002": null,
  5276. "partnershipDomainPL001": null,
  5277. "partnershipDomainSPL007": null,
  5278. "partnershipDomainSPL006": null,
  5279. "partnershipDomainPL003": null,
  5280. "partnershipDomainPL007": null,
  5281. "partnershipDomainPL006": null,
  5282. "potentialList": [],
  5283. "qzType": 0,
  5284. "qzFlag": 0,
  5285. "enterpriseId": null,
  5286. "nowZhaobMoneyD": 0,
  5287. "historyZhaobMoneyD": 0,
  5288. "nowZhaobMoney": "0",
  5289. "historyZhaobMoney": "0",
  5290. "collaborationChanges": null,
  5291. "collaborationChangesReduce": null,
  5292. "partnerType": null,
  5293. "partnerTypeCode": null,
  5294. "oneYearZhongbD": 0,
  5295. "historyZhongbD": 0,
  5296. "oneYearZhongb": "0",
  5297. "historyZhongb": "0",
  5298. "shareUserCode": null,
  5299. "shareUserName": null,
  5300. "pcShareUserName": null,
  5301. "legalPerson": null,
  5302. "registerDate": null,
  5303. "registerAmount": null,
  5304. "address": null,
  5305. "partnershipList": [],
  5306. "certificateList": [],
  5307. "partnership": "空白",
  5308. "pcList": [
  5309. {
  5310. "dataCode": "空白",
  5311. "dataName": "全产业",
  5312. "tagCode": null
  5313. }
  5314. ],
  5315. "pcChangeList": [],
  5316. "importDate": "2024-03-12 00:00:00",
  5317. "createByDate": "2024-03-13 02:50:04",
  5318. "sevenDayCreateTag": null,
  5319. "linkSize": 0
  5320. },
  5321. {
  5322. "id": "2020110565134129",
  5323. "center": "长沙",
  5324. "areaCode": "M4301",
  5325. "areaName": "长沙小微",
  5326. "city": null,
  5327. "partScale": 0,
  5328. "zbMoney": 0,
  5329. "custName": "(押金户)湖南麓南汇众鑫贸易有限公司",
  5330. "custCode": "C200144754",
  5331. "officeAddr": "湖南省长沙市岳麓区西湖街道咸嘉湖路676观湖公寓1624、1625房",
  5332. "industryStr": null,
  5333. "brandStr": null,
  5334. "partUserCount": "0",
  5335. "centerCode": "12403",
  5336. "notAuthCenter": null,
  5337. "cityCode": null,
  5338. "bigChannelCode": "M",
  5339. "bigChannelName": "直营渠道",
  5340. "smallChannelCode": "HA007",
  5341. "smallChannelName": "纯三专工程类",
  5342. "mdmFlag": 1,
  5343. "zhaobMoney": 0,
  5344. "zhaobCount": 0,
  5345. "signCount": 0,
  5346. "partnershipDomainALL": null,
  5347. "partnershipDomainPL011": null,
  5348. "partnershipDomainPL005": null,
  5349. "partnershipDomainPL002": null,
  5350. "partnershipDomainPL001": null,
  5351. "partnershipDomainSPL007": null,
  5352. "partnershipDomainSPL006": null,
  5353. "partnershipDomainPL003": null,
  5354. "partnershipDomainPL007": null,
  5355. "partnershipDomainPL006": null,
  5356. "potentialList": [],
  5357. "qzType": 0,
  5358. "qzFlag": 0,
  5359. "enterpriseId": null,
  5360. "nowZhaobMoneyD": 0,
  5361. "historyZhaobMoneyD": 0,
  5362. "nowZhaobMoney": "0",
  5363. "historyZhaobMoney": "0",
  5364. "collaborationChanges": null,
  5365. "collaborationChangesReduce": null,
  5366. "partnerType": null,
  5367. "partnerTypeCode": null,
  5368. "oneYearZhongbD": 0,
  5369. "historyZhongbD": 0,
  5370. "oneYearZhongb": "0",
  5371. "historyZhongb": "0",
  5372. "shareUserCode": null,
  5373. "shareUserName": null,
  5374. "pcShareUserName": null,
  5375. "legalPerson": null,
  5376. "registerDate": null,
  5377. "registerAmount": null,
  5378. "address": null,
  5379. "partnershipList": [],
  5380. "certificateList": [],
  5381. "partnership": "空白",
  5382. "pcList": [
  5383. {
  5384. "dataCode": "空白",
  5385. "dataName": "全产业",
  5386. "tagCode": null
  5387. }
  5388. ],
  5389. "pcChangeList": [],
  5390. "importDate": "2020-11-05 00:00:00",
  5391. "createByDate": "2023-11-23 18:41:27",
  5392. "sevenDayCreateTag": null,
  5393. "linkSize": 0
  5394. },
  5395. {
  5396. "id": "2018110923352030",
  5397. "center": "长沙",
  5398. "areaCode": "M4301",
  5399. "areaName": "长沙小微",
  5400. "city": null,
  5401. "partScale": 0,
  5402. "zbMoney": 0,
  5403. "custName": "南县恒大电器有限公司(顺逛专户)",
  5404. "custCode": "C200090948",
  5405. "officeAddr": "湖南省益阳市南县南洲镇南华北路",
  5406. "industryStr": null,
  5407. "brandStr": null,
  5408. "partUserCount": "0",
  5409. "centerCode": "12403",
  5410. "notAuthCenter": null,
  5411. "cityCode": null,
  5412. "bigChannelCode": "M",
  5413. "bigChannelName": "直营渠道",
  5414. "smallChannelCode": "HM002",
  5415. "smallChannelName": "准三专海尔家电卖场类",
  5416. "mdmFlag": 1,
  5417. "zhaobMoney": 0,
  5418. "zhaobCount": 0,
  5419. "signCount": 0,
  5420. "partnershipDomainALL": null,
  5421. "partnershipDomainPL011": null,
  5422. "partnershipDomainPL005": null,
  5423. "partnershipDomainPL002": null,
  5424. "partnershipDomainPL001": null,
  5425. "partnershipDomainSPL007": null,
  5426. "partnershipDomainSPL006": null,
  5427. "partnershipDomainPL003": null,
  5428. "partnershipDomainPL007": null,
  5429. "partnershipDomainPL006": null,
  5430. "potentialList": [],
  5431. "qzType": 0,
  5432. "qzFlag": 0,
  5433. "enterpriseId": null,
  5434. "nowZhaobMoneyD": 0,
  5435. "historyZhaobMoneyD": 0,
  5436. "nowZhaobMoney": "0",
  5437. "historyZhaobMoney": "0",
  5438. "collaborationChanges": null,
  5439. "collaborationChangesReduce": null,
  5440. "partnerType": null,
  5441. "partnerTypeCode": null,
  5442. "oneYearZhongbD": 0,
  5443. "historyZhongbD": 0,
  5444. "oneYearZhongb": "0",
  5445. "historyZhongb": "0",
  5446. "shareUserCode": null,
  5447. "shareUserName": null,
  5448. "pcShareUserName": null,
  5449. "legalPerson": null,
  5450. "registerDate": null,
  5451. "registerAmount": null,
  5452. "address": null,
  5453. "partnershipList": [],
  5454. "certificateList": [],
  5455. "partnership": "空白",
  5456. "pcList": [
  5457. {
  5458. "dataCode": "空白",
  5459. "dataName": "全产业",
  5460. "tagCode": null
  5461. }
  5462. ],
  5463. "pcChangeList": [],
  5464. "importDate": "2018-11-09 13:16:14",
  5465. "createByDate": "2023-11-23 18:48:07",
  5466. "sevenDayCreateTag": null,
  5467. "linkSize": 0
  5468. },
  5469. {
  5470. "id": "2016071446636067",
  5471. "center": "长沙",
  5472. "areaCode": "M4301",
  5473. "areaName": "长沙小微",
  5474. "city": null,
  5475. "partScale": 0,
  5476. "zbMoney": 0,
  5477. "custName": "(押金户)湖南省嘉晋美商贸有限公司",
  5478. "custCode": "C200128800",
  5479. "officeAddr": "湖南省长沙市天心区芙蓉南路二段249号中建芙蓉嘉苑37栋602房",
  5480. "industryStr": null,
  5481. "brandStr": null,
  5482. "partUserCount": "0",
  5483. "centerCode": "12403",
  5484. "notAuthCenter": null,
  5485. "cityCode": "",
  5486. "bigChannelCode": "M",
  5487. "bigChannelName": "直营渠道",
  5488. "smallChannelCode": "HA003",
  5489. "smallChannelName": "纯三专海尔产品专卖类(电厨)",
  5490. "mdmFlag": 1,
  5491. "zhaobMoney": 0,
  5492. "zhaobCount": 0,
  5493. "signCount": 0,
  5494. "partnershipDomainALL": null,
  5495. "partnershipDomainPL011": null,
  5496. "partnershipDomainPL005": null,
  5497. "partnershipDomainPL002": null,
  5498. "partnershipDomainPL001": null,
  5499. "partnershipDomainSPL007": null,
  5500. "partnershipDomainSPL006": null,
  5501. "partnershipDomainPL003": null,
  5502. "partnershipDomainPL007": null,
  5503. "partnershipDomainPL006": null,
  5504. "potentialList": [],
  5505. "qzType": 0,
  5506. "qzFlag": 0,
  5507. "enterpriseId": null,
  5508. "nowZhaobMoneyD": 0,
  5509. "historyZhaobMoneyD": 0,
  5510. "nowZhaobMoney": "0",
  5511. "historyZhaobMoney": "0",
  5512. "collaborationChanges": null,
  5513. "collaborationChangesReduce": null,
  5514. "partnerType": null,
  5515. "partnerTypeCode": null,
  5516. "oneYearZhongbD": 0,
  5517. "historyZhongbD": 0,
  5518. "oneYearZhongb": "0",
  5519. "historyZhongb": "0",
  5520. "shareUserCode": null,
  5521. "shareUserName": null,
  5522. "pcShareUserName": null,
  5523. "legalPerson": null,
  5524. "registerDate": null,
  5525. "registerAmount": null,
  5526. "address": null,
  5527. "partnershipList": [],
  5528. "certificateList": [],
  5529. "partnership": "空白",
  5530. "pcList": [
  5531. {
  5532. "dataCode": "空白",
  5533. "dataName": "全产业",
  5534. "tagCode": null
  5535. }
  5536. ],
  5537. "pcChangeList": [],
  5538. "importDate": "2016-07-14 16:22:41",
  5539. "createByDate": "2023-11-23 18:47:58",
  5540. "sevenDayCreateTag": null,
  5541. "linkSize": 0
  5542. },
  5543. {
  5544. "id": "2023092755553873",
  5545. "center": "长沙",
  5546. "areaCode": "M4301",
  5547. "areaName": "长沙小微",
  5548. "city": "永州市",
  5549. "partScale": 0,
  5550. "zbMoney": 0,
  5551. "custName": "道县海卡电器销售有限责任公司道州北路卡萨帝店",
  5552. "custCode": "8800538537",
  5553. "officeAddr": "永州市道县道州北路651号和一大酒店公交站",
  5554. "industryStr": null,
  5555. "brandStr": null,
  5556. "partUserCount": "0",
  5557. "centerCode": "12403",
  5558. "notAuthCenter": null,
  5559. "cityCode": "431100000000",
  5560. "bigChannelCode": "M",
  5561. "bigChannelName": "直营渠道",
  5562. "smallChannelCode": "HA001",
  5563. "smallChannelName": "纯三专海尔成套专卖类",
  5564. "mdmFlag": 1,
  5565. "zhaobMoney": 0,
  5566. "zhaobCount": 0,
  5567. "signCount": 0,
  5568. "partnershipDomainALL": null,
  5569. "partnershipDomainPL011": null,
  5570. "partnershipDomainPL005": null,
  5571. "partnershipDomainPL002": null,
  5572. "partnershipDomainPL001": null,
  5573. "partnershipDomainSPL007": null,
  5574. "partnershipDomainSPL006": null,
  5575. "partnershipDomainPL003": null,
  5576. "partnershipDomainPL007": null,
  5577. "partnershipDomainPL006": null,
  5578. "potentialList": [],
  5579. "qzType": 0,
  5580. "qzFlag": 0,
  5581. "enterpriseId": null,
  5582. "nowZhaobMoneyD": 0,
  5583. "historyZhaobMoneyD": 0,
  5584. "nowZhaobMoney": "0",
  5585. "historyZhaobMoney": "0",
  5586. "collaborationChanges": null,
  5587. "collaborationChangesReduce": null,
  5588. "partnerType": null,
  5589. "partnerTypeCode": null,
  5590. "oneYearZhongbD": 0,
  5591. "historyZhongbD": 0,
  5592. "oneYearZhongb": "0",
  5593. "historyZhongb": "0",
  5594. "shareUserCode": null,
  5595. "shareUserName": null,
  5596. "pcShareUserName": null,
  5597. "legalPerson": null,
  5598. "registerDate": null,
  5599. "registerAmount": null,
  5600. "address": null,
  5601. "partnershipList": [],
  5602. "certificateList": [],
  5603. "partnership": "空白",
  5604. "pcList": [
  5605. {
  5606. "dataCode": "空白",
  5607. "dataName": "全产业",
  5608. "tagCode": null
  5609. }
  5610. ],
  5611. "pcChangeList": [],
  5612. "importDate": "2023-09-27 16:29:47",
  5613. "createByDate": "2023-11-23 18:40:05",
  5614. "sevenDayCreateTag": null,
  5615. "linkSize": 0
  5616. },
  5617. {
  5618. "id": "2022122644093269",
  5619. "center": "长沙",
  5620. "areaCode": "M4301",
  5621. "areaName": "长沙小微",
  5622. "city": "怀化市",
  5623. "partScale": 0,
  5624. "zbMoney": 0,
  5625. "custName": "(空调户)怀化奥荣电器有限公司",
  5626. "custCode": "C200150975",
  5627. "officeAddr": "湖南省怀化市溆浦县卢峰镇团结街张家湾路北部华庭1栋109号至114号",
  5628. "industryStr": null,
  5629. "brandStr": null,
  5630. "partUserCount": "0",
  5631. "centerCode": "12403",
  5632. "notAuthCenter": null,
  5633. "cityCode": "431200000000",
  5634. "bigChannelCode": "M",
  5635. "bigChannelName": "直营渠道",
  5636. "smallChannelCode": "HM002",
  5637. "smallChannelName": "准三专海尔家电卖场类",
  5638. "mdmFlag": 1,
  5639. "zhaobMoney": 0,
  5640. "zhaobCount": 0,
  5641. "signCount": 0,
  5642. "partnershipDomainALL": null,
  5643. "partnershipDomainPL011": null,
  5644. "partnershipDomainPL005": null,
  5645. "partnershipDomainPL002": null,
  5646. "partnershipDomainPL001": null,
  5647. "partnershipDomainSPL007": null,
  5648. "partnershipDomainSPL006": null,
  5649. "partnershipDomainPL003": null,
  5650. "partnershipDomainPL007": null,
  5651. "partnershipDomainPL006": null,
  5652. "potentialList": [],
  5653. "qzType": 0,
  5654. "qzFlag": 0,
  5655. "enterpriseId": null,
  5656. "nowZhaobMoneyD": 0,
  5657. "historyZhaobMoneyD": 0,
  5658. "nowZhaobMoney": "0",
  5659. "historyZhaobMoney": "0",
  5660. "collaborationChanges": null,
  5661. "collaborationChangesReduce": null,
  5662. "partnerType": null,
  5663. "partnerTypeCode": null,
  5664. "oneYearZhongbD": 0,
  5665. "historyZhongbD": 0,
  5666. "oneYearZhongb": "0",
  5667. "historyZhongb": "0",
  5668. "shareUserCode": null,
  5669. "shareUserName": null,
  5670. "pcShareUserName": null,
  5671. "legalPerson": null,
  5672. "registerDate": null,
  5673. "registerAmount": null,
  5674. "address": null,
  5675. "partnershipList": [],
  5676. "certificateList": [],
  5677. "partnership": "空白",
  5678. "pcList": [
  5679. {
  5680. "dataCode": "空白",
  5681. "dataName": "全产业",
  5682. "tagCode": null
  5683. }
  5684. ],
  5685. "pcChangeList": [],
  5686. "importDate": "2022-12-26 19:12:33",
  5687. "createByDate": "2023-11-23 18:40:22",
  5688. "sevenDayCreateTag": null,
  5689. "linkSize": 0
  5690. },
  5691. {
  5692. "id": "2024041592148265",
  5693. "center": "长沙",
  5694. "areaCode": "M4301",
  5695. "areaName": "长沙小微",
  5696. "city": "株洲市",
  5697. "partScale": 0,
  5698. "zbMoney": 0,
  5699. "custName": "(押金户)株洲朝晖嘉恒家居销售有限责任公司",
  5700. "custCode": "C200153878",
  5701. "officeAddr": "湖南省株洲市石峰区铜塘湾街道清水路419号火炬工程公司综合楼H222房",
  5702. "industryStr": null,
  5703. "brandStr": null,
  5704. "partUserCount": "0",
  5705. "centerCode": "12403",
  5706. "notAuthCenter": null,
  5707. "cityCode": "430200000000",
  5708. "bigChannelCode": "M",
  5709. "bigChannelName": "直营渠道",
  5710. "smallChannelCode": "HA024",
  5711. "smallChannelName": "纯三专水联网前置类客户",
  5712. "mdmFlag": 1,
  5713. "zhaobMoney": 0,
  5714. "zhaobCount": 0,
  5715. "signCount": 0,
  5716. "partnershipDomainALL": null,
  5717. "partnershipDomainPL011": null,
  5718. "partnershipDomainPL005": null,
  5719. "partnershipDomainPL002": null,
  5720. "partnershipDomainPL001": null,
  5721. "partnershipDomainSPL007": null,
  5722. "partnershipDomainSPL006": null,
  5723. "partnershipDomainPL003": null,
  5724. "partnershipDomainPL007": null,
  5725. "partnershipDomainPL006": null,
  5726. "potentialList": [],
  5727. "qzType": 0,
  5728. "qzFlag": 0,
  5729. "enterpriseId": null,
  5730. "nowZhaobMoneyD": 0,
  5731. "historyZhaobMoneyD": 0,
  5732. "nowZhaobMoney": "0",
  5733. "historyZhaobMoney": "0",
  5734. "collaborationChanges": null,
  5735. "collaborationChangesReduce": null,
  5736. "partnerType": null,
  5737. "partnerTypeCode": null,
  5738. "oneYearZhongbD": 0,
  5739. "historyZhongbD": 0,
  5740. "oneYearZhongb": "0",
  5741. "historyZhongb": "0",
  5742. "shareUserCode": null,
  5743. "shareUserName": null,
  5744. "pcShareUserName": null,
  5745. "legalPerson": null,
  5746. "registerDate": null,
  5747. "registerAmount": null,
  5748. "address": null,
  5749. "partnershipList": [],
  5750. "certificateList": [],
  5751. "partnership": "空白",
  5752. "pcList": [
  5753. {
  5754. "dataCode": "空白",
  5755. "dataName": "全产业",
  5756. "tagCode": null
  5757. }
  5758. ],
  5759. "pcChangeList": [],
  5760. "importDate": "2024-04-15 19:34:03",
  5761. "createByDate": "2024-04-16 02:50:01",
  5762. "sevenDayCreateTag": null,
  5763. "linkSize": 0
  5764. },
  5765. {
  5766. "id": "2016121410347998",
  5767. "center": "长沙",
  5768. "areaCode": "M4301",
  5769. "areaName": "长沙小微",
  5770. "city": "益阳市",
  5771. "partScale": 232.94,
  5772. "zbMoney": 0,
  5773. "custName": "桃江县海德家电工程有限公司",
  5774. "custCode": "8800225944",
  5775. "officeAddr": "湖南省益阳市桃江县桃花江镇桃花西路419号",
  5776. "industryStr": "冰冷(1)、热水器(1)、洗衣机(1)、家用空调(1)",
  5777. "brandStr": "海尔",
  5778. "partUserCount": "14",
  5779. "centerCode": "12403",
  5780. "notAuthCenter": null,
  5781. "cityCode": "430900000000",
  5782. "bigChannelCode": "M",
  5783. "bigChannelName": "直营渠道",
  5784. "smallChannelCode": "HA001",
  5785. "smallChannelName": "纯三专海尔成套专卖类",
  5786. "mdmFlag": 1,
  5787. "zhaobMoney": 0,
  5788. "zhaobCount": 0,
  5789. "signCount": 0,
  5790. "partnershipDomainALL": null,
  5791. "partnershipDomainPL011": null,
  5792. "partnershipDomainPL005": null,
  5793. "partnershipDomainPL002": null,
  5794. "partnershipDomainPL001": null,
  5795. "partnershipDomainSPL007": null,
  5796. "partnershipDomainSPL006": null,
  5797. "partnershipDomainPL003": null,
  5798. "partnershipDomainPL007": null,
  5799. "partnershipDomainPL006": null,
  5800. "potentialList": [],
  5801. "qzType": 0,
  5802. "qzFlag": 0,
  5803. "enterpriseId": null,
  5804. "nowZhaobMoneyD": 0,
  5805. "historyZhaobMoneyD": 233,
  5806. "nowZhaobMoney": "0",
  5807. "historyZhaobMoney": "233",
  5808. "collaborationChanges": null,
  5809. "collaborationChangesReduce": null,
  5810. "partnerType": "其他,企业",
  5811. "partnerTypeCode": "-1,91",
  5812. "oneYearZhongbD": 0,
  5813. "historyZhongbD": 0,
  5814. "oneYearZhongb": "0",
  5815. "historyZhongb": "0",
  5816. "shareUserCode": null,
  5817. "shareUserName": null,
  5818. "pcShareUserName": null,
  5819. "legalPerson": null,
  5820. "registerDate": null,
  5821. "registerAmount": null,
  5822. "address": null,
  5823. "partnershipList": [],
  5824. "certificateList": [],
  5825. "partnership": "空白",
  5826. "pcList": [
  5827. {
  5828. "dataCode": "空白",
  5829. "dataName": "全产业",
  5830. "tagCode": null
  5831. }
  5832. ],
  5833. "pcChangeList": [],
  5834. "importDate": "2016-12-14 00:00:00",
  5835. "createByDate": "2023-11-23 18:44:04",
  5836. "sevenDayCreateTag": null,
  5837. "linkSize": 0
  5838. },
  5839. {
  5840. "id": "2025010782116341",
  5841. "center": "长沙",
  5842. "areaCode": "M4301",
  5843. "areaName": "长沙小微",
  5844. "city": "湘西土家族苗族自治州",
  5845. "partScale": 0,
  5846. "zbMoney": 0,
  5847. "custName": "湘西兴跃电器销售有限公司人民南路光彩专卖店",
  5848. "custCode": "8800609132",
  5849. "officeAddr": "湘西土家族苗族自治州吉首市人民南路光彩汇展中心A区2栋186-188号",
  5850. "industryStr": null,
  5851. "brandStr": null,
  5852. "partUserCount": "0",
  5853. "centerCode": "12403",
  5854. "notAuthCenter": null,
  5855. "cityCode": "433100000000",
  5856. "bigChannelCode": "M",
  5857. "bigChannelName": "直营渠道",
  5858. "smallChannelCode": "HA001",
  5859. "smallChannelName": "纯三专海尔成套专卖类",
  5860. "mdmFlag": 1,
  5861. "zhaobMoney": 0,
  5862. "zhaobCount": 0,
  5863. "signCount": 0,
  5864. "partnershipDomainALL": null,
  5865. "partnershipDomainPL011": null,
  5866. "partnershipDomainPL005": null,
  5867. "partnershipDomainPL002": null,
  5868. "partnershipDomainPL001": null,
  5869. "partnershipDomainSPL007": null,
  5870. "partnershipDomainSPL006": null,
  5871. "partnershipDomainPL003": null,
  5872. "partnershipDomainPL007": null,
  5873. "partnershipDomainPL006": null,
  5874. "potentialList": [],
  5875. "qzType": 0,
  5876. "qzFlag": 0,
  5877. "enterpriseId": null,
  5878. "nowZhaobMoneyD": 0,
  5879. "historyZhaobMoneyD": 0,
  5880. "nowZhaobMoney": "0",
  5881. "historyZhaobMoney": "0",
  5882. "collaborationChanges": null,
  5883. "collaborationChangesReduce": null,
  5884. "partnerType": null,
  5885. "partnerTypeCode": null,
  5886. "oneYearZhongbD": 0,
  5887. "historyZhongbD": 0,
  5888. "oneYearZhongb": "0",
  5889. "historyZhongb": "0",
  5890. "shareUserCode": null,
  5891. "shareUserName": null,
  5892. "pcShareUserName": null,
  5893. "legalPerson": null,
  5894. "registerDate": null,
  5895. "registerAmount": null,
  5896. "address": null,
  5897. "partnershipList": [],
  5898. "certificateList": [],
  5899. "partnership": "空白",
  5900. "pcList": [
  5901. {
  5902. "dataCode": "空白",
  5903. "dataName": "全产业",
  5904. "tagCode": null
  5905. }
  5906. ],
  5907. "pcChangeList": [],
  5908. "importDate": "2025-01-07 21:58:56",
  5909. "createByDate": "2025-01-08 02:50:04",
  5910. "sevenDayCreateTag": null,
  5911. "linkSize": 0
  5912. },
  5913. {
  5914. "id": "2025121594712436",
  5915. "center": "长沙",
  5916. "areaCode": "M4301",
  5917. "areaName": "长沙小微",
  5918. "city": null,
  5919. "partScale": 0,
  5920. "zbMoney": 0,
  5921. "custName": "长沙怡冠通电器销售有限公司",
  5922. "custCode": "8800659614",
  5923. "officeAddr": "长沙市雨花区圭塘街道劳动东路139号新城新世界三期东组团1201号",
  5924. "industryStr": null,
  5925. "brandStr": null,
  5926. "partUserCount": "0",
  5927. "centerCode": "12403",
  5928. "notAuthCenter": null,
  5929. "cityCode": null,
  5930. "bigChannelCode": "M",
  5931. "bigChannelName": "直营渠道",
  5932. "smallChannelCode": "HA001",
  5933. "smallChannelName": "纯三专海尔成套专卖类",
  5934. "mdmFlag": 1,
  5935. "zhaobMoney": 0,
  5936. "zhaobCount": 0,
  5937. "signCount": 0,
  5938. "partnershipDomainALL": null,
  5939. "partnershipDomainPL011": null,
  5940. "partnershipDomainPL005": null,
  5941. "partnershipDomainPL002": null,
  5942. "partnershipDomainPL001": null,
  5943. "partnershipDomainSPL007": null,
  5944. "partnershipDomainSPL006": null,
  5945. "partnershipDomainPL003": null,
  5946. "partnershipDomainPL007": null,
  5947. "partnershipDomainPL006": null,
  5948. "potentialList": [],
  5949. "qzType": 0,
  5950. "qzFlag": 0,
  5951. "enterpriseId": null,
  5952. "nowZhaobMoneyD": 0,
  5953. "historyZhaobMoneyD": 0,
  5954. "nowZhaobMoney": "0",
  5955. "historyZhaobMoney": "0",
  5956. "collaborationChanges": null,
  5957. "collaborationChangesReduce": null,
  5958. "partnerType": null,
  5959. "partnerTypeCode": null,
  5960. "oneYearZhongbD": 0,
  5961. "historyZhongbD": 0,
  5962. "oneYearZhongb": "0",
  5963. "historyZhongb": "0",
  5964. "shareUserCode": null,
  5965. "shareUserName": null,
  5966. "pcShareUserName": null,
  5967. "legalPerson": null,
  5968. "registerDate": null,
  5969. "registerAmount": null,
  5970. "address": null,
  5971. "partnershipList": [],
  5972. "certificateList": [],
  5973. "partnership": "空白",
  5974. "pcList": [
  5975. {
  5976. "dataCode": "空白",
  5977. "dataName": "全产业",
  5978. "tagCode": null
  5979. }
  5980. ],
  5981. "pcChangeList": [],
  5982. "importDate": "2025-12-15 12:33:24",
  5983. "createByDate": "2025-12-16 04:50:02",
  5984. "sevenDayCreateTag": "7天内新增",
  5985. "linkSize": 0
  5986. },
  5987. {
  5988. "id": "2018110923330233",
  5989. "center": "长沙",
  5990. "areaCode": "M4301",
  5991. "areaName": "长沙小微",
  5992. "city": null,
  5993. "partScale": 0,
  5994. "zbMoney": 0,
  5995. "custName": "益阳时尚家电有限公司(顺逛专户)",
  5996. "custCode": "C200080148",
  5997. "officeAddr": "湖南省益阳市赫山区棉花收储公司二号门面",
  5998. "industryStr": null,
  5999. "brandStr": null,
  6000. "partUserCount": "0",
  6001. "centerCode": "12403",
  6002. "notAuthCenter": null,
  6003. "cityCode": null,
  6004. "bigChannelCode": "M",
  6005. "bigChannelName": "直营渠道",
  6006. "smallChannelCode": "HA003",
  6007. "smallChannelName": "纯三专海尔产品专卖类(电厨)",
  6008. "mdmFlag": 1,
  6009. "zhaobMoney": 0,
  6010. "zhaobCount": 0,
  6011. "signCount": 0,
  6012. "partnershipDomainALL": null,
  6013. "partnershipDomainPL011": null,
  6014. "partnershipDomainPL005": null,
  6015. "partnershipDomainPL002": null,
  6016. "partnershipDomainPL001": null,
  6017. "partnershipDomainSPL007": null,
  6018. "partnershipDomainSPL006": null,
  6019. "partnershipDomainPL003": null,
  6020. "partnershipDomainPL007": null,
  6021. "partnershipDomainPL006": null,
  6022. "potentialList": [],
  6023. "qzType": 0,
  6024. "qzFlag": 0,
  6025. "enterpriseId": null,
  6026. "nowZhaobMoneyD": 0,
  6027. "historyZhaobMoneyD": 0,
  6028. "nowZhaobMoney": "0",
  6029. "historyZhaobMoney": "0",
  6030. "collaborationChanges": null,
  6031. "collaborationChangesReduce": null,
  6032. "partnerType": null,
  6033. "partnerTypeCode": null,
  6034. "oneYearZhongbD": 0,
  6035. "historyZhongbD": 0,
  6036. "oneYearZhongb": "0",
  6037. "historyZhongb": "0",
  6038. "shareUserCode": null,
  6039. "shareUserName": null,
  6040. "pcShareUserName": null,
  6041. "legalPerson": null,
  6042. "registerDate": null,
  6043. "registerAmount": null,
  6044. "address": null,
  6045. "partnershipList": [],
  6046. "certificateList": [],
  6047. "partnership": "空白",
  6048. "pcList": [
  6049. {
  6050. "dataCode": "空白",
  6051. "dataName": "全产业",
  6052. "tagCode": null
  6053. }
  6054. ],
  6055. "pcChangeList": [],
  6056. "importDate": "2018-11-09 13:14:51",
  6057. "createByDate": "2023-11-23 18:48:33",
  6058. "sevenDayCreateTag": null,
  6059. "linkSize": 0
  6060. },
  6061. {
  6062. "id": "2020030910344025",
  6063. "center": "长沙",
  6064. "areaCode": "M4301",
  6065. "areaName": "长沙小微",
  6066. "city": null,
  6067. "partScale": 0,
  6068. "zbMoney": 0,
  6069. "custName": "(金融户)涟源市喜来宝商贸有限公司",
  6070. "custCode": "C200139634",
  6071. "officeAddr": "湖南省娄底市涟源市蓝田街道光文村文艺北路黄金海岸",
  6072. "industryStr": null,
  6073. "brandStr": null,
  6074. "partUserCount": "0",
  6075. "centerCode": "12403",
  6076. "notAuthCenter": null,
  6077. "cityCode": "",
  6078. "bigChannelCode": "M",
  6079. "bigChannelName": "直营渠道",
  6080. "smallChannelCode": "HA001",
  6081. "smallChannelName": "纯三专海尔成套专卖类",
  6082. "mdmFlag": 1,
  6083. "zhaobMoney": 0,
  6084. "zhaobCount": 0,
  6085. "signCount": 0,
  6086. "partnershipDomainALL": null,
  6087. "partnershipDomainPL011": null,
  6088. "partnershipDomainPL005": null,
  6089. "partnershipDomainPL002": null,
  6090. "partnershipDomainPL001": null,
  6091. "partnershipDomainSPL007": null,
  6092. "partnershipDomainSPL006": null,
  6093. "partnershipDomainPL003": null,
  6094. "partnershipDomainPL007": null,
  6095. "partnershipDomainPL006": null,
  6096. "potentialList": [],
  6097. "qzType": 0,
  6098. "qzFlag": 0,
  6099. "enterpriseId": null,
  6100. "nowZhaobMoneyD": 0,
  6101. "historyZhaobMoneyD": 0,
  6102. "nowZhaobMoney": "0",
  6103. "historyZhaobMoney": "0",
  6104. "collaborationChanges": null,
  6105. "collaborationChangesReduce": null,
  6106. "partnerType": null,
  6107. "partnerTypeCode": null,
  6108. "oneYearZhongbD": 0,
  6109. "historyZhongbD": 0,
  6110. "oneYearZhongb": "0",
  6111. "historyZhongb": "0",
  6112. "shareUserCode": null,
  6113. "shareUserName": null,
  6114. "pcShareUserName": null,
  6115. "legalPerson": null,
  6116. "registerDate": null,
  6117. "registerAmount": null,
  6118. "address": null,
  6119. "partnershipList": [],
  6120. "certificateList": [],
  6121. "partnership": "空白",
  6122. "pcList": [
  6123. {
  6124. "dataCode": "空白",
  6125. "dataName": "全产业",
  6126. "tagCode": null
  6127. }
  6128. ],
  6129. "pcChangeList": [],
  6130. "importDate": "2020-03-09 00:00:00",
  6131. "createByDate": "2023-11-23 18:42:01",
  6132. "sevenDayCreateTag": null,
  6133. "linkSize": 0
  6134. },
  6135. {
  6136. "id": "2024031209534511",
  6137. "center": "长沙",
  6138. "areaCode": "M4301",
  6139. "areaName": "长沙小微",
  6140. "city": null,
  6141. "partScale": 0,
  6142. "zbMoney": 0,
  6143. "custName": "(金融备货空调户)桂阳县益和电器有限公司",
  6144. "custCode": "C200094609",
  6145. "officeAddr": "湖南省郴州市桂阳县鹿峰街道向阳路43号107-2号",
  6146. "industryStr": null,
  6147. "brandStr": null,
  6148. "partUserCount": "0",
  6149. "centerCode": "12403",
  6150. "notAuthCenter": null,
  6151. "cityCode": "",
  6152. "bigChannelCode": "M",
  6153. "bigChannelName": "直营渠道",
  6154. "smallChannelCode": "HM002",
  6155. "smallChannelName": "准三专海尔家电卖场类",
  6156. "mdmFlag": 1,
  6157. "zhaobMoney": 0,
  6158. "zhaobCount": 0,
  6159. "signCount": 0,
  6160. "partnershipDomainALL": null,
  6161. "partnershipDomainPL011": null,
  6162. "partnershipDomainPL005": null,
  6163. "partnershipDomainPL002": null,
  6164. "partnershipDomainPL001": null,
  6165. "partnershipDomainSPL007": null,
  6166. "partnershipDomainSPL006": null,
  6167. "partnershipDomainPL003": null,
  6168. "partnershipDomainPL007": null,
  6169. "partnershipDomainPL006": null,
  6170. "potentialList": [],
  6171. "qzType": 0,
  6172. "qzFlag": 0,
  6173. "enterpriseId": null,
  6174. "nowZhaobMoneyD": 0,
  6175. "historyZhaobMoneyD": 0,
  6176. "nowZhaobMoney": "0",
  6177. "historyZhaobMoney": "0",
  6178. "collaborationChanges": null,
  6179. "collaborationChangesReduce": null,
  6180. "partnerType": null,
  6181. "partnerTypeCode": null,
  6182. "oneYearZhongbD": 0,
  6183. "historyZhongbD": 0,
  6184. "oneYearZhongb": "0",
  6185. "historyZhongb": "0",
  6186. "shareUserCode": null,
  6187. "shareUserName": null,
  6188. "pcShareUserName": null,
  6189. "legalPerson": null,
  6190. "registerDate": null,
  6191. "registerAmount": null,
  6192. "address": null,
  6193. "partnershipList": [],
  6194. "certificateList": [],
  6195. "partnership": "空白",
  6196. "pcList": [
  6197. {
  6198. "dataCode": "空白",
  6199. "dataName": "全产业",
  6200. "tagCode": null
  6201. }
  6202. ],
  6203. "pcChangeList": [],
  6204. "importDate": "2024-03-12 00:00:00",
  6205. "createByDate": "2024-03-13 02:50:04",
  6206. "sevenDayCreateTag": null,
  6207. "linkSize": 0
  6208. },
  6209. {
  6210. "id": "2008051046571067",
  6211. "center": "长沙",
  6212. "areaCode": "M4301",
  6213. "areaName": "长沙小微",
  6214. "city": null,
  6215. "partScale": 0,
  6216. "zbMoney": 0,
  6217. "custName": "(日日顺)(空调户)双峰县东方电器有限公司",
  6218. "custCode": "C200002501",
  6219. "officeAddr": "双峰县复兴街61号门面",
  6220. "industryStr": null,
  6221. "brandStr": null,
  6222. "partUserCount": "0",
  6223. "centerCode": "12403",
  6224. "notAuthCenter": null,
  6225. "cityCode": null,
  6226. "bigChannelCode": "M",
  6227. "bigChannelName": "直营渠道",
  6228. "smallChannelCode": "HA001",
  6229. "smallChannelName": "纯三专海尔成套专卖类",
  6230. "mdmFlag": 1,
  6231. "zhaobMoney": 0,
  6232. "zhaobCount": 0,
  6233. "signCount": 0,
  6234. "partnershipDomainALL": null,
  6235. "partnershipDomainPL011": null,
  6236. "partnershipDomainPL005": null,
  6237. "partnershipDomainPL002": null,
  6238. "partnershipDomainPL001": null,
  6239. "partnershipDomainSPL007": null,
  6240. "partnershipDomainSPL006": null,
  6241. "partnershipDomainPL003": null,
  6242. "partnershipDomainPL007": null,
  6243. "partnershipDomainPL006": null,
  6244. "potentialList": [],
  6245. "qzType": 0,
  6246. "qzFlag": 0,
  6247. "enterpriseId": null,
  6248. "nowZhaobMoneyD": 0,
  6249. "historyZhaobMoneyD": 0,
  6250. "nowZhaobMoney": "0",
  6251. "historyZhaobMoney": "0",
  6252. "collaborationChanges": null,
  6253. "collaborationChangesReduce": null,
  6254. "partnerType": null,
  6255. "partnerTypeCode": null,
  6256. "oneYearZhongbD": 0,
  6257. "historyZhongbD": 0,
  6258. "oneYearZhongb": "0",
  6259. "historyZhongb": "0",
  6260. "shareUserCode": null,
  6261. "shareUserName": null,
  6262. "pcShareUserName": null,
  6263. "legalPerson": null,
  6264. "registerDate": null,
  6265. "registerAmount": null,
  6266. "address": null,
  6267. "partnershipList": [],
  6268. "certificateList": [],
  6269. "partnership": "空白",
  6270. "pcList": [
  6271. {
  6272. "dataCode": "空白",
  6273. "dataName": "全产业",
  6274. "tagCode": null
  6275. }
  6276. ],
  6277. "pcChangeList": [],
  6278. "importDate": "2008-05-10 00:00:00",
  6279. "createByDate": "2023-11-23 18:47:12",
  6280. "sevenDayCreateTag": null,
  6281. "linkSize": 0
  6282. },
  6283. {
  6284. "id": "2024102388522639",
  6285. "center": "长沙",
  6286. "areaCode": "M4301",
  6287. "areaName": "长沙小微",
  6288. "city": "益阳市",
  6289. "partScale": 0,
  6290. "zbMoney": 0,
  6291. "custName": "益阳市资阳区鸿星家电有限公司",
  6292. "custCode": "8800594637",
  6293. "officeAddr": "湖南省益阳市资阳区汽车路办事处乾元宫居委会",
  6294. "industryStr": null,
  6295. "brandStr": null,
  6296. "partUserCount": "0",
  6297. "centerCode": "12403",
  6298. "notAuthCenter": null,
  6299. "cityCode": "430900000000",
  6300. "bigChannelCode": "M",
  6301. "bigChannelName": "直营渠道",
  6302. "smallChannelCode": "HM001",
  6303. "smallChannelName": "准三专海尔百货商场类",
  6304. "mdmFlag": 1,
  6305. "zhaobMoney": 0,
  6306. "zhaobCount": 0,
  6307. "signCount": 0,
  6308. "partnershipDomainALL": null,
  6309. "partnershipDomainPL011": null,
  6310. "partnershipDomainPL005": null,
  6311. "partnershipDomainPL002": null,
  6312. "partnershipDomainPL001": null,
  6313. "partnershipDomainSPL007": null,
  6314. "partnershipDomainSPL006": null,
  6315. "partnershipDomainPL003": null,
  6316. "partnershipDomainPL007": null,
  6317. "partnershipDomainPL006": null,
  6318. "potentialList": [],
  6319. "qzType": 0,
  6320. "qzFlag": 0,
  6321. "enterpriseId": null,
  6322. "nowZhaobMoneyD": 0,
  6323. "historyZhaobMoneyD": 0,
  6324. "nowZhaobMoney": "0",
  6325. "historyZhaobMoney": "0",
  6326. "collaborationChanges": null,
  6327. "collaborationChangesReduce": null,
  6328. "partnerType": null,
  6329. "partnerTypeCode": null,
  6330. "oneYearZhongbD": 0,
  6331. "historyZhongbD": 0,
  6332. "oneYearZhongb": "0",
  6333. "historyZhongb": "0",
  6334. "shareUserCode": null,
  6335. "shareUserName": null,
  6336. "pcShareUserName": null,
  6337. "legalPerson": null,
  6338. "registerDate": null,
  6339. "registerAmount": null,
  6340. "address": null,
  6341. "partnershipList": [],
  6342. "certificateList": [],
  6343. "partnership": "空白",
  6344. "pcList": [
  6345. {
  6346. "dataCode": "空白",
  6347. "dataName": "全产业",
  6348. "tagCode": null
  6349. }
  6350. ],
  6351. "pcChangeList": [],
  6352. "importDate": "2024-10-23 21:00:07",
  6353. "createByDate": "2024-10-24 02:50:01",
  6354. "sevenDayCreateTag": null,
  6355. "linkSize": 0
  6356. },
  6357. {
  6358. "id": "2018110923350241",
  6359. "center": "长沙",
  6360. "areaCode": "M4301",
  6361. "areaName": "长沙小微",
  6362. "city": null,
  6363. "partScale": 0,
  6364. "zbMoney": 0,
  6365. "custName": "汝城县美福电器有限公司(顺逛专户)",
  6366. "custCode": "C200090054",
  6367. "officeAddr": "汝城县城关镇新建西路",
  6368. "industryStr": null,
  6369. "brandStr": null,
  6370. "partUserCount": "0",
  6371. "centerCode": "12403",
  6372. "notAuthCenter": null,
  6373. "cityCode": null,
  6374. "bigChannelCode": "M",
  6375. "bigChannelName": "直营渠道",
  6376. "smallChannelCode": "HM002",
  6377. "smallChannelName": "准三专海尔家电卖场类",
  6378. "mdmFlag": 1,
  6379. "zhaobMoney": 0,
  6380. "zhaobCount": 0,
  6381. "signCount": 0,
  6382. "partnershipDomainALL": null,
  6383. "partnershipDomainPL011": null,
  6384. "partnershipDomainPL005": null,
  6385. "partnershipDomainPL002": null,
  6386. "partnershipDomainPL001": null,
  6387. "partnershipDomainSPL007": null,
  6388. "partnershipDomainSPL006": null,
  6389. "partnershipDomainPL003": null,
  6390. "partnershipDomainPL007": null,
  6391. "partnershipDomainPL006": null,
  6392. "potentialList": [],
  6393. "qzType": 0,
  6394. "qzFlag": 0,
  6395. "enterpriseId": null,
  6396. "nowZhaobMoneyD": 0,
  6397. "historyZhaobMoneyD": 0,
  6398. "nowZhaobMoney": "0",
  6399. "historyZhaobMoney": "0",
  6400. "collaborationChanges": null,
  6401. "collaborationChangesReduce": null,
  6402. "partnerType": null,
  6403. "partnerTypeCode": null,
  6404. "oneYearZhongbD": 0,
  6405. "historyZhongbD": 0,
  6406. "oneYearZhongb": "0",
  6407. "historyZhongb": "0",
  6408. "shareUserCode": null,
  6409. "shareUserName": null,
  6410. "pcShareUserName": null,
  6411. "legalPerson": null,
  6412. "registerDate": null,
  6413. "registerAmount": null,
  6414. "address": null,
  6415. "partnershipList": [],
  6416. "certificateList": [],
  6417. "partnership": "空白",
  6418. "pcList": [
  6419. {
  6420. "dataCode": "空白",
  6421. "dataName": "全产业",
  6422. "tagCode": null
  6423. }
  6424. ],
  6425. "pcChangeList": [],
  6426. "importDate": "2018-11-09 13:16:07",
  6427. "createByDate": "2023-11-23 18:48:09",
  6428. "sevenDayCreateTag": null,
  6429. "linkSize": 0
  6430. },
  6431. {
  6432. "id": "2012031744522335",
  6433. "center": "长沙",
  6434. "areaCode": "M4301",
  6435. "areaName": "长沙小微",
  6436. "city": null,
  6437. "partScale": 0,
  6438. "zbMoney": 0,
  6439. "custName": "(工程押金户)茶陵县阳光有限责任公司",
  6440. "custCode": "C200051443",
  6441. "officeAddr": "茶陵县云阳商厦",
  6442. "industryStr": null,
  6443. "brandStr": null,
  6444. "partUserCount": "0",
  6445. "centerCode": "12403",
  6446. "notAuthCenter": null,
  6447. "cityCode": null,
  6448. "bigChannelCode": "M",
  6449. "bigChannelName": "直营渠道",
  6450. "smallChannelCode": "HM002",
  6451. "smallChannelName": "准三专海尔家电卖场类",
  6452. "mdmFlag": 1,
  6453. "zhaobMoney": 0,
  6454. "zhaobCount": 0,
  6455. "signCount": 0,
  6456. "partnershipDomainALL": null,
  6457. "partnershipDomainPL011": null,
  6458. "partnershipDomainPL005": null,
  6459. "partnershipDomainPL002": null,
  6460. "partnershipDomainPL001": null,
  6461. "partnershipDomainSPL007": null,
  6462. "partnershipDomainSPL006": null,
  6463. "partnershipDomainPL003": null,
  6464. "partnershipDomainPL007": null,
  6465. "partnershipDomainPL006": null,
  6466. "potentialList": [],
  6467. "qzType": 0,
  6468. "qzFlag": 0,
  6469. "enterpriseId": null,
  6470. "nowZhaobMoneyD": 0,
  6471. "historyZhaobMoneyD": 0,
  6472. "nowZhaobMoney": "0",
  6473. "historyZhaobMoney": "0",
  6474. "collaborationChanges": null,
  6475. "collaborationChangesReduce": null,
  6476. "partnerType": null,
  6477. "partnerTypeCode": null,
  6478. "oneYearZhongbD": 0,
  6479. "historyZhongbD": 0,
  6480. "oneYearZhongb": "0",
  6481. "historyZhongb": "0",
  6482. "shareUserCode": null,
  6483. "shareUserName": null,
  6484. "pcShareUserName": null,
  6485. "legalPerson": null,
  6486. "registerDate": null,
  6487. "registerAmount": null,
  6488. "address": null,
  6489. "partnershipList": [],
  6490. "certificateList": [],
  6491. "partnership": "空白",
  6492. "pcList": [
  6493. {
  6494. "dataCode": "空白",
  6495. "dataName": "全产业",
  6496. "tagCode": null
  6497. }
  6498. ],
  6499. "pcChangeList": [],
  6500. "importDate": "2012-03-17 00:00:00",
  6501. "createByDate": "2023-11-23 18:45:46",
  6502. "sevenDayCreateTag": null,
  6503. "linkSize": 0
  6504. },
  6505. {
  6506. "id": "2008072267004032",
  6507. "center": "长沙",
  6508. "areaCode": "M4301",
  6509. "areaName": "长沙小微",
  6510. "city": "岳阳市",
  6511. "partScale": 0,
  6512. "zbMoney": 0,
  6513. "custName": "岳阳和邦工贸有限公司",
  6514. "custCode": "8800008403",
  6515. "officeAddr": "岳阳市竹荫街盐业公司院内",
  6516. "industryStr": null,
  6517. "brandStr": null,
  6518. "partUserCount": "0",
  6519. "centerCode": "12403",
  6520. "notAuthCenter": null,
  6521. "cityCode": "430600000000",
  6522. "bigChannelCode": "M",
  6523. "bigChannelName": "直营渠道",
  6524. "smallChannelCode": "HM006",
  6525. "smallChannelName": "准三专工程类",
  6526. "mdmFlag": 1,
  6527. "zhaobMoney": 0,
  6528. "zhaobCount": 0,
  6529. "signCount": 0,
  6530. "partnershipDomainALL": null,
  6531. "partnershipDomainPL011": null,
  6532. "partnershipDomainPL005": null,
  6533. "partnershipDomainPL002": null,
  6534. "partnershipDomainPL001": null,
  6535. "partnershipDomainSPL007": null,
  6536. "partnershipDomainSPL006": null,
  6537. "partnershipDomainPL003": null,
  6538. "partnershipDomainPL007": null,
  6539. "partnershipDomainPL006": null,
  6540. "potentialList": [],
  6541. "qzType": 0,
  6542. "qzFlag": 0,
  6543. "enterpriseId": null,
  6544. "nowZhaobMoneyD": 0,
  6545. "historyZhaobMoneyD": 0,
  6546. "nowZhaobMoney": "0",
  6547. "historyZhaobMoney": "0",
  6548. "collaborationChanges": null,
  6549. "collaborationChangesReduce": null,
  6550. "partnerType": null,
  6551. "partnerTypeCode": null,
  6552. "oneYearZhongbD": 0,
  6553. "historyZhongbD": 0,
  6554. "oneYearZhongb": "0",
  6555. "historyZhongb": "0",
  6556. "shareUserCode": null,
  6557. "shareUserName": null,
  6558. "pcShareUserName": null,
  6559. "legalPerson": null,
  6560. "registerDate": null,
  6561. "registerAmount": null,
  6562. "address": null,
  6563. "partnershipList": [],
  6564. "certificateList": [],
  6565. "partnership": "空白",
  6566. "pcList": [
  6567. {
  6568. "dataCode": "空白",
  6569. "dataName": "全产业",
  6570. "tagCode": null
  6571. }
  6572. ],
  6573. "pcChangeList": [],
  6574. "importDate": "2008-07-22 19:06:33",
  6575. "createByDate": "2023-11-23 18:46:36",
  6576. "sevenDayCreateTag": null,
  6577. "linkSize": 0
  6578. },
  6579. {
  6580. "id": "2024041592147708",
  6581. "center": "长沙",
  6582. "areaCode": "M4301",
  6583. "areaName": "长沙小微",
  6584. "city": "株洲市",
  6585. "partScale": 0,
  6586. "zbMoney": 0,
  6587. "custName": "株洲朝晖嘉恒家居销售有限责任公司",
  6588. "custCode": "8800566907",
  6589. "officeAddr": "湖南省株洲市石峰区铜塘湾街道清水路419号火炬工程公司综合楼H222房",
  6590. "industryStr": null,
  6591. "brandStr": null,
  6592. "partUserCount": "0",
  6593. "centerCode": "12403",
  6594. "notAuthCenter": null,
  6595. "cityCode": "430200000000",
  6596. "bigChannelCode": "M",
  6597. "bigChannelName": "直营渠道",
  6598. "smallChannelCode": "HA024",
  6599. "smallChannelName": "纯三专水联网前置类客户",
  6600. "mdmFlag": 1,
  6601. "zhaobMoney": 0,
  6602. "zhaobCount": 0,
  6603. "signCount": 0,
  6604. "partnershipDomainALL": null,
  6605. "partnershipDomainPL011": null,
  6606. "partnershipDomainPL005": null,
  6607. "partnershipDomainPL002": null,
  6608. "partnershipDomainPL001": null,
  6609. "partnershipDomainSPL007": null,
  6610. "partnershipDomainSPL006": null,
  6611. "partnershipDomainPL003": null,
  6612. "partnershipDomainPL007": null,
  6613. "partnershipDomainPL006": null,
  6614. "potentialList": [],
  6615. "qzType": 0,
  6616. "qzFlag": 0,
  6617. "enterpriseId": null,
  6618. "nowZhaobMoneyD": 0,
  6619. "historyZhaobMoneyD": 0,
  6620. "nowZhaobMoney": "0",
  6621. "historyZhaobMoney": "0",
  6622. "collaborationChanges": null,
  6623. "collaborationChangesReduce": null,
  6624. "partnerType": null,
  6625. "partnerTypeCode": null,
  6626. "oneYearZhongbD": 0,
  6627. "historyZhongbD": 0,
  6628. "oneYearZhongb": "0",
  6629. "historyZhongb": "0",
  6630. "shareUserCode": null,
  6631. "shareUserName": null,
  6632. "pcShareUserName": null,
  6633. "legalPerson": null,
  6634. "registerDate": null,
  6635. "registerAmount": null,
  6636. "address": null,
  6637. "partnershipList": [],
  6638. "certificateList": [],
  6639. "partnership": "空白",
  6640. "pcList": [
  6641. {
  6642. "dataCode": "空白",
  6643. "dataName": "全产业",
  6644. "tagCode": null
  6645. }
  6646. ],
  6647. "pcChangeList": [],
  6648. "importDate": "2024-04-15 19:34:03",
  6649. "createByDate": "2024-04-16 02:50:01",
  6650. "sevenDayCreateTag": null,
  6651. "linkSize": 0
  6652. },
  6653. {
  6654. "id": "2023082501536432",
  6655. "center": "长沙",
  6656. "areaCode": "M4301",
  6657. "areaName": "长沙小微",
  6658. "city": "岳阳市",
  6659. "partScale": 0,
  6660. "zbMoney": 0,
  6661. "custName": "(押金户)宁波市惠雅居环境科技有限公司",
  6662. "custCode": "C200152533",
  6663. "officeAddr": "浙江省宁波市奉化区锦屏街道印象奉化城8幢313-2室(自主申报)",
  6664. "industryStr": null,
  6665. "brandStr": null,
  6666. "partUserCount": "0",
  6667. "centerCode": "12403",
  6668. "notAuthCenter": null,
  6669. "cityCode": "430600000000",
  6670. "bigChannelCode": "M",
  6671. "bigChannelName": "直营渠道",
  6672. "smallChannelCode": "HA023",
  6673. "smallChannelName": "直营线上POP",
  6674. "mdmFlag": 1,
  6675. "zhaobMoney": 0,
  6676. "zhaobCount": 0,
  6677. "signCount": 0,
  6678. "partnershipDomainALL": null,
  6679. "partnershipDomainPL011": null,
  6680. "partnershipDomainPL005": null,
  6681. "partnershipDomainPL002": null,
  6682. "partnershipDomainPL001": null,
  6683. "partnershipDomainSPL007": null,
  6684. "partnershipDomainSPL006": null,
  6685. "partnershipDomainPL003": null,
  6686. "partnershipDomainPL007": null,
  6687. "partnershipDomainPL006": null,
  6688. "potentialList": [],
  6689. "qzType": 0,
  6690. "qzFlag": 0,
  6691. "enterpriseId": null,
  6692. "nowZhaobMoneyD": 0,
  6693. "historyZhaobMoneyD": 0,
  6694. "nowZhaobMoney": "0",
  6695. "historyZhaobMoney": "0",
  6696. "collaborationChanges": null,
  6697. "collaborationChangesReduce": null,
  6698. "partnerType": null,
  6699. "partnerTypeCode": null,
  6700. "oneYearZhongbD": 0,
  6701. "historyZhongbD": 0,
  6702. "oneYearZhongb": "0",
  6703. "historyZhongb": "0",
  6704. "shareUserCode": null,
  6705. "shareUserName": null,
  6706. "pcShareUserName": null,
  6707. "legalPerson": null,
  6708. "registerDate": null,
  6709. "registerAmount": null,
  6710. "address": null,
  6711. "partnershipList": [],
  6712. "certificateList": [],
  6713. "partnership": "空白",
  6714. "pcList": [
  6715. {
  6716. "dataCode": "空白",
  6717. "dataName": "全产业",
  6718. "tagCode": null
  6719. }
  6720. ],
  6721. "pcChangeList": [],
  6722. "importDate": "2023-08-25 00:00:00",
  6723. "createByDate": "2023-11-23 18:40:07",
  6724. "sevenDayCreateTag": null,
  6725. "linkSize": 0
  6726. },
  6727. {
  6728. "id": "2024031209534455",
  6729. "center": "长沙",
  6730. "areaCode": "M4301",
  6731. "areaName": "长沙小微",
  6732. "city": null,
  6733. "partScale": 0,
  6734. "zbMoney": 0,
  6735. "custName": "(金融备货空调户)衡阳市龙鑫暖通设备有限公司",
  6736. "custCode": "C200094595",
  6737. "officeAddr": "湖南省衡阳市衡东县洣水镇建材大市场D3栋113号",
  6738. "industryStr": null,
  6739. "brandStr": null,
  6740. "partUserCount": "0",
  6741. "centerCode": "12403",
  6742. "notAuthCenter": null,
  6743. "cityCode": "",
  6744. "bigChannelCode": "M",
  6745. "bigChannelName": "直营渠道",
  6746. "smallChannelCode": "HA002",
  6747. "smallChannelName": "纯三专海尔产品专卖类(空调)",
  6748. "mdmFlag": 1,
  6749. "zhaobMoney": 0,
  6750. "zhaobCount": 0,
  6751. "signCount": 0,
  6752. "partnershipDomainALL": null,
  6753. "partnershipDomainPL011": null,
  6754. "partnershipDomainPL005": null,
  6755. "partnershipDomainPL002": null,
  6756. "partnershipDomainPL001": null,
  6757. "partnershipDomainSPL007": null,
  6758. "partnershipDomainSPL006": null,
  6759. "partnershipDomainPL003": null,
  6760. "partnershipDomainPL007": null,
  6761. "partnershipDomainPL006": null,
  6762. "potentialList": [],
  6763. "qzType": 0,
  6764. "qzFlag": 0,
  6765. "enterpriseId": null,
  6766. "nowZhaobMoneyD": 0,
  6767. "historyZhaobMoneyD": 0,
  6768. "nowZhaobMoney": "0",
  6769. "historyZhaobMoney": "0",
  6770. "collaborationChanges": null,
  6771. "collaborationChangesReduce": null,
  6772. "partnerType": null,
  6773. "partnerTypeCode": null,
  6774. "oneYearZhongbD": 0,
  6775. "historyZhongbD": 0,
  6776. "oneYearZhongb": "0",
  6777. "historyZhongb": "0",
  6778. "shareUserCode": null,
  6779. "shareUserName": null,
  6780. "pcShareUserName": null,
  6781. "legalPerson": null,
  6782. "registerDate": null,
  6783. "registerAmount": null,
  6784. "address": null,
  6785. "partnershipList": [],
  6786. "certificateList": [],
  6787. "partnership": "空白",
  6788. "pcList": [
  6789. {
  6790. "dataCode": "空白",
  6791. "dataName": "全产业",
  6792. "tagCode": null
  6793. }
  6794. ],
  6795. "pcChangeList": [],
  6796. "importDate": "2024-03-12 00:00:00",
  6797. "createByDate": "2024-03-13 02:50:04",
  6798. "sevenDayCreateTag": null,
  6799. "linkSize": 0
  6800. },
  6801. {
  6802. "id": "2020110463325033",
  6803. "center": "长沙",
  6804. "areaCode": "M4301",
  6805. "areaName": "长沙小微",
  6806. "city": "益阳市",
  6807. "partScale": 0,
  6808. "zbMoney": 0,
  6809. "custName": "(押金户)沅江市佰城商贸有限公司",
  6810. "custCode": "C200144734",
  6811. "officeAddr": "湖南省益阳市沅江市琼湖办事处太白社区巴山西路02栋110",
  6812. "industryStr": null,
  6813. "brandStr": null,
  6814. "partUserCount": "0",
  6815. "centerCode": "12403",
  6816. "notAuthCenter": null,
  6817. "cityCode": "430900000000",
  6818. "bigChannelCode": "M",
  6819. "bigChannelName": "直营渠道",
  6820. "smallChannelCode": "HA001",
  6821. "smallChannelName": "纯三专海尔成套专卖类",
  6822. "mdmFlag": 1,
  6823. "zhaobMoney": 0,
  6824. "zhaobCount": 0,
  6825. "signCount": 0,
  6826. "partnershipDomainALL": null,
  6827. "partnershipDomainPL011": null,
  6828. "partnershipDomainPL005": null,
  6829. "partnershipDomainPL002": null,
  6830. "partnershipDomainPL001": null,
  6831. "partnershipDomainSPL007": null,
  6832. "partnershipDomainSPL006": null,
  6833. "partnershipDomainPL003": null,
  6834. "partnershipDomainPL007": null,
  6835. "partnershipDomainPL006": null,
  6836. "potentialList": [],
  6837. "qzType": 0,
  6838. "qzFlag": 0,
  6839. "enterpriseId": null,
  6840. "nowZhaobMoneyD": 0,
  6841. "historyZhaobMoneyD": 0,
  6842. "nowZhaobMoney": "0",
  6843. "historyZhaobMoney": "0",
  6844. "collaborationChanges": null,
  6845. "collaborationChangesReduce": null,
  6846. "partnerType": null,
  6847. "partnerTypeCode": null,
  6848. "oneYearZhongbD": 0,
  6849. "historyZhongbD": 0,
  6850. "oneYearZhongb": "0",
  6851. "historyZhongb": "0",
  6852. "shareUserCode": null,
  6853. "shareUserName": null,
  6854. "pcShareUserName": null,
  6855. "legalPerson": null,
  6856. "registerDate": null,
  6857. "registerAmount": null,
  6858. "address": null,
  6859. "partnershipList": [],
  6860. "certificateList": [],
  6861. "partnership": "空白",
  6862. "pcList": [
  6863. {
  6864. "dataCode": "空白",
  6865. "dataName": "全产业",
  6866. "tagCode": null
  6867. }
  6868. ],
  6869. "pcChangeList": [],
  6870. "importDate": "2020-11-04 00:00:00",
  6871. "createByDate": "2023-11-23 18:41:27",
  6872. "sevenDayCreateTag": null,
  6873. "linkSize": 0
  6874. },
  6875. {
  6876. "id": "2010111119712604",
  6877. "center": "长沙",
  6878. "areaCode": "M4301",
  6879. "areaName": "长沙小微",
  6880. "city": null,
  6881. "partScale": 222.35,
  6882. "zbMoney": 0,
  6883. "custName": "长沙宇珺制冷设备有限公司",
  6884. "custCode": "8800103818",
  6885. "officeAddr": "长沙市开福区四方坪胜利村北四栋3楼",
  6886. "industryStr": "商用空调(1)",
  6887. "brandStr": "海尔",
  6888. "partUserCount": "4",
  6889. "centerCode": "12403",
  6890. "notAuthCenter": null,
  6891. "cityCode": "",
  6892. "bigChannelCode": "M",
  6893. "bigChannelName": "直营渠道",
  6894. "smallChannelCode": "HM006",
  6895. "smallChannelName": "准三专工程类",
  6896. "mdmFlag": 1,
  6897. "zhaobMoney": 0,
  6898. "zhaobCount": 0,
  6899. "signCount": 0,
  6900. "partnershipDomainALL": null,
  6901. "partnershipDomainPL011": null,
  6902. "partnershipDomainPL005": null,
  6903. "partnershipDomainPL002": null,
  6904. "partnershipDomainPL001": null,
  6905. "partnershipDomainSPL007": null,
  6906. "partnershipDomainSPL006": null,
  6907. "partnershipDomainPL003": null,
  6908. "partnershipDomainPL007": null,
  6909. "partnershipDomainPL006": null,
  6910. "potentialList": [],
  6911. "qzType": 0,
  6912. "qzFlag": 0,
  6913. "enterpriseId": null,
  6914. "nowZhaobMoneyD": 0,
  6915. "historyZhaobMoneyD": 222,
  6916. "nowZhaobMoney": "0",
  6917. "historyZhaobMoney": "222",
  6918. "collaborationChanges": null,
  6919. "collaborationChangesReduce": null,
  6920. "partnerType": "企业,其他",
  6921. "partnerTypeCode": "91,-1",
  6922. "oneYearZhongbD": 0,
  6923. "historyZhongbD": 0,
  6924. "oneYearZhongb": "0",
  6925. "historyZhongb": "0",
  6926. "shareUserCode": null,
  6927. "shareUserName": null,
  6928. "pcShareUserName": null,
  6929. "legalPerson": null,
  6930. "registerDate": null,
  6931. "registerAmount": null,
  6932. "address": null,
  6933. "partnershipList": [
  6934. {
  6935. "dataCode": "薄弱",
  6936. "dataName": "智慧楼宇",
  6937. "tagCode": "8800103818"
  6938. }
  6939. ],
  6940. "certificateList": [],
  6941. "partnership": "薄弱",
  6942. "pcList": [
  6943. {
  6944. "dataCode": "薄弱",
  6945. "dataName": "全产业",
  6946. "tagCode": null
  6947. },
  6948. {
  6949. "dataCode": "薄弱",
  6950. "dataName": "智慧楼宇",
  6951. "tagCode": "8800103818"
  6952. }
  6953. ],
  6954. "pcChangeList": [],
  6955. "importDate": "2010-11-11 00:00:00",
  6956. "createByDate": "2023-11-23 18:46:06",
  6957. "sevenDayCreateTag": null,
  6958. "linkSize": 0
  6959. },
  6960. {
  6961. "id": "2024070480517895",
  6962. "center": "长沙",
  6963. "areaCode": "M4301",
  6964. "areaName": "长沙小微",
  6965. "city": "永州市",
  6966. "partScale": 0,
  6967. "zbMoney": 0,
  6968. "custName": "江永鑫达电器有限公司永明东路智家店",
  6969. "custCode": "8800577861",
  6970. "officeAddr": "永州市江永县永明东路41-43号",
  6971. "industryStr": null,
  6972. "brandStr": null,
  6973. "partUserCount": "0",
  6974. "centerCode": "12403",
  6975. "notAuthCenter": null,
  6976. "cityCode": "431100000000",
  6977. "bigChannelCode": "M",
  6978. "bigChannelName": "直营渠道",
  6979. "smallChannelCode": "HA001",
  6980. "smallChannelName": "纯三专海尔成套专卖类",
  6981. "mdmFlag": 1,
  6982. "zhaobMoney": 0,
  6983. "zhaobCount": 0,
  6984. "signCount": 0,
  6985. "partnershipDomainALL": null,
  6986. "partnershipDomainPL011": null,
  6987. "partnershipDomainPL005": null,
  6988. "partnershipDomainPL002": null,
  6989. "partnershipDomainPL001": null,
  6990. "partnershipDomainSPL007": null,
  6991. "partnershipDomainSPL006": null,
  6992. "partnershipDomainPL003": null,
  6993. "partnershipDomainPL007": null,
  6994. "partnershipDomainPL006": null,
  6995. "potentialList": [],
  6996. "qzType": 0,
  6997. "qzFlag": 0,
  6998. "enterpriseId": null,
  6999. "nowZhaobMoneyD": 0,
  7000. "historyZhaobMoneyD": 0,
  7001. "nowZhaobMoney": "0",
  7002. "historyZhaobMoney": "0",
  7003. "collaborationChanges": null,
  7004. "collaborationChangesReduce": null,
  7005. "partnerType": null,
  7006. "partnerTypeCode": null,
  7007. "oneYearZhongbD": 0,
  7008. "historyZhongbD": 0,
  7009. "oneYearZhongb": "0",
  7010. "historyZhongb": "0",
  7011. "shareUserCode": null,
  7012. "shareUserName": null,
  7013. "pcShareUserName": null,
  7014. "legalPerson": null,
  7015. "registerDate": null,
  7016. "registerAmount": null,
  7017. "address": null,
  7018. "partnershipList": [],
  7019. "certificateList": [],
  7020. "partnership": "空白",
  7021. "pcList": [
  7022. {
  7023. "dataCode": "空白",
  7024. "dataName": "全产业",
  7025. "tagCode": null
  7026. }
  7027. ],
  7028. "pcChangeList": [],
  7029. "importDate": "2024-07-04 12:06:02",
  7030. "createByDate": "2024-07-05 02:50:01",
  7031. "sevenDayCreateTag": null,
  7032. "linkSize": 0
  7033. },
  7034. {
  7035. "id": "2018080657293444",
  7036. "center": "长沙",
  7037. "areaCode": "M4301",
  7038. "areaName": "长沙小微",
  7039. "city": null,
  7040. "partScale": 0,
  7041. "zbMoney": 0,
  7042. "custName": "郴州市恒泰暖通工程有限公司博皇建材店",
  7043. "custCode": "8800293247",
  7044. "officeAddr": "郴州市北湖区青年大道288号",
  7045. "industryStr": null,
  7046. "brandStr": null,
  7047. "partUserCount": "0",
  7048. "centerCode": "12403",
  7049. "notAuthCenter": null,
  7050. "cityCode": null,
  7051. "bigChannelCode": "M",
  7052. "bigChannelName": "直营渠道",
  7053. "smallChannelCode": "HA007",
  7054. "smallChannelName": "纯三专工程类",
  7055. "mdmFlag": 1,
  7056. "zhaobMoney": 0,
  7057. "zhaobCount": 0,
  7058. "signCount": 0,
  7059. "partnershipDomainALL": null,
  7060. "partnershipDomainPL011": null,
  7061. "partnershipDomainPL005": null,
  7062. "partnershipDomainPL002": null,
  7063. "partnershipDomainPL001": null,
  7064. "partnershipDomainSPL007": null,
  7065. "partnershipDomainSPL006": null,
  7066. "partnershipDomainPL003": null,
  7067. "partnershipDomainPL007": null,
  7068. "partnershipDomainPL006": null,
  7069. "potentialList": [],
  7070. "qzType": 0,
  7071. "qzFlag": 0,
  7072. "enterpriseId": null,
  7073. "nowZhaobMoneyD": 0,
  7074. "historyZhaobMoneyD": 0,
  7075. "nowZhaobMoney": "0",
  7076. "historyZhaobMoney": "0",
  7077. "collaborationChanges": null,
  7078. "collaborationChangesReduce": null,
  7079. "partnerType": null,
  7080. "partnerTypeCode": null,
  7081. "oneYearZhongbD": 0,
  7082. "historyZhongbD": 0,
  7083. "oneYearZhongb": "0",
  7084. "historyZhongb": "0",
  7085. "shareUserCode": null,
  7086. "shareUserName": null,
  7087. "pcShareUserName": null,
  7088. "legalPerson": null,
  7089. "registerDate": null,
  7090. "registerAmount": null,
  7091. "address": null,
  7092. "partnershipList": [],
  7093. "certificateList": [],
  7094. "partnership": "空白",
  7095. "pcList": [
  7096. {
  7097. "dataCode": "空白",
  7098. "dataName": "全产业",
  7099. "tagCode": null
  7100. }
  7101. ],
  7102. "pcChangeList": [],
  7103. "importDate": "2018-08-06 16:13:26",
  7104. "createByDate": "2023-11-23 18:47:58",
  7105. "sevenDayCreateTag": null,
  7106. "linkSize": 0
  7107. },
  7108. {
  7109. "id": "2025063048505132",
  7110. "center": "长沙",
  7111. "areaCode": "M4301",
  7112. "areaName": "长沙小微",
  7113. "city": "长沙市",
  7114. "partScale": 0,
  7115. "zbMoney": 0,
  7116. "custName": "长沙铠丽星风净化设备有限公司",
  7117. "custCode": "8800638866",
  7118. "officeAddr": "长沙高新开发区枫林三路1099号步步高梅溪商业中心B区A2-202",
  7119. "industryStr": null,
  7120. "brandStr": null,
  7121. "partUserCount": "0",
  7122. "centerCode": "12403",
  7123. "notAuthCenter": null,
  7124. "cityCode": "430100000000",
  7125. "bigChannelCode": "M",
  7126. "bigChannelName": "直营渠道",
  7127. "smallChannelCode": "HA007",
  7128. "smallChannelName": "纯三专工程类",
  7129. "mdmFlag": 1,
  7130. "zhaobMoney": 0,
  7131. "zhaobCount": 0,
  7132. "signCount": 0,
  7133. "partnershipDomainALL": null,
  7134. "partnershipDomainPL011": null,
  7135. "partnershipDomainPL005": null,
  7136. "partnershipDomainPL002": null,
  7137. "partnershipDomainPL001": null,
  7138. "partnershipDomainSPL007": null,
  7139. "partnershipDomainSPL006": null,
  7140. "partnershipDomainPL003": null,
  7141. "partnershipDomainPL007": null,
  7142. "partnershipDomainPL006": null,
  7143. "potentialList": [],
  7144. "qzType": 0,
  7145. "qzFlag": 0,
  7146. "enterpriseId": null,
  7147. "nowZhaobMoneyD": 0,
  7148. "historyZhaobMoneyD": 0,
  7149. "nowZhaobMoney": "0",
  7150. "historyZhaobMoney": "0",
  7151. "collaborationChanges": null,
  7152. "collaborationChangesReduce": null,
  7153. "partnerType": null,
  7154. "partnerTypeCode": null,
  7155. "oneYearZhongbD": 0,
  7156. "historyZhongbD": 0,
  7157. "oneYearZhongb": "0",
  7158. "historyZhongb": "0",
  7159. "shareUserCode": null,
  7160. "shareUserName": null,
  7161. "pcShareUserName": null,
  7162. "legalPerson": null,
  7163. "registerDate": null,
  7164. "registerAmount": null,
  7165. "address": null,
  7166. "partnershipList": [],
  7167. "certificateList": [],
  7168. "partnership": "空白",
  7169. "pcList": [
  7170. {
  7171. "dataCode": "空白",
  7172. "dataName": "全产业",
  7173. "tagCode": null
  7174. }
  7175. ],
  7176. "pcChangeList": [],
  7177. "importDate": "2025-06-30 15:02:12",
  7178. "createByDate": "2025-07-01 02:50:02",
  7179. "sevenDayCreateTag": null,
  7180. "linkSize": 0
  7181. },
  7182. {
  7183. "id": "2018110923343011",
  7184. "center": "长沙",
  7185. "areaCode": "M4301",
  7186. "areaName": "长沙小微",
  7187. "city": null,
  7188. "partScale": 0,
  7189. "zbMoney": 0,
  7190. "custName": "湘乡锦腾贸易有限公司(顺逛专户)",
  7191. "custCode": "C200086457",
  7192. "officeAddr": "湘乡市新湘路办事处东山北路烟酒副食大市场A栋28号",
  7193. "industryStr": null,
  7194. "brandStr": null,
  7195. "partUserCount": "0",
  7196. "centerCode": "12403",
  7197. "notAuthCenter": null,
  7198. "cityCode": null,
  7199. "bigChannelCode": "M",
  7200. "bigChannelName": "直营渠道",
  7201. "smallChannelCode": "HA003",
  7202. "smallChannelName": "纯三专海尔产品专卖类(电厨)",
  7203. "mdmFlag": 1,
  7204. "zhaobMoney": 0,
  7205. "zhaobCount": 0,
  7206. "signCount": 0,
  7207. "partnershipDomainALL": null,
  7208. "partnershipDomainPL011": null,
  7209. "partnershipDomainPL005": null,
  7210. "partnershipDomainPL002": null,
  7211. "partnershipDomainPL001": null,
  7212. "partnershipDomainSPL007": null,
  7213. "partnershipDomainSPL006": null,
  7214. "partnershipDomainPL003": null,
  7215. "partnershipDomainPL007": null,
  7216. "partnershipDomainPL006": null,
  7217. "potentialList": [],
  7218. "qzType": 0,
  7219. "qzFlag": 0,
  7220. "enterpriseId": null,
  7221. "nowZhaobMoneyD": 0,
  7222. "historyZhaobMoneyD": 0,
  7223. "nowZhaobMoney": "0",
  7224. "historyZhaobMoney": "0",
  7225. "collaborationChanges": null,
  7226. "collaborationChangesReduce": null,
  7227. "partnerType": null,
  7228. "partnerTypeCode": null,
  7229. "oneYearZhongbD": 0,
  7230. "historyZhongbD": 0,
  7231. "oneYearZhongb": "0",
  7232. "historyZhongb": "0",
  7233. "shareUserCode": null,
  7234. "shareUserName": null,
  7235. "pcShareUserName": null,
  7236. "legalPerson": null,
  7237. "registerDate": null,
  7238. "registerAmount": null,
  7239. "address": null,
  7240. "partnershipList": [],
  7241. "certificateList": [],
  7242. "partnership": "空白",
  7243. "pcList": [
  7244. {
  7245. "dataCode": "空白",
  7246. "dataName": "全产业",
  7247. "tagCode": null
  7248. }
  7249. ],
  7250. "pcChangeList": [],
  7251. "importDate": "2018-11-09 13:15:41",
  7252. "createByDate": "2023-11-23 18:48:18",
  7253. "sevenDayCreateTag": null,
  7254. "linkSize": 0
  7255. },
  7256. {
  7257. "id": "2020081323550588",
  7258. "center": "长沙",
  7259. "areaCode": "M4301",
  7260. "areaName": "长沙小微",
  7261. "city": "长沙市",
  7262. "partScale": 0,
  7263. "zbMoney": 0,
  7264. "custName": "(押金户)长沙铮鸣环境科技有限公司",
  7265. "custCode": "C200143696",
  7266. "officeAddr": "长沙市雨花区芙蓉中路二段359号佳天大厦717房",
  7267. "industryStr": null,
  7268. "brandStr": null,
  7269. "partUserCount": "0",
  7270. "centerCode": "12403",
  7271. "notAuthCenter": null,
  7272. "cityCode": "430100000000",
  7273. "bigChannelCode": "M",
  7274. "bigChannelName": "直营渠道",
  7275. "smallChannelCode": "HM006",
  7276. "smallChannelName": "准三专工程类",
  7277. "mdmFlag": 1,
  7278. "zhaobMoney": 0,
  7279. "zhaobCount": 0,
  7280. "signCount": 0,
  7281. "partnershipDomainALL": null,
  7282. "partnershipDomainPL011": null,
  7283. "partnershipDomainPL005": null,
  7284. "partnershipDomainPL002": null,
  7285. "partnershipDomainPL001": null,
  7286. "partnershipDomainSPL007": null,
  7287. "partnershipDomainSPL006": null,
  7288. "partnershipDomainPL003": null,
  7289. "partnershipDomainPL007": null,
  7290. "partnershipDomainPL006": null,
  7291. "potentialList": [],
  7292. "qzType": 0,
  7293. "qzFlag": 0,
  7294. "enterpriseId": null,
  7295. "nowZhaobMoneyD": 0,
  7296. "historyZhaobMoneyD": 0,
  7297. "nowZhaobMoney": "0",
  7298. "historyZhaobMoney": "0",
  7299. "collaborationChanges": null,
  7300. "collaborationChangesReduce": null,
  7301. "partnerType": null,
  7302. "partnerTypeCode": null,
  7303. "oneYearZhongbD": 0,
  7304. "historyZhongbD": 0,
  7305. "oneYearZhongb": "0",
  7306. "historyZhongb": "0",
  7307. "shareUserCode": null,
  7308. "shareUserName": null,
  7309. "pcShareUserName": null,
  7310. "legalPerson": null,
  7311. "registerDate": null,
  7312. "registerAmount": null,
  7313. "address": null,
  7314. "partnershipList": [],
  7315. "certificateList": [],
  7316. "partnership": "空白",
  7317. "pcList": [
  7318. {
  7319. "dataCode": "空白",
  7320. "dataName": "全产业",
  7321. "tagCode": null
  7322. }
  7323. ],
  7324. "pcChangeList": [],
  7325. "importDate": "2020-08-13 00:00:00",
  7326. "createByDate": "2023-11-23 18:41:39",
  7327. "sevenDayCreateTag": null,
  7328. "linkSize": 0
  7329. },
  7330. {
  7331. "id": "2018110923337535",
  7332. "center": "长沙",
  7333. "areaCode": "M4301",
  7334. "areaName": "长沙小微",
  7335. "city": null,
  7336. "partScale": 0,
  7337. "zbMoney": 0,
  7338. "custName": "张家界华雅机电设备有限公司(顺逛专户)",
  7339. "custCode": "C200083789",
  7340. "officeAddr": "慈利县零阳镇零阳东路53号",
  7341. "industryStr": null,
  7342. "brandStr": null,
  7343. "partUserCount": "0",
  7344. "centerCode": "12403",
  7345. "notAuthCenter": null,
  7346. "cityCode": null,
  7347. "bigChannelCode": "M",
  7348. "bigChannelName": "直营渠道",
  7349. "smallChannelCode": "HA001",
  7350. "smallChannelName": "纯三专海尔成套专卖类",
  7351. "mdmFlag": 1,
  7352. "zhaobMoney": 0,
  7353. "zhaobCount": 0,
  7354. "signCount": 0,
  7355. "partnershipDomainALL": null,
  7356. "partnershipDomainPL011": null,
  7357. "partnershipDomainPL005": null,
  7358. "partnershipDomainPL002": null,
  7359. "partnershipDomainPL001": null,
  7360. "partnershipDomainSPL007": null,
  7361. "partnershipDomainSPL006": null,
  7362. "partnershipDomainPL003": null,
  7363. "partnershipDomainPL007": null,
  7364. "partnershipDomainPL006": null,
  7365. "potentialList": [],
  7366. "qzType": 0,
  7367. "qzFlag": 0,
  7368. "enterpriseId": null,
  7369. "nowZhaobMoneyD": 0,
  7370. "historyZhaobMoneyD": 0,
  7371. "nowZhaobMoney": "0",
  7372. "historyZhaobMoney": "0",
  7373. "collaborationChanges": null,
  7374. "collaborationChangesReduce": null,
  7375. "partnerType": null,
  7376. "partnerTypeCode": null,
  7377. "oneYearZhongbD": 0,
  7378. "historyZhongbD": 0,
  7379. "oneYearZhongb": "0",
  7380. "historyZhongb": "0",
  7381. "shareUserCode": null,
  7382. "shareUserName": null,
  7383. "pcShareUserName": null,
  7384. "legalPerson": null,
  7385. "registerDate": null,
  7386. "registerAmount": null,
  7387. "address": null,
  7388. "partnershipList": [],
  7389. "certificateList": [],
  7390. "partnership": "空白",
  7391. "pcList": [
  7392. {
  7393. "dataCode": "空白",
  7394. "dataName": "全产业",
  7395. "tagCode": null
  7396. }
  7397. ],
  7398. "pcChangeList": [],
  7399. "importDate": "2018-11-09 13:15:20",
  7400. "createByDate": "2023-11-23 18:48:24",
  7401. "sevenDayCreateTag": null,
  7402. "linkSize": 0
  7403. },
  7404. {
  7405. "id": "2022050761227272",
  7406. "center": "长沙",
  7407. "areaCode": "M4301",
  7408. "areaName": "长沙小微",
  7409. "city": "娄底市",
  7410. "partScale": 0,
  7411. "zbMoney": 0,
  7412. "custName": "(押金户)湖南超哥电器批发有限公司",
  7413. "custCode": "C200149612",
  7414. "officeAddr": "湖南省娄底市新化县上渡街道资江社区资江安置区236号",
  7415. "industryStr": null,
  7416. "brandStr": null,
  7417. "partUserCount": "0",
  7418. "centerCode": "12403",
  7419. "notAuthCenter": null,
  7420. "cityCode": "431300000000",
  7421. "bigChannelCode": "M",
  7422. "bigChannelName": "直营渠道",
  7423. "smallChannelCode": "HA011",
  7424. "smallChannelName": "纯三专海尔产品专卖类(净水+热水器)",
  7425. "mdmFlag": 1,
  7426. "zhaobMoney": 0,
  7427. "zhaobCount": 0,
  7428. "signCount": 0,
  7429. "partnershipDomainALL": null,
  7430. "partnershipDomainPL011": null,
  7431. "partnershipDomainPL005": null,
  7432. "partnershipDomainPL002": null,
  7433. "partnershipDomainPL001": null,
  7434. "partnershipDomainSPL007": null,
  7435. "partnershipDomainSPL006": null,
  7436. "partnershipDomainPL003": null,
  7437. "partnershipDomainPL007": null,
  7438. "partnershipDomainPL006": null,
  7439. "potentialList": [],
  7440. "qzType": 0,
  7441. "qzFlag": 0,
  7442. "enterpriseId": null,
  7443. "nowZhaobMoneyD": 0,
  7444. "historyZhaobMoneyD": 0,
  7445. "nowZhaobMoney": "0",
  7446. "historyZhaobMoney": "0",
  7447. "collaborationChanges": null,
  7448. "collaborationChangesReduce": null,
  7449. "partnerType": null,
  7450. "partnerTypeCode": null,
  7451. "oneYearZhongbD": 0,
  7452. "historyZhongbD": 0,
  7453. "oneYearZhongb": "0",
  7454. "historyZhongb": "0",
  7455. "shareUserCode": null,
  7456. "shareUserName": null,
  7457. "pcShareUserName": null,
  7458. "legalPerson": null,
  7459. "registerDate": null,
  7460. "registerAmount": null,
  7461. "address": null,
  7462. "partnershipList": [],
  7463. "certificateList": [],
  7464. "partnership": "空白",
  7465. "pcList": [
  7466. {
  7467. "dataCode": "空白",
  7468. "dataName": "全产业",
  7469. "tagCode": null
  7470. }
  7471. ],
  7472. "pcChangeList": [],
  7473. "importDate": "2022-05-07 00:00:00",
  7474. "createByDate": "2023-11-23 18:40:37",
  7475. "sevenDayCreateTag": null,
  7476. "linkSize": 0
  7477. },
  7478. {
  7479. "id": "2009061107040855",
  7480. "center": "长沙",
  7481. "areaCode": "M4301",
  7482. "areaName": "长沙小微",
  7483. "city": null,
  7484. "partScale": 0,
  7485. "zbMoney": 0,
  7486. "custName": "(押金户)桃源县大地电器有限公司",
  7487. "custCode": "C200046075",
  7488. "officeAddr": "桃源县漳江镇漳江北路",
  7489. "industryStr": null,
  7490. "brandStr": null,
  7491. "partUserCount": "0",
  7492. "centerCode": "12403",
  7493. "notAuthCenter": null,
  7494. "cityCode": null,
  7495. "bigChannelCode": "M",
  7496. "bigChannelName": "直营渠道",
  7497. "smallChannelCode": "HM002",
  7498. "smallChannelName": "准三专海尔家电卖场类",
  7499. "mdmFlag": 1,
  7500. "zhaobMoney": 0,
  7501. "zhaobCount": 0,
  7502. "signCount": 0,
  7503. "partnershipDomainALL": null,
  7504. "partnershipDomainPL011": null,
  7505. "partnershipDomainPL005": null,
  7506. "partnershipDomainPL002": null,
  7507. "partnershipDomainPL001": null,
  7508. "partnershipDomainSPL007": null,
  7509. "partnershipDomainSPL006": null,
  7510. "partnershipDomainPL003": null,
  7511. "partnershipDomainPL007": null,
  7512. "partnershipDomainPL006": null,
  7513. "potentialList": [],
  7514. "qzType": 0,
  7515. "qzFlag": 0,
  7516. "enterpriseId": null,
  7517. "nowZhaobMoneyD": 0,
  7518. "historyZhaobMoneyD": 0,
  7519. "nowZhaobMoney": "0",
  7520. "historyZhaobMoney": "0",
  7521. "collaborationChanges": null,
  7522. "collaborationChangesReduce": null,
  7523. "partnerType": null,
  7524. "partnerTypeCode": null,
  7525. "oneYearZhongbD": 0,
  7526. "historyZhongbD": 0,
  7527. "oneYearZhongb": "0",
  7528. "historyZhongb": "0",
  7529. "shareUserCode": null,
  7530. "shareUserName": null,
  7531. "pcShareUserName": null,
  7532. "legalPerson": null,
  7533. "registerDate": null,
  7534. "registerAmount": null,
  7535. "address": null,
  7536. "partnershipList": [],
  7537. "certificateList": [],
  7538. "partnership": "空白",
  7539. "pcList": [
  7540. {
  7541. "dataCode": "空白",
  7542. "dataName": "全产业",
  7543. "tagCode": null
  7544. }
  7545. ],
  7546. "pcChangeList": [],
  7547. "importDate": "2009-06-11 00:00:00",
  7548. "createByDate": "2023-11-23 18:46:23",
  7549. "sevenDayCreateTag": null,
  7550. "linkSize": 0
  7551. }
  7552. ]