p15.txt 236 KB

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