goods_demo_data.sql 2.3 MB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634
  1. SET FOREIGN_KEY_CHECKS=0;
  2. -- ----------------------------
  3. -- Table structure for `ibrand_category`
  4. -- ----------------------------
  5. DROP TABLE IF EXISTS `ibrand_category`;
  6. CREATE TABLE `ibrand_category` (
  7. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  8. `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  9. `description` text COLLATE utf8mb4_unicode_ci,
  10. `sort` int(10) unsigned NOT NULL DEFAULT '0',
  11. `status` tinyint(4) NOT NULL DEFAULT '1',
  12. `parent_id` int(10) unsigned DEFAULT NULL,
  13. `level` int(11) DEFAULT '1',
  14. `path` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '/',
  15. `_lft` int(10) unsigned DEFAULT '0',
  16. `_rgt` int(10) unsigned DEFAULT '0',
  17. `created_at` timestamp NULL DEFAULT NULL,
  18. `updated_at` timestamp NULL DEFAULT NULL,
  19. `deleted_at` timestamp NULL DEFAULT NULL,
  20. PRIMARY KEY (`id`),
  21. KEY `ibrand_category__lft__rgt_parent_id_index` (`_lft`,`_rgt`,`parent_id`)
  22. ) ENGINE=InnoDB AUTO_INCREMENT=61 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
  23. -- ----------------------------
  24. -- Records of ibrand_category
  25. -- ----------------------------
  26. INSERT INTO `ibrand_category` VALUES ('1', '男童专区', null, '2', '1', '0', '1', '/1/', null, null, '2017-05-11 11:30:20', '2017-09-22 13:07:52', null);
  27. INSERT INTO `ibrand_category` VALUES ('2', '女童专区', null, '3', '1', '0', '1', '/2/', null, null, '2017-05-11 11:45:26', '2017-09-22 13:07:52', null);
  28. INSERT INTO `ibrand_category` VALUES ('3', '男童T恤/衬衫', null, '0', '1', '1', '2', '/1/3/', null, null, '2017-05-11 11:46:11', '2018-05-16 15:57:36', null);
  29. INSERT INTO `ibrand_category` VALUES ('4', '休闲裤', null, '0', '1', '1', '2', '/1/4/', null, null, '2017-05-11 11:46:36', '2017-09-22 13:07:52', null);
  30. INSERT INTO `ibrand_category` VALUES ('5', '套装', null, '0', '1', '1', '2', '/1/5/', null, null, '2017-05-11 11:46:54', '2017-09-22 13:07:52', null);
  31. INSERT INTO `ibrand_category` VALUES ('6', '女童T恤/衬衫', null, '0', '1', '2', '2', '/2/6/', null, null, '2017-05-11 11:47:11', '2018-05-16 15:57:46', null);
  32. INSERT INTO `ibrand_category` VALUES ('7', '裙装', null, '0', '1', '2', '2', '/2/7/', null, null, '2017-05-11 11:47:21', '2017-09-22 13:07:52', null);
  33. INSERT INTO `ibrand_category` VALUES ('8', '裤装', null, '0', '1', '2', '2', '/2/8/', null, null, '2017-05-11 11:47:58', '2017-09-22 13:07:52', null);
  34. INSERT INTO `ibrand_category` VALUES ('9', '外套', null, '0', '1', '2', '2', '/2/9/', null, null, '2017-05-11 11:48:05', '2017-09-22 13:07:52', null);
  35. INSERT INTO `ibrand_category` VALUES ('10', '促销专区', null, '999', '1', '0', '1', '/10/', null, null, '2017-05-11 11:48:49', '2019-01-23 11:28:02', null);
  36. INSERT INTO `ibrand_category` VALUES ('11', '热卖专区', null, '1', '1', '0', '1', '/11/', null, null, '2017-05-11 11:49:00', '2017-09-22 13:07:52', null);
  37. INSERT INTO `ibrand_category` VALUES ('12', '套装', null, '0', '1', '2', '2', '/2/12/', null, null, '2017-05-11 11:50:52', '2017-09-22 13:07:52', null);
  38. INSERT INTO `ibrand_category` VALUES ('13', '5.11伞', null, '0', '1', '0', '1', '/13/', null, null, '2017-09-22 13:13:18', '2017-09-22 13:13:18', null);
  39. INSERT INTO `ibrand_category` VALUES ('14', '玩具', null, '0', '1', '0', '1', '/14/', null, null, '2017-10-16 15:02:28', '2017-10-16 15:02:28', null);
  40. INSERT INTO `ibrand_category` VALUES ('15', '亲子装', null, '0', '1', '0', '1', '/15/', null, null, '2018-05-15 15:51:10', '2018-05-15 15:51:10', null);
  41. INSERT INTO `ibrand_category` VALUES ('16', '母女亲子装', null, '0', '1', '15', '2', '/15/16/', null, null, '2018-05-15 15:51:49', '2018-05-15 15:51:49', null);
  42. INSERT INTO `ibrand_category` VALUES ('17', '一家三口亲子装', null, '0', '1', '15', '2', '/15/17/', null, null, '2018-05-15 15:52:05', '2018-05-15 15:52:05', null);
  43. INSERT INTO `ibrand_category` VALUES ('18', '新品', null, '1', '1', '0', '1', '/18/', null, null, '2018-05-21 11:20:08', '2018-08-10 16:52:40', null);
  44. INSERT INTO `ibrand_category` VALUES ('19', '5.22上新第一波', null, '2', '1', '18', '2', '/18/19/', null, null, '2018-05-21 11:21:21', '2018-08-10 16:52:49', null);
  45. INSERT INTO `ibrand_category` VALUES ('20', '家居服', null, '0', '1', '0', '1', '/20/', null, null, '2018-05-21 13:56:40', '2018-05-21 13:56:40', null);
  46. INSERT INTO `ibrand_category` VALUES ('21', '防晒服', null, '0', '1', '0', '1', '/21/', null, null, '2018-05-21 13:56:48', '2018-05-21 13:56:48', null);
  47. INSERT INTO `ibrand_category` VALUES ('23', '春夏款', null, '0', '1', '20', '2', '/20/23/', null, null, '2018-05-21 14:56:13', '2018-05-21 14:56:13', null);
  48. INSERT INTO `ibrand_category` VALUES ('24', '秋冬款', null, '0', '1', '20', '2', '/20/24/', null, null, '2018-05-21 14:56:29', '2018-05-21 14:56:29', null);
  49. INSERT INTO `ibrand_category` VALUES ('25', '背心', null, '0', '1', '1', '2', '/1/25/', null, null, '2018-05-25 14:06:41', '2018-05-25 14:07:09', null);
  50. INSERT INTO `ibrand_category` VALUES ('26', '5.28上新第二波', null, '3', '1', '18', '2', '/18/26/', null, null, '2018-05-31 16:52:18', '2018-08-10 16:53:18', null);
  51. INSERT INTO `ibrand_category` VALUES ('27', '防蚊防晒', null, '0', '1', '41', '2', '/41/27/', null, null, '2018-06-05 15:43:20', '2018-06-11 10:55:10', null);
  52. INSERT INTO `ibrand_category` VALUES ('28', '午睡毯', null, '0', '1', '32', '3', '/41/32/28/', null, null, '2018-06-05 15:43:55', '2018-06-11 12:34:13', null);
  53. INSERT INTO `ibrand_category` VALUES ('29', '防蚊', null, '0', '1', '27', '3', '/41/27/29/', null, null, '2018-06-07 11:08:49', '2018-06-11 10:55:10', null);
  54. INSERT INTO `ibrand_category` VALUES ('31', '防晒', null, '0', '1', '27', '3', '/41/27/31/', null, null, '2018-06-07 11:09:18', '2018-06-11 10:55:10', null);
  55. INSERT INTO `ibrand_category` VALUES ('32', '居家收纳', null, '0', '1', '41', '2', '/41/32/', null, null, '2018-06-07 14:51:39', '2018-06-11 10:55:01', null);
  56. INSERT INTO `ibrand_category` VALUES ('33', '上装', null, '0', '1', '0', '1', '/33/', null, null, '2018-06-08 11:43:05', '2018-06-08 11:43:05', null);
  57. INSERT INTO `ibrand_category` VALUES ('34', 'T恤', null, '0', '1', '33', '2', '/33/34/', null, null, '2018-06-08 11:43:16', '2018-06-08 11:43:16', null);
  58. INSERT INTO `ibrand_category` VALUES ('35', '背心', null, '0', '1', '33', '2', '/33/35/', null, null, '2018-06-08 11:43:26', '2018-06-08 11:43:26', null);
  59. INSERT INTO `ibrand_category` VALUES ('36', '上装', null, '0', '1', '0', '1', '/36/', null, null, '2018-06-08 11:43:44', '2018-06-08 11:43:44', null);
  60. INSERT INTO `ibrand_category` VALUES ('37', 'T恤', null, '0', '1', '36', '2', '/36/37/', null, null, '2018-06-08 11:44:07', '2018-06-08 11:44:07', null);
  61. INSERT INTO `ibrand_category` VALUES ('38', '背心', null, '0', '1', '36', '2', '/36/38/', null, null, '2018-06-08 11:44:17', '2018-06-08 11:44:26', null);
  62. INSERT INTO `ibrand_category` VALUES ('39', '连衣裙', null, '0', '1', '7', '3', '/2/7/39/', null, null, '2018-06-11 10:21:47', '2018-06-11 10:21:47', null);
  63. INSERT INTO `ibrand_category` VALUES ('40', '短裙', null, '0', '1', '7', '3', '/2/7/40/', null, null, '2018-06-11 10:22:05', '2018-06-11 10:22:05', null);
  64. INSERT INTO `ibrand_category` VALUES ('41', '夏季爆款', null, '0', '1', '0', '1', '/41/', null, null, '2018-06-11 10:53:19', '2018-09-03 14:36:21', null);
  65. INSERT INTO `ibrand_category` VALUES ('42', '6.8上新第三波', null, '3', '1', '18', '2', '/18/42/', null, null, '2018-06-11 12:37:16', '2018-06-11 12:37:16', null);
  66. INSERT INTO `ibrand_category` VALUES ('43', '2018秋新品', null, '4', '1', '18', '2', '/18/43/', null, null, '2018-08-10 16:50:45', '2018-08-10 16:53:03', null);
  67. INSERT INTO `ibrand_category` VALUES ('44', '外套', null, '0', '1', '1', '2', '/1/44/', null, null, '2018-08-10 16:51:05', '2018-08-10 16:51:05', null);
  68. INSERT INTO `ibrand_category` VALUES ('45', '儿童配饰', null, '0', '1', '0', '1', '/45/', null, null, '2018-08-16 16:12:35', '2018-09-19 11:08:30', null);
  69. INSERT INTO `ibrand_category` VALUES ('46', '渔夫帽', null, '0', '1', '45', '2', '/45/46/', null, null, '2018-08-16 16:12:45', '2018-08-16 16:12:45', null);
  70. INSERT INTO `ibrand_category` VALUES ('47', '棒球帽', null, '0', '1', '45', '2', '/45/47/', null, null, '2018-08-16 16:12:58', '2018-08-16 16:12:58', null);
  71. INSERT INTO `ibrand_category` VALUES ('48', '童鞋', null, '0', '1', '0', '1', '/48/', null, null, '2018-09-03 14:36:34', '2018-09-03 14:36:34', null);
  72. INSERT INTO `ibrand_category` VALUES ('49', '帆布鞋', null, '1', '1', '48', '2', '/48/49/', null, null, '2018-09-03 14:37:07', '2018-09-03 14:37:07', null);
  73. INSERT INTO `ibrand_category` VALUES ('50', '儿童内裤', null, '0', '1', '0', '1', '/50/', null, null, '2018-09-04 19:40:41', '2018-09-04 19:40:41', null);
  74. INSERT INTO `ibrand_category` VALUES ('51', '女童内裤', null, '0', '1', '50', '2', '/50/51/', null, null, '2018-09-04 19:41:06', '2018-09-04 19:41:06', null);
  75. INSERT INTO `ibrand_category` VALUES ('52', '男童内裤', null, '0', '1', '50', '2', '/50/52/', null, null, '2018-09-04 19:41:29', '2018-09-04 19:41:29', null);
  76. INSERT INTO `ibrand_category` VALUES ('53', '儿童袜子', null, '0', '1', '0', '1', '/53/', null, null, '2018-09-05 09:13:20', '2018-09-05 09:13:20', null);
  77. INSERT INTO `ibrand_category` VALUES ('54', '女童打底裤', null, '0', '1', '8', '3', '/2/8/54/', null, null, '2018-09-11 17:01:33', '2018-09-11 17:01:33', null);
  78. INSERT INTO `ibrand_category` VALUES ('55', '围巾', null, '0', '1', '45', '2', '/45/55/', null, null, '2018-09-18 10:23:32', '2018-09-19 11:07:08', null);
  79. INSERT INTO `ibrand_category` VALUES ('56', '儿童包包', null, '0', '1', '45', '2', '/45/56/', null, null, '2018-09-18 10:47:59', '2018-09-19 11:08:16', null);
  80. INSERT INTO `ibrand_category` VALUES ('57', '水杯', null, '0', '1', '0', '1', '/57/', null, null, '2018-09-18 13:10:43', '2018-09-18 13:10:43', null);
  81. -- ----------------------------
  82. -- Table structure for ibrand_goods
  83. -- ----------------------------
  84. DROP TABLE IF EXISTS `ibrand_goods`;
  85. CREATE TABLE `ibrand_goods` (
  86. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  87. `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  88. `goods_no` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  89. `brand_id` int(10) unsigned NOT NULL,
  90. `model_id` int(10) unsigned NOT NULL,
  91. `min_price` decimal(15,2) NOT NULL,
  92. `max_price` decimal(15,2) NOT NULL,
  93. `sell_price` decimal(15,2) NOT NULL,
  94. `market_price` decimal(15,2) DEFAULT NULL,
  95. `min_market_price` decimal(15,2) DEFAULT NULL,
  96. `cost_price` decimal(15,2) DEFAULT NULL,
  97. `weight` decimal(15,2) DEFAULT NULL,
  98. `store_nums` int(11) NOT NULL DEFAULT '0',
  99. `img` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  100. `content` mediumtext COLLATE utf8mb4_unicode_ci,
  101. `contentpc` mediumtext COLLATE utf8mb4_unicode_ci,
  102. `sync` tinyint(4) NOT NULL DEFAULT '0',
  103. `comment_count` int(11) NOT NULL DEFAULT '0',
  104. `visit_count` int(11) NOT NULL DEFAULT '0',
  105. `favorite_count` int(11) NOT NULL DEFAULT '0',
  106. `sale_count` int(11) NOT NULL DEFAULT '0',
  107. `grade` int(11) NOT NULL DEFAULT '0',
  108. `tags` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  109. `keywords` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  110. `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  111. `is_del` tinyint(4) NOT NULL DEFAULT '0',
  112. `is_largess` tinyint(4) NOT NULL DEFAULT '0',
  113. `is_commend` tinyint(4) NOT NULL DEFAULT '0',
  114. `is_new` tinyint(4) NOT NULL DEFAULT '0',
  115. `collocation` text COLLATE utf8mb4_unicode_ci,
  116. `extra` text COLLATE utf8mb4_unicode_ci,
  117. `created_at` timestamp NULL DEFAULT NULL,
  118. `updated_at` timestamp NULL DEFAULT NULL,
  119. `deleted_at` timestamp NULL DEFAULT NULL,
  120. PRIMARY KEY (`id`)
  121. ) ENGINE=InnoDB AUTO_INCREMENT=173 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
  122. -- ----------------------------
  123. -- Records of ibrand_goods
  124. -- ----------------------------
  125. INSERT INTO `ibrand_goods` VALUES ('2', '2017新款夏季韩版儿童纯棉公主裙', 'YLY142', '1', '2', '99.00', '99.00', '99.00', '199.00', '199.00', null, null, '265', 'http://admin.viperky.com/uploads/fHKf65Xc6F.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/328/942/4106249823_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/226/552/4106255622_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/998/642/4106246899_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/957/252/4106252759_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/569/003/4110300965_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/206/398/4106893602_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/410/762/4106267014_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/407/303/4110303704_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/313/162/4106261313_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/407/852/4106258704_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/902/903/4110309209_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/663/462/4106264366_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/976/603/4110306679_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/150/998/4106899051_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/868/552/4106255868_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '4', '0', '潮范', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-05-11 16:06:19', '2017-09-22 12:55:00', null);
  126. INSERT INTO `ibrand_goods` VALUES ('3', '女童短裤夏季2017新款纯白韩版破洞女短裤宝宝沙滩短裤薄款', 'YDK42', '1', '1', '99.00', '99.00', '99.00', '199.00', '199.00', null, null, '147', 'http://admin.viperky.com/uploads/WW5Ye37FvP.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/345/747/4106747543_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/391/957/4106759193_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/972/147/4110741279_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/297/103/4107301792_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/474/703/4107307474_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/145/057/4106750541_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/826/403/4107304628_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/661/447/4110744166_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/071/267/4106762170_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/288/147/4106741882_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/700/567/4106765007_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/593/657/4106756395_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/569/837/4110738965_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/717/747/4106747717_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/943/957/4106759349_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '8', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-05-15 15:22:03', '2017-09-22 12:55:00', null);
  127. INSERT INTO `ibrand_goods` VALUES ('4', '女童短裤2017夏季新款儿童中腰牛裤短裤', 'YDK43', '1', '1', '120.00', '120.00', '120.00', '239.00', '239.00', null, null, '154', 'http://admin.viperky.com/uploads/kvcOIzDzVA.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/522/382/4174283225_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/912/682/4174286219_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/778/365/4175563877_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/594/379/4178973495_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/397/079/4178970793_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/756/082/4174280657_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/309/769/4178967903_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/087/665/4175566780_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/440/185/4175581044_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/662/575/4175575266_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/858/679/4178976858_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/442/485/4175584244_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/070/499/4178994070_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '4', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-05-15 15:29:10', '2017-09-22 12:55:00', null);
  128. INSERT INTO `ibrand_goods` VALUES ('5', '2017新款韩版儿童网纱连衣裙 吊带裙公主裙', 'YLY100', '1', '2', '135.00', '135.00', '135.00', '269.00', '269.00', null, null, '109', 'http://admin.viperky.com/uploads/AXRYRIOOgt.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/814/621/4068126418_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/282/657/4064756282_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/638/411/4068114836_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/252/957/4064759252_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/760/874/4065478067_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/148/711/4068117841_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/582/574/4065475285_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/275/747/4064747572_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/859/274/4065472958_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/799/357/4064753997_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/283/484/4065484382_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/071/867/4064768170_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/848/921/4068129848_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/252/957/4064759252_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '7', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-05-15 15:36:23', '2017-09-22 12:55:00', null);
  129. INSERT INTO `ibrand_goods` VALUES ('6', '女童连衣裙夏季新款2017韩版儿童公主无袖裙', 'YLY130', '1', '2', '135.00', '135.00', '135.00', '269.00', '269.00', null, null, '245', 'http://admin.viperky.com/uploads/rGP6aqDWdc.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/142/033/4015330241_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/656/683/4014386656_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/102/333/4015333201_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/523/444/4017444325_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/719/123/4015321917_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/708/723/4015327807_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/096/383/4014383690_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/640/593/4014395046_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/039/813/4015318930_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/359/773/4014377953_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/635/293/4014392536_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/947/144/4017441749_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/523/444/4017444325_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '7', '0', '潮范,公主,可爱', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-05-15 15:45:37', '2017-09-22 12:55:00', null);
  130. INSERT INTO `ibrand_goods` VALUES ('7', '2017新款夏季撞色拼接绣花纱裙', 'YLY104', '1', '2', '85.00', '85.00', '85.00', '169.00', '169.00', null, null, '225', 'http://admin.viperky.com/uploads/pd8GFZNwWK.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/372/835/4076538273_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/757/925/4076529757_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/284/235/4076532482_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/604/284/4073482406_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/193/145/4076541391_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/732/884/4073488237_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/212/900/4073009212_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/146/535/4076535641_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/857/000/4073000758_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/031/584/4073485130_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/065/974/4073479560_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/599/325/4076523995_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/018/625/4076526810_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/604/284/4073482406_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '5', '0', '公主,可爱', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-05-15 16:00:54', '2017-09-22 12:55:00', null);
  131. INSERT INTO `ibrand_goods` VALUES ('8', '女童连衣裙夏季2017新款韩版卡通无袖公主连衣裙', 'YLY103', '1', '2', '135.00', '135.00', '135.00', '269.00', '269.00', null, null, '178', 'http://admin.viperky.com/uploads/rDJ3wYd7qK.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/844/753/3971357448_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/600/442/3974244006_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/356/271/3972172653_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/964/571/3972175469_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/553/063/3971360355_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/011/142/3974241110_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/839/661/3972166938_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/760/871/3972178067_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/517/922/3974229715_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/743/832/3974238347_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/328/232/3974232823_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/128/453/3971354821_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/894/532/3974235498_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/195/753/3971357591_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '8', '0', '卡通,公主', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-05-15 16:07:30', '2017-09-22 12:55:00', null);
  132. INSERT INTO `ibrand_goods` VALUES ('9', '女童夏季连衣裙2017新款儿童韩版女宝宝吊带裙', 'YLY125', '1', '2', '135.00', '135.00', '135.00', '269.00', '269.00', null, null, '228', 'http://admin.viperky.com/uploads/ZHujwnos8f.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/289/059/3987950982_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/179/749/3987947971_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/020/569/3987965020_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/435/659/3987956534_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/726/279/3990972627_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/191/959/3987959191_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/020/468/3988864020_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/573/168/3988861375_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/861/269/3987962168_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/856/858/3988858658_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/911/579/3990975119_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/911/879/3990978119_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/435/659/3987956534_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '4', '0', '潮范,花边', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-05-15 16:13:34', '2017-09-22 12:55:00', null);
  133. INSERT INTO `ibrand_goods` VALUES ('10', '女童短裙套装2017夏季新品韩版无袖卡通蓬蓬纱裙两件套', 'YTZ114', '1', '2', '125.00', '125.00', '125.00', '249.00', '249.00', null, null, '212', 'http://admin.viperky.com/uploads/uCXuuuBI4U.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/535/845/4016548535_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/262/497/4018794262_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/463/517/4015715364_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/335/907/4015709533_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/690/455/4016554096_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/704/197/4018791407_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/354/217/4015712453_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/194/155/4016551491_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/818/545/4016545818_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/885/887/4018788588_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/009/287/4018782900_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/526/587/4018785625_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/543/817/4015718345_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/066/845/4016548660_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/690/455/4016554096_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '5', '0', '套装,公主', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-05-15 16:41:51', '2017-09-22 12:55:00', null);
  134. INSERT INTO `ibrand_goods` VALUES ('11', '夏装2017新款儿童纯棉公主裙背心裙吊带裙', 'YLY108', '1', '2', '99.00', '99.00', '99.00', '199.00', '199.00', null, null, '500', 'http://admin.viperky.com/uploads/hUcpOHtNJ8.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/946/756/4049657649_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/143/366/4049663341_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/110/889/4052988011_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/004/391/4050193400_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/623/991/4050199326_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/032/666/4049666230_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/257/456/4049654752_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/355/289/4052982553_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/120/966/4049669021_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><img src=\"http://admin.viperky.com/uploads/ueditor/php/upload/image/20170515/1494838354941908.jpeg\" style=\"\" title=\"1494838354941908.jpeg\"/></p><p><img src=\"http://admin.viperky.com/uploads/ueditor/php/upload/image/20170515/1494838355986795.jpeg\" style=\"\" title=\"1494838355986795.jpeg\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/506/691/4050196605_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/682/589/4052985286_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/251/499/4052994152_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/141/199/4052991141_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/798/756/4049657897_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '11', '0', '运动,公主,可爱', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-05-15 16:52:45', '2017-09-22 12:55:00', null);
  135. INSERT INTO `ibrand_goods` VALUES ('12', '夏季2017新款韩版卡通印花无袖小童公主连衣裙', 'YLY116', '1', '2', '99.00', '99.00', '99.00', '199.00', '199.00', null, null, '183', 'http://admin.viperky.com/uploads/k8OKH0uDdh.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/055/659/3971956550_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/086/681/3971186680_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/177/081/3971180771_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/842/291/3971192248_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/445/981/3971189544_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/495/359/3971953594_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/463/269/3971962364_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/272/569/3971965272_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/129/771/3971177921_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/166/820/3974028661_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/299/520/3974025992_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/518/381/3971183815_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/370/591/3971195073_885594632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '7', '0', '卡通,印花,公主', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-05-15 17:24:01', '2017-09-22 12:55:00', null);
  136. INSERT INTO `ibrand_goods` VALUES ('13', '5.11网红伞', '77000', '2', '4', '298.00', '298.00', '298.00', '298.00', '298.00', null, null, '95', 'https://cdn.viperky.com/storage/images/20170922/zkxPM8kQP5.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20170922/1506074997743261.jpeg\" style=\"\" title=\"1506074997743261.jpeg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20170922/1506074998439720.jpeg\" style=\"\" title=\"1506074998439720.jpeg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20170922/1506074998754948.jpeg\" style=\"\" title=\"1506074998754948.jpeg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20170922/1506074998712176.jpeg\" style=\"\" title=\"1506074998712176.jpeg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20170922/1506074998933688.jpeg\" style=\"\" title=\"1506074998933688.jpeg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20170922/1506074998924112.jpeg\" style=\"\" title=\"1506074998924112.jpeg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20170922/1506074998901924.jpeg\" style=\"\" title=\"1506074998901924.jpeg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20170922/1506074998912948.jpeg\" style=\"\" title=\"1506074998912948.jpeg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20170922/1506074998922665.jpeg\" style=\"\" title=\"1506074998922665.jpeg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20170922/1506074998254980.jpeg\" style=\"\" title=\"1506074998254980.jpeg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20170922/1506074998669268.jpeg\" style=\"\" title=\"1506074998669268.jpeg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20170922/1506074998109744.jpeg\" style=\"\" title=\"1506074998109744.jpeg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20170922/1506074998953364.jpeg\" style=\"\" title=\"1506074998953364.jpeg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20170922/1506074999954885.jpeg\" style=\"\" title=\"1506074999954885.jpeg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20170922/1506074999749107.jpeg\" title=\"1506074999749107.jpeg\" style=\"white-space: normal;\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20170922/1506074999122238.jpeg\" style=\"\" title=\"1506074999122238.jpeg\"/></p><p><br/></p>', null, '0', '0', '0', '0', '8', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-09-22 13:26:08', '2018-08-14 16:43:20', null);
  137. INSERT INTO `ibrand_goods` VALUES ('14', '迪士尼球拍小学生双拍亲子互动小孩宝宝玩具3-12岁儿童羽毛球拍', 'SD21001', '3', '5', '28.00', '28.00', '28.00', '37.00', '37.00', null, null, '5', 'https://cdn.viperky.com/storage/images/20171016/16KrfmUqvK.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171019/1508426232406895.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171019/1508426238551490.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171019/1508426244545440.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171019/1508426248841405.jpg\"/></p>', null, '0', '0', '0', '0', '6', '0', '', '', '', '0', '1', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-10-16 15:09:03', '2018-03-30 08:08:07', null);
  138. INSERT INTO `ibrand_goods` VALUES ('15', '韩国正品进口jumony sillymann思利满儿童硅胶水袋水壶便携300ml', 'jumony300', '3', '5', '145.00', '145.00', '145.00', '145.00', '145.00', null, null, '20', 'https://cdn.viperky.com/storage/images/20171018/TPNPxi1IAQ.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508335830615807.jpg\" align=\"absmiddle\" style=\"border: 0px; vertical-align: top; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; max-width: 750px; background-color: rgb(255, 255, 255);\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508335830921969.jpg\" align=\"absmiddle\" style=\"border: 0px; vertical-align: top; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; max-width: 750px; background-color: rgb(255, 255, 255);\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508335830428752.jpg\" align=\"absmiddle\" style=\"border: 0px; vertical-align: top; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; max-width: 750px; background-color: rgb(255, 255, 255);\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508335830556123.jpg\" align=\"absmiddle\" style=\"border: 0px; vertical-align: top; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; max-width: 750px; background-color: rgb(255, 255, 255);\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508335830961045.jpg\" class=\"\" align=\"absmiddle\" style=\"border: 0px; vertical-align: top; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; max-width: 750px; background-color: rgb(255, 255, 255);\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508335830601756.jpg\" class=\"\" align=\"absmiddle\" style=\"border: 0px; vertical-align: top; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; max-width: 750px; background-color: rgb(255, 255, 255);\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508335830898747.jpg\" class=\"\" align=\"absmiddle\" style=\"border: 0px; vertical-align: top; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; max-width: 750px; background-color: rgb(255, 255, 255);\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508335831698072.jpg\" class=\"\" align=\"absmiddle\" style=\"border: 0px; vertical-align: top; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; max-width: 750px; background-color: rgb(255, 255, 255);\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508335831579086.jpg\" class=\"\" align=\"absmiddle\" style=\"border: 0px; vertical-align: top; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; max-width: 750px; background-color: rgb(255, 255, 255);\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508335831997639.jpg\" class=\"\" align=\"absmiddle\" style=\"border: 0px; vertical-align: top; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; max-width: 750px; background-color: rgb(255, 255, 255);\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508335831141484.jpg\" class=\"\" align=\"absmiddle\" style=\"border: 0px; vertical-align: top; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; max-width: 750px; background-color: rgb(255, 255, 255);\"/></p>', null, '0', '0', '0', '0', '6', '0', '', '', '', '0', '1', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-10-18 22:12:12', '2017-10-18 22:12:12', null);
  139. INSERT INTO `ibrand_goods` VALUES ('16', 'THERMOS膳魔师 保温杯 儿童 吸管杯不锈钢宝宝学饮杯婴儿水杯便携', 'theroms305', '3', '5', '159.00', '159.00', '159.00', '198.00', '198.00', null, null, '40', 'https://cdn.viperky.com/storage/images/20171018/2HSs7xcIuS.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px;\"><img src=\"https://img.alicdn.com/imgextra/i2/202980389/TB2NJdGbRE_1uJjSZFOXXXNwXXa_!!202980389.jpg\" align=\"absmiddle\" style=\"border: 0px; vertical-align: top; max-width: 750px;\"/><img src=\"https://img.alicdn.com/imgextra/i4/202980389/TB23wyypEF7MKJjSZFLXXcMBVXa_!!202980389.jpg\" align=\"absmiddle\" style=\"border: 0px; vertical-align: top; max-width: 750px;\"/><img src=\"https://img.alicdn.com/imgextra/i3/202980389/TB23t1Dp8cHL1JjSZJiXXcKcpXa_!!202980389.jpg\" align=\"absmiddle\" style=\"border: 0px; vertical-align: top; max-width: 750px;\"/><img src=\"https://img.alicdn.com/imgextra/i2/202980389/TB2LARcgtXXWeJjSZFvXXa6lpXa_!!202980389.jpg\" align=\"absmiddle\" style=\"border: 0px; vertical-align: top; max-width: 750px;\"/><img src=\"https://img.alicdn.com/imgextra/i2/202980389/TB2Eh3hamsQ2uJjSZFFXXXYUFXa_!!202980389.jpg\" class=\"\" align=\"absmiddle\" width=\"750\" height=\"319\" style=\"border: 0px; vertical-align: top; max-width: 750px;\"/><img src=\"https://img.alicdn.com/imgextra/i4/202980389/TB22NqCp43IL1JjSZPfXXcrUVXa_!!202980389.jpg\" class=\"\" align=\"absmiddle\" width=\"750\" height=\"699\" style=\"border: 0px; vertical-align: top; max-width: 750px;\"/><img src=\"https://img.alicdn.com/imgextra/i1/202980389/TB2B8xwdIhmZKJjSZFPXXc5_XXa_!!202980389.jpg\" class=\"\" align=\"absmiddle\" width=\"750\" height=\"480\" style=\"border: 0px; vertical-align: top; max-width: 750px;\"/><img src=\"https://img.alicdn.com/imgextra/i4/202980389/TB2329npyFTMKJjSZFAXXckJpXa_!!202980389.jpg\" class=\"\" align=\"absmiddle\" width=\"750\" height=\"489\" style=\"border: 0px; vertical-align: top; max-width: 750px;\"/><img src=\"https://img.alicdn.com/imgextra/i4/202980389/TB2BJ05XIGg21JjSZFyXXXIZVXa_!!202980389.jpg\" class=\"\" align=\"absmiddle\" width=\"750\" height=\"488\" style=\"border: 0px; vertical-align: top; max-width: 750px;\"/><img src=\"https://img.alicdn.com/imgextra/i2/202980389/TB2LTiwb2nW1eJjSZFqXXa8sVXa_!!202980389.jpg\" class=\"\" align=\"absmiddle\" width=\"750\" height=\"465\" style=\"border: 0px; vertical-align: top; max-width: 750px;\"/><img src=\"https://img.alicdn.com/imgextra/i2/202980389/TB2nOAhamsQ2uJjSZFFXXXYUFXa_!!202980389.jpg\" class=\"\" align=\"absmiddle\" width=\"750\" height=\"462\" style=\"border: 0px; vertical-align: top; max-width: 750px;\"/><img src=\"https://img.alicdn.com/imgextra/i3/202980389/TB2.x1Cp43IL1JjSZPfXXcrUVXa_!!202980389.jpg\" class=\"\" align=\"absmiddle\" width=\"750\" height=\"400\" style=\"border: 0px; vertical-align: top; max-width: 750px;\"/><img src=\"https://img.alicdn.com/imgextra/i2/202980389/TB2iR0BjTJ_SKJjSZPiXXb3LpXa_!!202980389.jpg\" class=\"\" align=\"absmiddle\" width=\"750\" height=\"408\" style=\"border: 0px; vertical-align: top; max-width: 750px;\"/><img src=\"https://img.alicdn.com/imgextra/i2/202980389/TB2Clnup.UIL1JjSZFrXXb3xFXa_!!202980389.jpg\" class=\"\" align=\"absmiddle\" width=\"750\" height=\"270\" style=\"border: 0px; vertical-align: top; max-width: 750px;\"/><img src=\"https://img.alicdn.com/imgextra/i3/202980389/TB2.t77iE1HTKJjSZFmXXXeYFXa_!!202980389.jpg\" class=\"\" align=\"absmiddle\" width=\"750\" height=\"506\" style=\"border: 0px; vertical-align: top; max-width: 750px;\"/><img src=\"https://img.alicdn.com/imgextra/i2/202980389/TB2xKVGbRE_1uJjSZFOXXXNwXXa_!!202980389.jpg\" class=\"\" align=\"absmiddle\" width=\"750\" height=\"289\" style=\"border: 0px; vertical-align: top; max-width: 750px;\"/><img src=\"https://img.alicdn.com/imgextra/i1/202980389/TB2gK8GbRE_1uJjSZFOXXXNwXXa_!!202980389.jpg\" class=\"\" align=\"absmiddle\" width=\"750\" height=\"825\" style=\"border: 0px; vertical-align: top; max-width: 750px;\"/><img src=\"https://img.alicdn.com/imgextra/i4/202980389/TB2Ndvhh2MTUeJjSZFKXXagopXa_!!202980389.jpg\" class=\"\" align=\"absmiddle\" width=\"750\" height=\"471\" style=\"border: 0px; vertical-align: top; max-width: 750px;\"/><img src=\"https://img.alicdn.com/imgextra/i4/202980389/TB2gauvmMn.PuJjSZFkXXc_lpXa_!!202980389.jpg\" class=\"\" align=\"absmiddle\" width=\"750\" height=\"468\" style=\"border: 0px; vertical-align: top; max-width: 750px;\"/><img src=\"https://img.alicdn.com/imgextra/i3/202980389/TB2lmO5p.QIL1JjSZFhXXaDZFXa_!!202980389.jpg\" class=\"\" align=\"absmiddle\" width=\"750\" height=\"600\" style=\"border: 0px; vertical-align: top; max-width: 750px;\"/><img src=\"https://img.alicdn.com/imgextra/i1/202980389/TB2_cE6lamWQ1JjSZPhXXXCJFXa_!!202980389.jpg\" class=\"\" align=\"absmiddle\" width=\"750\" height=\"412\" style=\"border: 0px; vertical-align: top; max-width: 750px;\"/><img src=\"https://img.alicdn.com/imgextra/i4/202980389/TB2VIMhgfNZWeJjSZFpXXXjBFXa_!!202980389.jpg\" class=\"\" align=\"absmiddle\" width=\"750\" height=\"467\" style=\"border: 0px; vertical-align: top; max-width: 750px;\"/><img src=\"https://img.alicdn.com/imgextra/i4/202980389/TB2wHTop5AKL1JjSZFoXXagCFXa_!!202980389.jpg\" class=\"\" align=\"absmiddle\" width=\"750\" height=\"498\" style=\"border: 0px; vertical-align: top; max-width: 750px;\"/><img src=\"https://img.alicdn.com/imgextra/i2/202980389/TB25SPup.UIL1JjSZFrXXb3xFXa_!!202980389.jpg\" class=\"\" align=\"absmiddle\" width=\"750\" height=\"527\" style=\"border: 0px; vertical-align: top; max-width: 750px;\"/></p><p><span style=\"overflow: visible;text-decoration:line-through;\"><strong style=\"overflow: visible;\"></strong></span></p><p><span style=\"overflow: visible;\"></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; overflow: visible; line-height: 1.4;\"><img src=\"https://gdp.alicdn.com/imgextra/i1/202980389/TB28o7xXerAQeBjSZFwXXa_RpXa_!!202980389.jpg\" style=\"border: 0px; vertical-align: middle; overflow: visible;\"/></p><p></p><p><br/></p>', null, '0', '0', '0', '0', '8', '0', '', '', '', '0', '1', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-10-18 22:22:04', '2017-10-18 22:22:04', null);
  140. INSERT INTO `ibrand_goods` VALUES ('17', '日本进口锦化成迪士尼米妮米奇 婴儿童宝宝/餐盘/餐具套装', 'dismk12', '3', '5', '98.00', '98.00', '98.00', '121.00', '121.00', null, null, '60', 'https://cdn.viperky.com/storage/images/20171018/QRikr21Ozc.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><span style=\"font-size: 24px;\"><span style=\"color: rgb(204, 0, 0);\"><strong><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508337970769971.jpg\" class=\"\" align=\"absmiddle\" style=\"border: 0px; vertical-align: middle; max-width: 750px;\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508337971283944.jpg\" class=\"\" align=\"absmiddle\" style=\"border: 0px; vertical-align: middle; max-width: 750px;\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508337971561644.jpg\" class=\"\" align=\"absmiddle\" style=\"border: 0px; vertical-align: middle; max-width: 750px;\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508337971563682.jpg\" class=\"\" align=\"absmiddle\" style=\"border: 0px; vertical-align: middle; max-width: 750px;\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508337971853902.jpg\" class=\"\" align=\"absmiddle\" style=\"border: 0px; vertical-align: middle; max-width: 750px;\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508337971501516.jpg\" class=\"\" align=\"absmiddle\" style=\"border: 0px; vertical-align: middle; max-width: 750px;\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508337971554437.jpg\" class=\"\" align=\"absmiddle\" style=\"border: 0px; vertical-align: middle; max-width: 750px;\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508337971735787.jpg\" class=\"\" align=\"absmiddle\" style=\"border: 0px; vertical-align: middle; max-width: 750px;\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508337971946165.jpg\" class=\"\" align=\"absmiddle\" style=\"border: 0px; vertical-align: middle; max-width: 750px;\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508337971442333.jpg\" class=\"\" align=\"absmiddle\" style=\"border: 0px; vertical-align: middle; max-width: 750px;\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508337971589148.jpg\" class=\"\" align=\"absmiddle\" style=\"border: 0px; vertical-align: middle; max-width: 750px;\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508337972708574.jpg\" class=\"\" align=\"absmiddle\" style=\"border: 0px; vertical-align: middle; max-width: 750px;\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508337972984044.jpg\" class=\"\" align=\"absmiddle\" style=\"border: 0px; vertical-align: middle; max-width: 750px;\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508337972315549.jpg\" class=\"\" align=\"absmiddle\" style=\"border: 0px; vertical-align: middle; max-width: 750px;\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508337972881595.jpg\" class=\"\" align=\"absmiddle\" style=\"border: 0px; vertical-align: middle; max-width: 750px;\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508337972544439.jpg\" class=\"\" align=\"absmiddle\" style=\"border: 0px; vertical-align: middle; max-width: 750px;\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508337972877043.jpg\" class=\"\" align=\"absmiddle\" style=\"border: 0px; vertical-align: middle; max-width: 750px;\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508337972192066.jpg\" class=\"\" align=\"absmiddle\" style=\"border: 0px; vertical-align: middle; max-width: 750px;\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508337972833942.jpg\" class=\"\" align=\"absmiddle\" style=\"border: 0px; vertical-align: middle; max-width: 750px;\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508337972587984.jpg\" class=\"\" align=\"absmiddle\" style=\"border: 0px; vertical-align: middle; max-width: 750px;\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508337972516192.jpg\" class=\"\" align=\"absmiddle\" style=\"border: 0px; vertical-align: middle; max-width: 750px;\"/></strong></span></span></p><p><a style=\"color: rgb(51, 102, 204); outline: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; background-color: rgb(255, 255, 255);\" name=\"hn_mobiact_desc_1964805622_start\"></a></p><table cellpadding=\"0\" cellspacing=\"0\"><tbody><tr class=\"firstRow\"><td style=\"margin: 0px; padding: 0px;\"><br/></td></tr></tbody></table><p><a style=\"color: rgb(51, 102, 204); outline: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; background-color: rgb(255, 255, 255);\" name=\"hn_mobiact_desc_1964805622_end\"></a></p><p><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508337972431327.png\" class=\"\" style=\"border: 0px; vertical-align: middle;\"/></p><p>&nbsp;</p><p><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508337972733340.png\" class=\"\" style=\"border: 0px; vertical-align: middle;\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508337972828199.jpg\" class=\"\" align=\"absmiddle\" style=\"border: 0px; vertical-align: middle; text-align: center; line-height: 1.5; max-width: 750px;\"/></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; text-align: center; background-color: rgb(255, 255, 255);\">&nbsp;<img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508337973346568.jpg\" class=\"\" style=\"border: 0px; vertical-align: top; width: 700px; float: none; margin: 0px;\"/>&nbsp;</p><p><br/></p>', null, '0', '0', '0', '0', '11', '0', '', '', '', '0', '1', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-10-18 22:46:49', '2017-10-18 22:46:49', null);
  141. INSERT INTO `ibrand_goods` VALUES ('18', '狮王儿童牙膏0日本1进口2婴儿3宝宝4可吞咽-食5防蛀6含氟12食用岁', 'lionyg', '3', '5', '32.00', '32.00', '32.00', '60.00', '60.00', null, null, '60', 'https://cdn.viperky.com/storage/images/20171018/w0gVpGtQL2.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508338228810180.jpg\" class=\"\" width=\"750\" height=\"962\" style=\"border: 0px; vertical-align: top; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; background-color: rgb(255, 255, 255);\"/></p><p><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508338260977261.jpg\" class=\"\" width=\"750\" height=\"563\" style=\"border: 0px; vertical-align: top; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508338297461563.jpg\" class=\"\" width=\"750\" height=\"434\" style=\"border: 0px; vertical-align: top; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; background-color: rgb(255, 255, 255);\"/><span style=\"font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; background-color: rgb(255, 255, 255);\"></span><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508338297942342.jpg\" class=\"\" width=\"750\" height=\"578\" style=\"border: 0px; vertical-align: top; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508338297175965.jpg\" class=\"\" width=\"750\" height=\"787\" style=\"border: 0px; vertical-align: top; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508338297300444.jpg\" class=\"\" width=\"750\" height=\"760\" style=\"border: 0px; vertical-align: top; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508338297934672.jpg\" class=\"\" width=\"750\" height=\"552\" style=\"border: 0px; vertical-align: top; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; background-color: rgb(255, 255, 255);\"/></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px;\"><span style=\"font-family: 宋体;\"><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508338312584369.jpg\" class=\"\" width=\"750\" height=\"480\" style=\"border: 0px; vertical-align: top; line-height: 1.5; max-width: 750px;\"/><br/></span></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px;\"><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508338312376250.jpg\" class=\"\" width=\"730\" height=\"121\" style=\"border: 0px; vertical-align: top;\"/></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px;\"><img alt=\"\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508338313118289.png\" class=\"\" width=\"750\" height=\"380\" style=\"border: 0px; vertical-align: top;\"/></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px;\">&nbsp;</p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px;\">如果大家觉得不够直观,也可以参见下图:左边为3岁以下的用量,右边为三岁以上的用量。</p><p><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508338326377246.jpg\" class=\"\" align=\"absmiddle\" width=\"698\" height=\"395\" style=\"border: 0px; vertical-align: top; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; max-width: 750px; background-color: rgb(255, 255, 255);\"/></p>', null, '0', '0', '0', '0', '9', '0', '', '', '', '0', '1', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-10-18 22:52:47', '2017-10-18 22:52:47', null);
  142. INSERT INTO `ibrand_goods` VALUES ('19', '日本LION狮王细齿洁声波振动电动牙刷成人情侣旅行儿童小头软毛', 'liont', '3', '5', '109.00', '109.00', '109.00', '149.00', '149.00', null, null, '40', 'https://cdn.viperky.com/storage/images/20171018/ilPacpXOTu.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; line-height: 1.4; color: rgb(64, 64, 64); font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; white-space: normal; text-align: center; background-color: rgb(255, 255, 255);\"><img align=\"absmiddle\" src=\"https://img.alicdn.com/imgextra/i4/3038150213/TB2m9heiEF7MKJjSZFLXXcMBVXa_!!3038150213.gif\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none;\"/><img align=\"absmiddle\" src=\"https://img.alicdn.com/imgextra/i1/3038150213/TB2xRKlayb_F1JjSZFzXXc6KXXa_!!3038150213.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none;\"/><img align=\"absmiddle\" src=\"https://img.alicdn.com/imgextra/i3/3038150213/TB2yFGle_SPY1JjSZPcXXXIwpXa_!!3038150213.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none;\"/><img align=\"absmiddle\" src=\"https://img.alicdn.com/imgextra/i4/3038150213/TB2GAKgarL9F1JjSZFwXXcSuVXa_!!3038150213.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none;\"/><img align=\"absmiddle\" src=\"https://img.alicdn.com/imgextra/i2/3038150213/TB21711lbsTMeJjy1zeXXcOCVXa_!!3038150213.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none;\"/><img align=\"absmiddle\" src=\"https://img.alicdn.com/imgextra/i2/3038150213/TB2hJi1fEUIL1JjSZFrXXb3xFXa_!!3038150213.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none;\"/><img align=\"absmiddle\" src=\"https://img.alicdn.com/imgextra/i3/3038150213/TB211mjaCz9F1JjSZFMXXXmNXXa_!!3038150213.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none;\"/><img align=\"absmiddle\" src=\"https://img.alicdn.com/imgextra/i3/3038150213/TB2Yt99gvJNTKJjSspoXXc6mpXa_!!3038150213.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none;\"/><img align=\"absmiddle\" src=\"https://img.alicdn.com/imgextra/i4/3038150213/TB2Tc1hap6.F1JjSZFpXXcZjXXa_!!3038150213.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none;\"/><img align=\"absmiddle\" src=\"https://img.alicdn.com/imgextra/i2/3038150213/TB2r3yiaC_9F1JjSZFhXXbadVXa_!!3038150213.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none;\"/><img align=\"absmiddle\" src=\"https://img.alicdn.com/imgextra/i4/3038150213/TB2KJzNaS_9F1JjSZFrXXcrVFXa_!!3038150213.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none;\"/><img align=\"absmiddle\" src=\"https://img.alicdn.com/imgextra/i1/3038150213/TB2FfV7X.yfF1Jjy0FbXXXSupXa_!!3038150213.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none;\"/><img align=\"absmiddle\" src=\"https://img.alicdn.com/imgextra/i1/3038150213/TB2zKShaxz_F1JjSZFIXXcxHVXa_!!3038150213.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none;\"/></p><p><img class=\"desc_anchor img-ks-lazyload\" id=\"desc-module-2\" src=\"https://assets.alicdn.com/kissy/1.0.0/build/imglazyload/spaceball.gif\" style=\"margin: 0px; padding: 0px; border: 0px; height: 1px; display: block; clear: both; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; color: rgb(64, 64, 64); font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; background-color: rgb(255, 255, 255);\"/></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; line-height: 1.4; color: rgb(64, 64, 64); font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; white-space: normal; text-align: center; background-color: rgb(255, 255, 255);\">&nbsp;</p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; line-height: 1.4; color: rgb(64, 64, 64); font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; white-space: normal; text-align: center; background-color: rgb(255, 255, 255);\"><img align=\"absmiddle\" src=\"https://img.alicdn.com/imgextra/i2/3038150213/TB2Iyagasr_F1JjSZFvXXcmJVXa_!!3038150213.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '9', '0', '', '', '', '0', '1', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-10-18 22:57:27', '2017-10-18 22:57:27', null);
  143. INSERT INTO `ibrand_goods` VALUES ('20', '20寸卡通儿童拉杆箱小黄人男女宝宝行李箱万向轮旅行箱小孩可坐骑', 'XHR02', '3', '5', '258.00', '258.00', '258.00', '258.00', '258.00', null, null, '39', 'https://cdn.viperky.com/storage/images/20171018/zVj1XjxeRP.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"text-align: center;\"><span style=\"color: rgb(204, 0, 0); font-family: simhei; font-size: 48px; text-align: center; background-color: rgb(255, 255, 255);\">2016新款360度旋转飞机轮登机箱,配有美国海关认证TSA密码锁,高强度铝合金拉杆适合不同身高年龄段使用,成年人也可以用哦!!!内衬采用高档亲肤抗皱免烫涤纶面料。附送3种表情贴</span></p><p><span style=\"color: rgb(204, 0, 0); font-family: simhei; font-size: 48px; text-align: center; background-color: rgb(255, 255, 255);\"><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508338671460082.jpg\"/></span></p><p><span style=\"color: rgb(204, 0, 0); font-family: simhei; font-size: 48px; text-align: center; background-color: rgb(255, 255, 255);\"><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508338678431073.jpg\"/></span></p><p><span style=\"color: rgb(204, 0, 0); font-family: simhei; font-size: 48px; text-align: center; background-color: rgb(255, 255, 255);\"><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508338682965585.jpg\"/></span></p><p><span style=\"color: rgb(204, 0, 0); font-family: simhei; font-size: 48px; text-align: center; background-color: rgb(255, 255, 255);\"><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508338687465606.jpg\"/></span></p><p><span style=\"color: rgb(204, 0, 0); font-family: simhei; font-size: 48px; text-align: center; background-color: rgb(255, 255, 255);\"><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508338693348398.jpg\"/></span></p><p><span style=\"color: rgb(204, 0, 0); font-family: simhei; font-size: 48px; text-align: center; background-color: rgb(255, 255, 255);\"><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508338696798862.jpg\"/></span></p><p><span style=\"color: rgb(204, 0, 0); font-family: simhei; font-size: 48px; text-align: center; background-color: rgb(255, 255, 255);\"><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508338701965823.jpg\"/></span></p><p><span style=\"color: rgb(204, 0, 0); font-family: simhei; font-size: 48px; text-align: center; background-color: rgb(255, 255, 255);\"><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508338709760491.jpg\"/></span></p><p><span style=\"color: rgb(204, 0, 0); font-family: simhei; font-size: 48px; text-align: center; background-color: rgb(255, 255, 255);\"><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508338718736194.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508338722408327.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508338728869826.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508338740749280.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508338750552516.jpg\"/></span></p><p><span style=\"color: rgb(204, 0, 0); font-family: simhei; font-size: 48px; text-align: center; background-color: rgb(255, 255, 255);\"><br/></span></p>', null, '0', '0', '0', '0', '8', '0', '', '', '', '2', '1', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-10-18 22:59:15', '2018-09-10 15:26:44', null);
  144. INSERT INTO `ibrand_goods` VALUES ('21', '甘尼克宝贝BabyGanics 免洗洗手液便携儿童 无香柑橘两支装洗手液', 'BabyGanics', '3', '5', '79.00', '79.00', '79.00', '148.00', '148.00', null, null, '20', 'https://cdn.viperky.com/storage/images/20171018/xHFmGwCdvZ.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><span style=\"margin: 0px; padding: 0px;\"></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.4;\"><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339020775455.jpg\" alt=\"\" border=\"0\" usemap=\"#Map2\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: middle;\"/><map name=\"Map2\" style=\"margin: 0px; padding: 0px;\"><area coords=\"480,558,598,811\" href=\"https://detail.tmall.com/item.htm?spm=a1z10.3-b-s.w4011-14862618943.77.46f16db0nQij7f&id=14652190384&rn=0b6fa00e45c13f0187ea2895bba2bf29&abbucket=5&scene=taobao_shop\" target=\"_blank\" style=\"margin: 0px; padding: 0px;\"/><area coords=\"623,560,749,808\" href=\"https://detail.tmall.com/item.htm?spm=a1z10.3-b-s.w4011-14862618943.116.46f16db0nQij7f&id=21906951185&rn=0b6fa00e45c13f0187ea2895bba2bf29&abbucket=5&scene=taobao_shop\" target=\"_blank\" style=\"margin: 0px; padding: 0px;\"/></map><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339020900256.jpg\" border=\"0\" usemap=\"#Map\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: middle;\"/><map name=\"Map\" style=\"margin: 0px; padding: 0px;\"><area coords=\"458,522,610,813\" href=\"https://detail.tmall.com/item.htm?spm=a1z10.5-b-s.w4011-14862618940.57.kkE69i&id=14652190384&rn=a037ff5112b0ce3b18a0d55119253dba&abbucket=5&scene=taobao_shop\" target=\"_blank\" style=\"margin: 0px; padding: 0px;\"/><area coords=\"617,526,751,818\" href=\"https://detail.tmall.com/item.htm?spm=a1z10.5-b-s.w4011-14862618940.66.kkE69i&id=21906951185&rn=a037ff5112b0ce3b18a0d55119253dba&abbucket=5&scene=taobao_shop\" target=\"_blank\" style=\"margin: 0px; padding: 0px;\"/><area coords=\"18,942,181,1248\" href=\"https://detail.tmall.com/item.htm?spm=a1z10.3-b-s.w4011-14862618943.135.QP1I2K&id=44279511472&rn=50ec3ce8f0c207c152f69fcc4bce2a01&abbucket=5&scene=taobao_shop\" target=\"_blank\" style=\"margin: 0px; padding: 0px;\"/><area coords=\"190,944,355,1245\" href=\"https://detail.tmall.com/item.htm?spm=a1z10.3-b-s.w4011-14862618943.84.QP1I2K&id=17274696248&rn=50ec3ce8f0c207c152f69fcc4bce2a01&abbucket=5&scene=taobao_shop\" target=\"_blank\" style=\"margin: 0px; padding: 0px;\"/><area coords=\"22,1292,181,1536\" href=\"https://detail.tmall.com/item.htm?spm=a1z10.3-b-s.w4011-14862618943.96.QP1I2K&id=18051368670&rn=50ec3ce8f0c207c152f69fcc4bce2a01&abbucket=5&scene=taobao_shop\" target=\"_blank\" style=\"margin: 0px; padding: 0px;\"/><area coords=\"188,1294,321,1536\" href=\"https://detail.tmall.com/item.htm?spm=a1z10.3-b-s.w4011-14862618943.72.QP1I2K&id=17274452071&rn=50ec3ce8f0c207c152f69fcc4bce2a01&abbucket=5&scene=taobao_shop\" target=\"_blank\" style=\"margin: 0px; padding: 0px;\"/></map></p><p></p><p><span style=\"margin: 0px; padding: 0px;text-decoration:line-through;\"><strong style=\"margin: 0px; padding: 0px;\"></strong></span></p><p><img class=\"desc_anchor img-ks-lazyload\" id=\"desc-module-1\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339020399934.gif\" style=\"margin: 0px; padding: 0px; border: 0px; height: 1px; display: block; clear: both; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%;\"/></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; line-height: 1.4;\"><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339020707050.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none;\"/></p><p><img class=\"desc_anchor img-ks-lazyload\" id=\"desc-module-2\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339020399934.gif\" style=\"margin: 0px; padding: 0px; border: 0px; height: 1px; display: block; clear: both; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%;\"/></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; line-height: 1.4;\"><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339020823850.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339020132571.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339020209800.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339020753017.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339020711685.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none;\"/></p><p><img class=\"desc_anchor img-ks-lazyload\" id=\"desc-module-3\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339020399934.gif\" style=\"margin: 0px; padding: 0px; border: 0px; height: 1px; display: block; clear: both; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%;\"/></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; line-height: 1.4;\"><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339020645269.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339020588880.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339020156352.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339020219890.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339020515753.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339020885555.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339021397046.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '5', '0', '', '', '', '0', '1', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-10-18 23:04:10', '2017-10-18 23:04:10', null);
  145. INSERT INTO `ibrand_goods` VALUES ('22', '女宝宝1-2-3周岁小女孩子4-5男6儿童过家家玩具生日礼物女童7早教', '668-25', '3', '5', '88.00', '88.00', '88.00', '88.00', '88.00', null, null, '20', 'https://cdn.viperky.com/storage/images/20171018/mL9DUMJGGv.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><br/></p><p><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339026430253.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339032671252.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339037845302.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339041401359.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339047406993.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339051651924.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339057161535.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339061521869.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339065959228.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339068670597.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339073224416.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339079307551.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339083680612.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339088162365.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339108985565.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339094802607.jpg\" style=\"white-space: normal;\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339115419469.jpg\" style=\"white-space: normal;\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339147779829.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339151309703.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339157419745.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339162923021.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339167550270.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339189143012.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339195677878.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339204218810.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339210194646.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339215821624.jpg\"/></p><p><br/></p>', null, '0', '0', '0', '0', '11', '0', '', '', '', '0', '1', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-10-18 23:07:04', '2017-10-18 23:07:04', null);
  146. INSERT INTO `ibrand_goods` VALUES ('23', '日本进口狮王婴儿洗手液 儿童泡沫清洁液 宝宝免洗药用型消毒除菌', '49796001', '3', '5', '35.00', '35.00', '35.00', '40.00', '40.00', null, null, '20', 'https://cdn.viperky.com/storage/images/20171018/CKkCuuLJZc.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339263575678.jpg\" align=\"absmiddle\" style=\"border: 0px; vertical-align: top; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; max-width: 750px; background-color: rgb(255, 255, 255);\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339263588473.jpg\" align=\"absmiddle\" style=\"border: 0px; vertical-align: top; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; max-width: 750px; background-color: rgb(255, 255, 255);\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339263227771.jpg\" align=\"absmiddle\" style=\"border: 0px; vertical-align: top; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; max-width: 750px; background-color: rgb(255, 255, 255);\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339264680044.jpg\" class=\"\" align=\"absmiddle\" style=\"border: 0px; vertical-align: top; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; max-width: 750px; background-color: rgb(255, 255, 255);\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339264987773.jpg\" class=\"\" align=\"absmiddle\" style=\"border: 0px; vertical-align: top; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; max-width: 750px; background-color: rgb(255, 255, 255);\"/></p>', null, '0', '0', '0', '0', '8', '0', '', '', '', '0', '1', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-10-18 23:08:06', '2017-10-18 23:08:06', null);
  147. INSERT INTO `ibrand_goods` VALUES ('24', '日本正品vape婴幼儿3倍持久防蚊水/驱蚊止痒喷雾200ml', 'vapejp', '3', '5', '78.00', '78.00', '78.00', '82.00', '82.00', null, null, '19', 'https://cdn.viperky.com/storage/images/20171018/ByvnR9pZcf.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; text-align: -webkit-center; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"color: rgb(12, 52, 61);\"><strong><span style=\"font-family: arial;\">日本代购正品vape婴幼儿3倍持久防蚊水/驱蚊止痒喷雾200ml</span></strong></span></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; text-align: -webkit-center; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"color: rgb(204, 0, 0);\"><strong><span style=\"font-family: arial;\">规格:杏桃香味(粉色瓶装)/清爽柑橘(绿色瓶装)</span></strong></span></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; text-align: -webkit-center; white-space: normal; background-color: rgb(255, 255, 255);\">&nbsp;</p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; text-align: -webkit-center; white-space: normal; background-color: rgb(255, 255, 255);\">&nbsp;</p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; text-align: -webkit-center; white-space: normal; background-color: rgb(255, 255, 255);\">&nbsp;</p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; text-align: -webkit-center; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"color: rgb(12, 52, 61);\"><strong><span style=\"font-family: arial;\">含量:200ml</span></strong></span></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; text-align: -webkit-center; white-space: normal; background-color: rgb(255, 255, 255);\">&nbsp;</p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; text-align: -webkit-center; white-space: normal; background-color: rgb(255, 255, 255);\">&nbsp;</p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; text-align: -webkit-center; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"color: rgb(12, 52, 61);\"><strong><span style=\"font-family: arial;\">产地:日本</span></strong></span></p><p><span style=\"color: rgb(180, 95, 6);\"><strong><span style=\"font-family: arial;\">阴暗处保存</span></strong></span></p><p>&nbsp;</p><p>&nbsp;</p><p><span style=\"color: rgb(180, 95, 6);\"><strong><span style=\"font-family: arial;\">&nbsp;</span></strong></span></p><p><span style=\"color: rgb(180, 95, 6);\"><strong><span style=\"font-family: arial;\">含天然保湿成分,对皮肤低刺激</span></strong></span></p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; text-align: -webkit-center; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"color: rgb(180, 95, 6);\"><strong><span style=\"font-family: arial;\">驱避蚊子、跳蚤、螨、蝇、臭虫</span></strong></span></p><p><strong><span style=\"font-family: arial;\"><span style=\"color: rgb(111, 168, 220);\">&nbsp;</span></span></strong></p><p><span style=\"color: rgb(166, 77, 121);\"><strong><span style=\"font-family: arial;\">使用方法:</span></strong></span></p><p><span style=\"color: rgb(166, 77, 121);\"><strong><span style=\"font-family: arial;\">&nbsp;</span></strong></span></p><p><span style=\"color: rgb(166, 77, 121);\"><strong><span style=\"font-family: arial;\">1、将白色的扳手转到OPEN的位置。</span></strong></span></p><p><span style=\"color: rgb(166, 77, 121);\"><strong><span style=\"font-family: arial;\">&nbsp;</span></strong></span></p><p><span style=\"color: rgb(166, 77, 121);\"><strong><span style=\"font-family: arial;\">2、距离皮肤10cm左右适量的喷到皮肤露出的部位。</span></strong></span></p><p><span style=\"color: rgb(166, 77, 121);\"><strong><span style=\"font-family: arial;\">&nbsp;</span></strong></span></p><p><span style=\"color: rgb(166, 77, 121);\"><strong><span style=\"font-family: arial;\">3、脸,脖子部,可先喷到手心上后,再用手涂抹。</span></strong></span></p><p><span style=\"color: rgb(166, 77, 121);\"><strong><span style=\"font-family: arial;\">&nbsp;</span></strong></span></p><p><span style=\"color: rgb(166, 77, 121);\"><strong><span style=\"font-family: arial;\">4、使用后将白色的扳手,转回原处后保存。</span></strong></span></p><p>&nbsp;</p><p><strong><span style=\"font-family: arial;\"><span style=\"color: rgb(111, 168, 220);\">&nbsp;</span></span></strong></p><p><span style=\"color: rgb(180, 95, 6);\"><strong><span style=\"font-family: arial;\">使用量:</span></strong></span></p><p><span style=\"color: rgb(180, 95, 6);\"><strong><span style=\"font-family: arial;\">&nbsp;</span></strong></span></p><p><span style=\"color: rgb(180, 95, 6);\"><strong><span style=\"font-family: arial;\">6个月之内的新生婴儿请勿用。</span></strong></span></p><p><span style=\"color: rgb(180, 95, 6);\"><strong><span style=\"font-family: arial;\">&nbsp;</span></strong></span></p><p><span style=\"color: rgb(180, 95, 6);\"><strong><span style=\"font-family: arial;\">6个月-2岁:一天一次</span></strong></span></p><p><span style=\"color: rgb(180, 95, 6);\"><strong><span style=\"font-family: arial;\">&nbsp;</span></strong></span></p><p><span style=\"color: rgb(180, 95, 6);\"><strong><span style=\"font-family: arial;\">2岁-12岁:一天三次以内</span></strong></span></p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px;\"><strong><span style=\"font-family: arial;\"><span style=\"color: rgb(255, 0, 0);\">注意事项:</span></span></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px;\"><strong><span style=\"font-family: arial;\"><span style=\"color: rgb(255, 0, 0);\">&nbsp;&nbsp; 1、本品请存放于宝宝不能拿到的地方,勿让宝宝自行取用;</span></span></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px;\"><strong><span style=\"font-family: arial;\"><span style=\"color: rgb(255, 0, 0);\">&nbsp;&nbsp; 2、小儿(未满12岁)请在成人监护下使用,并按照规定用法次数使用;</span></span></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px;\"><strong><span style=\"font-family: arial;\"><span style=\"color: rgb(255, 0, 0);\">&nbsp;&nbsp; 3、本品只可外用,不可内服。肤质容易过敏的宝宝,可先在上臂内侧喷少量观察24小时</span></span></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px;\"><strong><span style=\"font-family: arial;\"><span style=\"color: rgb(255, 0, 0);\">如无异常情况方可以正常使用。</span></span></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px;\"><strong><span style=\"font-family: arial;\"><span style=\"color: rgb(255, 0, 0);\">&nbsp;&nbsp; 4、请勿喷于伤口和脸部周围。喷涂于宝宝手部时应避免宝宝舔手或用手揉眼睛。</span></span></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px;\"><strong><span style=\"font-family: arial;\"><span style=\"color: rgb(255, 0, 0);\">若不慎进入眼部应立即用大量清水冲洗并看医生;</span></span></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px;\"><strong><span style=\"font-family: arial;\"><span style=\"color: rgb(255, 0, 0);\">&nbsp;&nbsp; 5、本品请于干燥阴凉处保存,勿放置于靠近火源、高温、阳光直射处。</span></span></strong></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; text-align: -webkit-center; white-space: normal; background-color: rgb(255, 255, 255);\"><img height=\"61\" width=\"204\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339476862615.gif\" style=\"border: 0px; vertical-align: top; padding: 0px; margin: 0px;\"/></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; text-align: -webkit-center; white-space: normal; background-color: rgb(255, 255, 255);\">&nbsp;</p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; text-align: -webkit-center; white-space: normal; background-color: rgb(255, 255, 255);\"><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339476414045.gif\" class=\"\" width=\"300\" height=\"300\" style=\"border: 0px; vertical-align: top;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339476720345.jpg\" class=\"\" width=\"300\" height=\"300\" style=\"border: 0px; vertical-align: top;\"/></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; text-align: -webkit-center; white-space: normal; background-color: rgb(255, 255, 255);\">&nbsp;<img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339476141267.jpg\" class=\"\" width=\"600\" height=\"700\" style=\"border: 0px; vertical-align: top;\"/></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; text-align: -webkit-center; white-space: normal; background-color: rgb(255, 255, 255);\">&nbsp;</p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; text-align: -webkit-center; white-space: normal; background-color: rgb(255, 255, 255);\"><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339476331169.jpg\" class=\"\" width=\"616\" height=\"652\" style=\"border: 0px; vertical-align: top;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '12', '0', '', '', '', '0', '1', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-10-18 23:11:32', '2018-05-07 17:11:12', null);
  148. INSERT INTO `ibrand_goods` VALUES ('25', '小医生玩具套装工具箱打针护士男孩北美儿童医院过家家女孩听诊器', '3325', '3', '5', '39.90', '39.90', '39.90', '39.90', '39.90', null, null, '20', 'https://cdn.viperky.com/storage/images/20171018/VYnD5WaK1Y.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339512826209.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339458685666.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339466563092.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339476348924.jpg\"/></p>', null, '0', '0', '0', '0', '7', '0', '', '', '', '0', '1', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-10-18 23:11:54', '2017-10-18 23:11:54', null);
  149. INSERT INTO `ibrand_goods` VALUES ('26', '日本和光堂驱蚊贴 婴儿童天然卡通宝宝防蚊贴成人户外蚊子贴60枚', 'hgt60', '3', '5', '53.00', '53.00', '53.00', '53.00', '53.00', null, null, '20', 'https://cdn.viperky.com/storage/images/20171018/CnMiKyuRUF.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"color:#0000ff\"><span style=\"font-size: 24px; line-height: 36px;\"><strong>品牌:wakodo/和光堂</strong></span></span></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"color:#0000ff\"><span style=\"font-size: 24px; line-height: 36px;\"><strong>名称:天然桉树精油驱蚊贴</strong></span></span></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"color:#0000ff\"><span style=\"font-size: 24px; line-height: 36px;\"><strong>产品规格:60枚(需要66枚的可以订货噢)</strong></span></span></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"color:#0000ff\"><span style=\"font-size: 24px; line-height: 36px;\"><strong>保质期:3年,日本和光堂只标批号,和国内不同,标注生产日期。</strong></span></span></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"color:#0000ff\"><span style=\"font-size: 24px; line-height: 36px;\"><strong>使用年龄:出生宝宝及以上</strong></span></span></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"color:#0000ff\"><span style=\"font-size: 24px; line-height: 36px;\"><strong>产品时效:6-8小时</strong></span></span></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"color:#0000ff\"><span style=\"font-size: 24px; line-height: 36px;\"><strong>采购地:日本药妆店</strong></span></span></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"color:#0000ff\"><span style=\"font-size: 24px; line-height: 36px;\"><strong><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339730389460.jpg\" style=\"border: 0px; vertical-align: top;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339730823989.jpg\" style=\"border: 0px; vertical-align: top;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339730675989.jpg\" style=\"border: 0px; vertical-align: top;\"/></strong></span></span></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"color:#0000ff\"><span style=\"font-size: 24px; line-height: 36px;\"><strong><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339730623783.jpg\" style=\"border: 0px; vertical-align: top;\"/></strong></span></span></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"color:#0000ff\"><span style=\"font-size: 24px; line-height: 36px;\"></span></span></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"color:#0000ff\"><span style=\"font-size: 24px; line-height: 36px;\"></span></span></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"color:#0000ff\"><span style=\"font-size: 24px; line-height: 36px;\"><strong><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339730919600.jpg\" class=\"\" width=\"960\" height=\"1280\" style=\"border: 0px; vertical-align: top;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339730203964.jpg\" class=\"\" width=\"450\" height=\"800\" style=\"border: 0px; vertical-align: top;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339730331053.jpg\" class=\"\" width=\"450\" height=\"800\" style=\"border: 0px; vertical-align: top;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339730563541.jpg\" class=\"\" width=\"450\" height=\"800\" style=\"border: 0px; vertical-align: top;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339730415808.jpg\" class=\"\" width=\"450\" height=\"800\" style=\"border: 0px; vertical-align: top;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339731554389.jpg\" class=\"\" width=\"450\" height=\"800\" style=\"border: 0px; vertical-align: top;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339731953520.jpg\" class=\"\" width=\"450\" height=\"800\" style=\"border: 0px; vertical-align: top;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339731704734.jpg\" class=\"\" width=\"750\" height=\"1000\" style=\"border: 0px; vertical-align: top;\"/></strong></span></span></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; background-color: rgb(255, 255, 255);\">&nbsp;</p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"color:#0000ff\"><span style=\"font-size: 24px; line-height: 36px;\"><strong><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339731590153.jpg\" class=\"\" width=\"620\" height=\"960\" style=\"border: 0px; vertical-align: top;\"/></strong></span></span></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em; padding: 0px; font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; line-height: 21px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"color:#0000ff\"><span style=\"font-size: 24px; line-height: 36px;\"><strong><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339731917033.jpg\" class=\"\" width=\"620\" height=\"960\" style=\"border: 0px; vertical-align: top;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339731259706.jpg\" class=\"\" width=\"620\" height=\"960\" style=\"border: 0px; vertical-align: top;\"/>&nbsp;<img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339731814581.jpg\" class=\"\" width=\"620\" height=\"960\" style=\"border: 0px; vertical-align: top;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339731323768.jpg\" class=\"\" width=\"960\" height=\"1280\" style=\"border: 0px; vertical-align: top;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339731698797.jpg\" class=\"\" width=\"960\" height=\"1280\" style=\"border: 0px; vertical-align: top;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339731383570.jpg\" class=\"\" width=\"960\" height=\"1280\" style=\"border: 0px; vertical-align: top;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339732277018.jpg\" class=\"\" width=\"960\" height=\"1280\" style=\"border: 0px; vertical-align: top;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339732102752.jpg\" class=\"\" width=\"960\" height=\"1280\" style=\"border: 0px; vertical-align: top;\"/></strong></span></span></p><p><br/></p>', null, '0', '0', '0', '0', '4', '0', '', '', '', '0', '1', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-10-18 23:16:04', '2017-10-18 23:16:04', null);
  150. INSERT INTO `ibrand_goods` VALUES ('27', '雪花片儿童大号1000片数字益智拼插兼容乐高安全无毒塑料积木玩具', 'XHP001', '3', '5', '59.00', '59.00', '59.00', '59.00', '59.00', null, null, '10', 'https://cdn.viperky.com/storage/images/20171018/86j9I2u3AU.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339658479189.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339670463142.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339682643911.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339696710376.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339700619426.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339706364880.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339712240724.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339717497982.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339734769748.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339739985054.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339772711439.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339777639332.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339782208864.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339788938823.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339795649493.jpg\"/></p>', null, '0', '0', '0', '0', '7', '0', '', '', '', '2', '1', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-10-18 23:16:49', '2018-09-10 15:29:25', null);
  151. INSERT INTO `ibrand_goods` VALUES ('28', '喜多植物精油婴儿驱蚊贴54片 宝宝防蚊贴 日本儿童夏季用品蚊香贴', 'H33751', '3', '5', '22.90', '22.90', '22.90', '48.00', '48.00', null, null, '18', 'https://cdn.viperky.com/storage/images/20171018/9MnoG0V4aJ.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><table cellpadding=\"0\" cellspacing=\"0\" height=\"30\" width=\"750\"><tbody><tr class=\"firstRow\"><td style=\"margin: 0px; padding: 0px; word-break: break-all;\"><strong><span style=\"font-size: 24px;\"><span style=\"color: rgb(255, 0, 0);\"></span></span></strong><p style=\"margin-top: 1.12em; margin-bottom: 1.12em;\"><strong><span style=\"font-size: 24px;\"><a target=\"_blank\" href=\"https://item.taobao.com/item.htm?spm=a1z10.3-c.w4002-13323623004.10.9vmpGx&id=531252917426\" style=\"text-decoration: none; color: rgb(51, 102, 204); outline: 0px;\"></a></span></strong></p><strong><span style=\"font-size: 24px;\"><span style=\"color: rgb(255, 0, 0);\"></span></span></strong><p style=\"margin-top: 1.12em; margin-bottom: 1.12em;\"><strong><span style=\"font-size: 24px;\"><a target=\"_blank\" href=\"http://meal.taobao.com/mealDetail.htm?meal_id=468345104&seller_id=145397&mt=&meal_id=468345104&seller_id=145397\" style=\"text-decoration: none; color: rgb(51, 102, 204); outline: 0px;\"></a></span></strong></p><strong><span style=\"font-size: 24px;\"><span style=\"color: rgb(255, 0, 0);\"></span></span></strong><p style=\"margin-top: 1.12em; margin-bottom: 1.12em;\"><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339911932152.jpg\" class=\"\" style=\"border: 0px; vertical-align: top; line-height: 1.5; width: 750px;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339911800138.jpg\" class=\"\" width=\"790\" height=\"595\" style=\"border: 0px; vertical-align: top; line-height: 1.5; max-width: 750px;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339911585131.jpg\" class=\"\" width=\"750\" height=\"223\" style=\"border: 0px; vertical-align: top; line-height: 1.5; max-width: 750px;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339911420926.jpg\" class=\"\" width=\"750\" height=\"461\" style=\"border: 0px; vertical-align: top; line-height: 1.5; max-width: 750px;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339911235110.jpg\" class=\"\" width=\"790\" height=\"571\" style=\"border: 0px; vertical-align: top; line-height: 1.5; max-width: 750px;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339911810632.jpg\" class=\"\" width=\"790\" height=\"691\" style=\"border: 0px; vertical-align: top; line-height: 1.5; max-width: 750px;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339912551582.jpg\" class=\"\" width=\"790\" height=\"592\" style=\"border: 0px; vertical-align: top; line-height: 1.5; max-width: 750px;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339912502975.jpg\" class=\"\" width=\"790\" height=\"647\" style=\"border: 0px; vertical-align: top; line-height: 1.5; max-width: 750px;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339912957769.jpg\" class=\"\" width=\"790\" height=\"553\" style=\"border: 0px; vertical-align: top; line-height: 1.5; max-width: 750px;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339912923409.jpg\" class=\"\" width=\"790\" height=\"393\" style=\"border: 0px; vertical-align: top; line-height: 1.5; max-width: 750px;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339912950731.jpg\" class=\"\" width=\"790\" height=\"364\" style=\"border: 0px; vertical-align: top; line-height: 1.5; max-width: 750px;\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508339912994122.jpg\" class=\"\" width=\"790\" height=\"519\" style=\"border: 0px; vertical-align: top; line-height: 1.5; max-width: 750px;\"/></p><p style=\"margin-top: 1.12em; margin-bottom: 1.12em;\"><br/></p></td></tr></tbody></table><p><br/></p>', null, '0', '0', '0', '0', '10', '0', '', '', '', '0', '1', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-10-18 23:18:53', '2017-12-16 16:22:40', null);
  152. INSERT INTO `ibrand_goods` VALUES ('29', '磁力片积木二代精钢1-2-3-6-8-10周岁男孩女孩益智拼搭装儿童玩具', 'TI-2021', '3', '5', '79.00', '79.00', '79.00', '79.00', '79.00', null, null, '8', 'https://cdn.viperky.com/storage/images/20171018/qD7B2cr1m0.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340013869302.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340020688277.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340027249521.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340032863170.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340044718059.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340050832320.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340056779720.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340064554706.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340085190330.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340096943657.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340104821892.jpg\"/></p>', null, '0', '0', '0', '0', '8', '0', '', '', '', '2', '1', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-10-18 23:19:57', '2018-09-10 15:30:27', null);
  153. INSERT INTO `ibrand_goods` VALUES ('30', '军事战争野战军团拼装玩具儿童智力拼插兼容乐高积木男孩6-8-12岁', 'ENLIGHTEN', '3', '5', '128.00', '128.00', '128.00', '128.00', '128.00', null, null, '10', 'https://cdn.viperky.com/storage/images/20171018/I9DTSELLnn.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340268886197.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340272494133.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340278547017.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340282640287.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340287709374.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340293874991.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340298844397.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340302355964.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340309942358.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340313235448.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340328486147.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340332611380.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340337160619.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340341214049.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340348916334.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340352353526.jpg\"/></p>', null, '0', '0', '0', '0', '10', '0', '', '', '', '2', '1', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-10-18 23:25:57', '2018-09-10 15:31:02', null);
  154. INSERT INTO `ibrand_goods` VALUES ('31', '好孩子婴儿洗护礼盒 新生儿护肤品用品套装 宝宝洗发沐浴露爽身粉', 'Goodbaby2502', '3', '5', '118.00', '118.00', '118.00', '118.00', '118.00', null, null, '10', 'https://cdn.viperky.com/storage/images/20171018/7pvIhHhle9.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340678746773.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340682546540.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340689559525.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340694906783.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340699537816.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340709190950.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340717491584.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340722822646.jpg\"/></p>', null, '0', '0', '0', '0', '9', '0', '', '', '', '0', '1', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-10-18 23:32:08', '2017-10-18 23:32:08', null);
  155. INSERT INTO `ibrand_goods` VALUES ('32', 'gb好孩子婴儿湿巾新生儿宝宝手口湿纸巾海洋10片*10包随身装100抽', '6901755336458', '3', '5', '25.00', '25.00', '25.00', '25.00', '25.00', null, null, '10', 'https://cdn.viperky.com/storage/images/20171018/5zAmDVa5he.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340943628584.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340946647990.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340951386225.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340958610145.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340972674389.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340976186201.jpg\"/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171018/1508340981904993.jpg\"/></p>', null, '0', '0', '0', '0', '12', '0', '', '', '', '0', '1', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-10-18 23:36:24', '2017-10-18 23:36:24', null);
  156. INSERT INTO `ibrand_goods` VALUES ('33', '11.11 秒杀柔软百搭围脖', 'WEIBO1101', '4', '5', '16.11', '16.11', '16.11', '48.00', '48.00', null, null, '21', 'https://cdn.viperky.com/storage/images/20171109/GsGOskbHQB.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20171109/1510216830107646.jpeg\" title=\"1510216830107646.jpeg\" alt=\"双十一详情页规则说明.jpg\"/><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20171109/1510216460661894.jpeg\" title=\"1510216460661894.jpeg\" alt=\"围巾_秒杀商品简介_微信商城_01.jpg\"/><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20171109/1510216462704784.jpeg\" title=\"1510216462704784.jpeg\" alt=\"围巾_秒杀商品简介_微信商城_02.jpg\"/><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20171109/1510216465219513.jpeg\" title=\"1510216465219513.jpeg\" alt=\"围巾_秒杀商品简介_微信商城_03.jpg\"/><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20171109/1510216468669501.jpeg\" title=\"1510216468669501.jpeg\" alt=\"围巾_秒杀商品简介_微信商城_04.jpg\"/><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20171109/1510216470445419.jpeg\" title=\"1510216470445419.jpeg\" alt=\"围巾_秒杀商品简介_微信商城_05.jpg\"/><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20171109/1510216472322195.jpeg\" title=\"1510216472322195.jpeg\" alt=\"围巾_秒杀商品简介_微信商城_06.jpg\"/><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20171109/1510216475285733.jpeg\" title=\"1510216475285733.jpeg\" alt=\"围巾_秒杀商品简介_微信商城_07.jpg\"/><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20171109/1510216478925059.jpeg\" title=\"1510216478925059.jpeg\" alt=\"围巾_秒杀商品简介_微信商城_08.jpg\"/></p>', null, '0', '0', '0', '0', '9', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-11-09 16:39:47', '2017-12-27 15:57:48', null);
  157. INSERT INTO `ibrand_goods` VALUES ('34', '儿童袜子全棉秋冬韩版新款糖果色宽条纹堆堆袜【双11】', 'WAZI001', '4', '5', '2.11', '2.11', '2.11', '15.00', '15.00', null, null, '92', 'https://cdn.viperky.com/storage/images/20171109/eeRMsXwZ5q.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20171109/1510216830107646.jpeg\" title=\"1510216830107646.jpeg\" alt=\"双十一详情页规则说明.jpg\"/> &nbsp; &nbsp;<img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20171109/1510220160672988.jpeg\" title=\"1510220160672988.jpeg\" alt=\"袜子_秒杀商品简介_微信商城_01.jpg\"/><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20171109/1510220166981314.jpeg\" title=\"1510220166981314.jpeg\" alt=\"袜子_秒杀商品简介_微信商城_02.jpg\"/><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20171109/1510220172441759.jpeg\" title=\"1510220172441759.jpeg\" alt=\"袜子_秒杀商品简介_微信商城_03.jpg\"/><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20171109/1510220174322840.jpeg\" title=\"1510220174322840.jpeg\" alt=\"袜子_秒杀商品简介_微信商城_04.jpg\"/><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20171109/1510220177660275.jpeg\" title=\"1510220177660275.jpeg\" alt=\"袜子_秒杀商品简介_微信商城_05.jpg\"/><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20171109/1510220179722402.jpeg\" title=\"1510220179722402.jpeg\" alt=\"袜子_秒杀商品简介_微信商城_06.jpg\"/><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20171109/1510220182878976.jpeg\" title=\"1510220182878976.jpeg\" alt=\"袜子_秒杀商品简介_微信商城_07.jpg\"/><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20171109/1510220184626163.jpeg\" title=\"1510220184626163.jpeg\" alt=\"袜子_秒杀商品简介_微信商城_08.jpg\"/><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20171109/1510220187457767.jpeg\" title=\"1510220187457767.jpeg\" alt=\"袜子_秒杀商品简介_微信商城_09.jpg\"/><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20171109/1510220189545093.jpeg\" title=\"1510220189545093.jpeg\" alt=\"袜子_秒杀商品简介_微信商城_10.jpg\"/></p>', null, '0', '0', '0', '0', '9', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-11-09 17:38:05', '2017-12-15 12:35:05', null);
  158. INSERT INTO `ibrand_goods` VALUES ('35', '品质玩具【双11秒杀】', 'WANJU001', '4', '5', '2.11', '2.11', '2.11', '15.00', '15.00', null, null, '10', 'https://cdn.viperky.com/storage/images/20171109/JmZuys1UCw.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20171109/1510216830107646.jpeg\" title=\"1510216830107646.jpeg\" alt=\"双十一详情页规则说明.jpg\"/> &nbsp; &nbsp;<img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20171109/1510220381731456.jpeg\" title=\"1510220381731456.jpeg\" alt=\"玩具页面.jpg\"/></p>', null, '0', '0', '0', '0', '6', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-11-09 17:40:33', '2017-12-15 12:35:05', null);
  159. INSERT INTO `ibrand_goods` VALUES ('36', '迪士尼儿童保温杯带吸管防摔两用不锈钢宝宝水壶', 'TW-3035', '3', '5', '49.00', '49.00', '49.00', '228.00', '228.00', null, null, '300', 'https://cdn.viperky.com/storage/images/20171213/Tw89NLzAYY.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171213/1513158220477802.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none; color: rgb(64, 64, 64); font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171213/1513158220799399.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none; color: rgb(64, 64, 64); font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171213/1513158220878192.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none; color: rgb(64, 64, 64); font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171213/1513158220265961.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none; color: rgb(64, 64, 64); font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171213/1513158220345860.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none; color: rgb(64, 64, 64); font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171213/1513158220210034.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none; color: rgb(64, 64, 64); font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171213/1513158220799421.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none; color: rgb(64, 64, 64); font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171213/1513158221141403.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none; color: rgb(64, 64, 64); font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171213/1513158221570673.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none; color: rgb(64, 64, 64); font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171213/1513158221986812.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none; color: rgb(64, 64, 64); font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171213/1513158221444181.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none; color: rgb(64, 64, 64); font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171213/1513158221485479.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none; color: rgb(64, 64, 64); font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171213/1513158221735421.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none; color: rgb(64, 64, 64); font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171213/1513158221792667.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none; color: rgb(64, 64, 64); font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\"/></p>', null, '0', '0', '0', '0', '11', '0', '', '', '', '0', '1', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-12-13 17:43:51', '2017-12-13 17:43:51', null);
  160. INSERT INTO `ibrand_goods` VALUES ('37', '2017秋冬新款圣诞条纹儿童袜子全棉抗起球加厚', 'b070', '4', '5', '2.90', '2.90', '2.90', '15.00', '15.00', null, null, '21', 'https://cdn.viperky.com/storage/images/20171215/51pjpQSEi2.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513312834113441.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513312834561374.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513312834377172.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513312834334129.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513312835158425.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513312835371987.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513312835436936.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513312835445985.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513312835405795.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513312835952266.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513312835680994.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513312835569277.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513312835234357.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513312835741054.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513312835537521.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513312835395853.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513312835424568.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513312835879744.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"070_07\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513312835371987.jpg\" data-spm-anchor-id=\"a261y.7663282.0.i6.6856f173ZovbJi\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '5', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-12-15 12:40:38', '2018-05-15 18:06:55', null);
  161. INSERT INTO `ibrand_goods` VALUES ('38', '2017韩国秋冬季新款针织帽儿童帽子小熊耳朵毛线帽婴儿帽宝宝帽子', 'mz12', '4', '5', '15.90', '15.90', '15.90', '39.00', '39.00', null, null, '9', 'https://cdn.viperky.com/storage/images/20171215/P9lqHL8zlE.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513313024444486.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513313024691111.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513313024156792.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513313025545645.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513313025877564.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513313025713054.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513313025391828.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513313025543051.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513313025846980.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513313025680903.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513313025884849.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513313025999398.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513313025403607.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '10', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-12-15 12:44:50', '2018-05-15 18:06:55', null);
  162. INSERT INTO `ibrand_goods` VALUES ('39', '儿童帽子秋冬季2-3-5岁宝宝帽子护耳保暖小孩毛线帽儿童帽子', '5239', '4', '5', '19.90', '19.90', '19.90', '69.00', '69.00', null, null, '6', 'https://cdn.viperky.com/storage/images/20171215/kNYJhuJvWQ.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img align=\"absmiddle\" src=\"https://cbu01.alicdn.com/img/ibank/2017/238/295/4919592832_1567721775.jpg\" data-spm-anchor-id=\"a261y.7663282.0.i7.1f29d8c3DXDeLh\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><img align=\"absmiddle\" src=\"https://cbu01.alicdn.com/img/ibank/2017/291/106/4919601192_1567721775.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><img align=\"absmiddle\" src=\"https://cbu01.alicdn.com/img/ibank/2017/786/595/4919595687_1567721775.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><img align=\"absmiddle\" src=\"https://cbu01.alicdn.com/img/ibank/2017/502/106/4919601205_1567721775.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><img align=\"absmiddle\" src=\"https://cbu01.alicdn.com/img/ibank/2017/396/595/4919595693_1567721775.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><img align=\"absmiddle\" src=\"https://cbu01.alicdn.com/img/ibank/2017/854/911/4914119458_1567721775.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><img align=\"absmiddle\" src=\"https://cbu01.alicdn.com/img/ibank/2017/007/011/4914110700_1567721775.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><img align=\"absmiddle\" src=\"https://cbu01.alicdn.com/img/ibank/2017/622/106/4919601226_1567721775.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><img align=\"absmiddle\" src=\"https://cbu01.alicdn.com/img/ibank/2017/320/699/4915996023_1567721775.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><img align=\"absmiddle\" src=\"https://cbu01.alicdn.com/img/ibank/2017/374/911/4914119473_1567721775.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><img align=\"absmiddle\" src=\"https://cbu01.alicdn.com/img/ibank/2017/670/701/4914107076_1567721775.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><img align=\"absmiddle\" src=\"https://cbu01.alicdn.com/img/ibank/2017/592/999/4915999295_1567721775.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><img align=\"absmiddle\" src=\"https://cbu01.alicdn.com/img/ibank/2017/852/106/4919601258_1567721775.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><img align=\"absmiddle\" src=\"https://cbu01.alicdn.com/img/ibank/2017/367/099/4915990763_1567721775.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><img align=\"absmiddle\" src=\"https://cbu01.alicdn.com/img/ibank/2017/899/401/4914104998_1567721775.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><img align=\"absmiddle\" src=\"https://cbu01.alicdn.com/img/ibank/2017/539/295/4919592935_1567721775.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><img align=\"absmiddle\" src=\"https://cbu01.alicdn.com/img/ibank/2017/897/895/4919598798_1567721775.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><img align=\"absmiddle\" src=\"https://cbu01.alicdn.com/img/ibank/2017/155/611/4914116551_1567721775.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><img align=\"absmiddle\" src=\"https://cbu01.alicdn.com/img/ibank/2017/663/999/4915999366_1567721775.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><img align=\"absmiddle\" src=\"https://cbu01.alicdn.com/img/ibank/2017/865/611/4914116568_1567721775.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><img align=\"absmiddle\" src=\"https://cbu01.alicdn.com/img/ibank/2017/218/011/4914110812_1567721775.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><img align=\"absmiddle\" src=\"https://cbu01.alicdn.com/img/ibank/2017/933/106/4919601339_1567721775.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><img align=\"absmiddle\" src=\"https://cbu01.alicdn.com/img/ibank/2017/099/295/4919592990_1567721775.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><img align=\"absmiddle\" src=\"https://cbu01.alicdn.com/img/ibank/2017/560/821/4914128065_1567721775.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><img align=\"absmiddle\" src=\"https://cbu01.alicdn.com/img/ibank/2017/558/895/4919598855_1567721775.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '3', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-12-15 14:01:39', '2018-05-15 18:06:55', null);
  163. INSERT INTO `ibrand_goods` VALUES ('40', '儿童手套冬季男童保暖手套 男女宝宝包指手套小孩手套', 'st020', '4', '5', '12.90', '12.90', '12.90', '35.00', '35.00', null, null, '28', 'https://cdn.viperky.com/storage/images/20171215/XMly6hP24W.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"三扣深灰色\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513317909229803.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513317909703948.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513317909944069.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"447\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513317909253508.jpg\" width=\"908\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513317909358030.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513317909826299.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513317909135805.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513317909540452.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20171215/1513317909559609.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '11', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2017-12-15 14:05:10', '2018-05-15 18:06:55', null);
  164. INSERT INTO `ibrand_goods` VALUES ('41', '2018夏季童装新品纯棉儿童短袖T恤', '9063', '6', '3', '29.00', '29.00', '29.00', '39.00', '39.00', null, null, '69', 'https://cdn.viperky.com/storage/images/20180515/06U5YKLgVa.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"9063_02.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526353986226235.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9063_04.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526353986841080.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9063_05.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526353986621882.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9063_06.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526353987514917.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9063_07.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526353987995599.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9063_08.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526353987171678.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9063_09.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526353987312802.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9063_10.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526353987623201.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9063_12.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526353987997737.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9063_13.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526353987157480.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"9063_14.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526353987934023.jpg\" data-spm-anchor-id=\"a261y.7663282.descBanner.i1.5c66764b7Q011Z\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '3', '0', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-15 11:13:51', '2018-08-14 16:43:20', null);
  165. INSERT INTO `ibrand_goods` VALUES ('42', '2018 夏季新款韩版儿童T恤', '9315', '6', '3', '29.00', '29.00', '29.00', '39.00', '39.00', null, null, '93', 'https://cdn.viperky.com/storage/images/20180515/2rhsyEGDp7.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"9315_01\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526354926524585.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9315_05\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526354926596050.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9315_09\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526354926509510.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9315_10\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526354926181172.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9315_11\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526354926398289.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9315_12\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526354926914640.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9315_13\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526354926114038.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9315_14\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526354926367385.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"9315_15\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526354926649543.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '11', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-15 11:29:26', '2018-08-14 16:43:20', null);
  166. INSERT INTO `ibrand_goods` VALUES ('43', '2018夏季新款男童短袖T恤', '9053', '6', '3', '28.00', '28.00', '28.00', '38.00', '38.00', null, null, '2398', 'https://cdn.viperky.com/storage/images/20180515/IWJVuSIh2H.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526356700723860.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526356700160990.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526356700680687.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526356700152518.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526356700949233.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526356700819316.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526356700120388.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526356700796431.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526356700638616.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526356700702002.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526356700197437.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526356700741530.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '4', '0', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-15 11:58:44', '2018-08-14 16:43:20', null);
  167. INSERT INTO `ibrand_goods` VALUES ('44', '2018男童动物可爱卡通印花短袖T恤儿', '9076', '6', '3', '29.00', '29.00', '29.00', '39.00', '39.00', null, null, '939', 'https://cdn.viperky.com/storage/images/20180515/f3IQAITVcu.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"9076_01.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526358074532215.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9076_02.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526358074611629.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9076_04.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526358074202769.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9076_05.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526358074619331.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9076_06.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526358074862035.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9076_07.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526358074506133.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9076_08.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526358074932747.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9076_09.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526358074735399.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9076_10.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526358074451461.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9076_12.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526358074817926.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9076_13.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526358074191327.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"9076_14.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526358074720485.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '11', '0', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-15 12:21:58', '2018-08-14 16:43:20', null);
  168. INSERT INTO `ibrand_goods` VALUES ('45', '2018夏季儿童纯棉短袖T恤', '9061', '6', '3', '28.00', '28.00', '28.00', '38.00', '38.00', null, null, '476', 'https://cdn.viperky.com/storage/images/20180515/TFSugfseeD.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"9061_01.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526364066513176.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526364066510093.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><br/><img alt=\"9061_03.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526364066564596.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9061_04.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526364066554287.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9061_05.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526364066529215.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9061_06.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526364066596247.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9061_07.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526364066998238.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9061_08.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526364066255140.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9061_09.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526364066187590.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9061_10.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526364066467155.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9061_12.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526364066656527.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9061_13.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526364066751616.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"9061_14.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526364066288462.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '13', '0', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-15 14:23:36', '2018-08-14 16:43:19', null);
  169. INSERT INTO `ibrand_goods` VALUES ('46', '2018夏款儿童短袖T恤', '9099', '6', '3', '29.00', '29.00', '29.00', '39.00', '39.00', null, null, '10', 'https://cdn.viperky.com/storage/images/20180515/Dxjc9SuHEz.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"9099_01.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526366454460511.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9099_02.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526366454561433.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9099_04.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526366454275523.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9099_05.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526366454430293.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9099_09.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526366454675623.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9099_10.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526366454247103.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9099_12.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526366454509732.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9099_13.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526366454837135.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"9099_14.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526366454790936.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '10', '0', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-15 14:41:16', '2018-08-14 16:43:19', null);
  170. INSERT INTO `ibrand_goods` VALUES ('47', '2017夏季新品中小童棉质短袖T恤条纹字母卡通亲子装', 'KS364', '7', '7', '28.00', '28.00', '28.00', '38.00', '38.00', null, null, '0', 'https://cdn.viperky.com/storage/images/20180515/0nleBBvhdt.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526366998397513.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526366998867328.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526366998678873.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526366998801729.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526366998234786.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526366998190958.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526366999893563.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526366999465364.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526366999693529.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526366999491769.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526366999354352.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526366999171234.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526366999453836.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526367000127773.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526367000580392.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526367000732541.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526367000131933.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526367000220155.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"2017亲子详情版_04\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526366998397513.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '5', '0', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-15 14:53:04', '2018-05-28 09:41:32', null);
  171. INSERT INTO `ibrand_goods` VALUES ('48', '2018夏季童装爱心印花纯棉中袖T恤一家三口亲子装', 'KS1702', '7', '7', '68.00', '98.00', '68.00', '146.00', '99.00', null, null, '1799', 'https://cdn.viperky.com/storage/images/20180515/j9Bhz4nNM9.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p data-spm-anchor-id=\"a261y.7663282.descBanner.i2.2ff81702erP8Ii\" style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526369375953851.jpg\" data-spm-anchor-id=\"a261y.7663282.descBanner.i0.2ff81702erP8Ii\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526369375102135.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526369375476050.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526369375648769.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526369375232750.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526369375642940.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526369375269858.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526369375451343.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526369375946360.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526369375550840.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526369375957568.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526369375860092.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526369375892208.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526369375705779.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526369375189383.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526369375184960.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526369375844605.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526369375714833.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526369375105101.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526369375937696.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526369375940268.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526369375661161.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526369375682269.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/></p><p><br/></p>', null, '0', '6', '0', '0', '23', '30', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-15 15:37:43', '2018-08-14 16:43:19', null);
  172. INSERT INTO `ibrand_goods` VALUES ('49', '2018夏季新款韩版女童潮范字母短袖T恤', 'KS1602', '7', '3', '69.00', '69.00', '69.00', '99.00', '99.00', null, null, '799', 'https://cdn.viperky.com/storage/images/20180515/VwxPV2leXu.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526370413861439.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526370413579800.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526370413315641.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526370413895678.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526370413641349.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526370413745241.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526370413122439.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526370413914515.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526370413808207.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526370413949773.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526370413443180.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526370413439001.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526370413322183.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526370413489681.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526370413116228.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526370413101146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526370413769646.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526370413302717.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526370413892037.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526370413364386.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526370413287812.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"商标吊牌.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526370413878200.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"质检\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526370413260023.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"质检2.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526370413748846.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '9', '0', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-15 15:47:55', '2018-08-14 16:43:19', null);
  173. INSERT INTO `ibrand_goods` VALUES ('50', '2018夏季新款纯棉男女宝宝卡通香蕉短袖t恤韩版亲子装', 'KS1705', '7', '7', '69.00', '69.00', '89.00', '99.00', '99.00', null, null, '600', 'https://cdn.viperky.com/storage/images/20180515/XUTaKafW3Y.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526371540551379.jpg\" data-spm-anchor-id=\"a261y.7663282.descBanner.i0.6f1465949ZzHq2\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526371540654123.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526371540743457.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526371540448964.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526371540245929.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526371540869126.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526371540141656.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526371540316255.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526371540974260.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526371540344661.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526371540199085.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526371540838433.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526371540459534.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526371540177092.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526371540418197.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526371540222844.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526371540124425.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526371540554902.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526371540220359.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526371540705142.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526371540523843.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526371540402739.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '10', '0', '0', '17', '50', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-15 16:07:11', '2018-08-14 16:43:19', null);
  174. INSERT INTO `ibrand_goods` VALUES ('52', '2018夏款童装韩版 纯棉儿童短袖T恤', '9097', '6', '3', '29.00', '29.00', '29.00', '39.00', '39.00', null, null, '560', 'https://cdn.viperky.com/storage/images/20180515/BTU3qg1nB6.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"9097_01.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526372383867500.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9097_02.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526372383771859.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9097_04.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526372383267488.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9097_05.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526372383760853.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9097_06.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526372383756845.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9097_07.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526372383375526.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9097_09.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526372383487381.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9097_10.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526372383410433.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9097_12.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526372383960694.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9097_13.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526372383279012.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"9097_14.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526372383384857.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '10', '0', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-15 16:21:01', '2018-08-14 16:43:19', null);
  175. INSERT INTO `ibrand_goods` VALUES ('53', '2018夏季新款韩版儿童棉麻短裙中小童裙子', 'KS496', '7', '2', '89.00', '89.00', '89.00', '139.00', '139.00', null, null, '799', 'https://cdn.viperky.com/storage/images/20180515/i7jPcwDA1K.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373571569951.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373571346831.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373571861722.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373571312148.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373571206970.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373571692109.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373571879317.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373571669493.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373571811307.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373572425453.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373572182341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373572177222.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373572469116.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373572506776.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373572612686.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373572509474.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373572768423.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373572899473.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373572797225.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373572889451.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373572305546.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"商标吊牌.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373572924998.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"质检\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373572930270.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"质检2.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373572787818.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '8', '0', '0', '29', '40', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-15 16:40:20', '2018-08-14 16:43:19', null);
  176. INSERT INTO `ibrand_goods` VALUES ('54', '新款韩版童装一家三口亲子装春夏字母短袖T恤', 'KS580', '7', '7', '59.00', '88.00', '59.00', '136.00', '90.00', null, null, '25', 'https://cdn.viperky.com/storage/images/20180515/lQxXEZJaD1.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373645777703.jpg\" data-spm-anchor-id=\"a261y.7663282.descBanner.i0.3c626d4c1aOL0A\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373646495353.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373646676611.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373646505108.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373646709957.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373646832873.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373646106667.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373646632585.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373646865413.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373646261782.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373646782610.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373646183224.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373646224451.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373646959491.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373646310099.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373646203535.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373646705254.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373646933655.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373646177479.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373646720289.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373646870187.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373646112933.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526373646169368.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/></p>', null, '0', '0', '0', '0', '7', '0', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-15 16:42:45', '2018-08-14 16:43:19', null);
  177. INSERT INTO `ibrand_goods` VALUES ('55', '2018夏季新款棉质独特可爱口袋中小童撞色荷叶边短裙', 'KS342', '7', '2', '89.00', '89.00', '89.00', '149.00', '149.00', null, null, '15', 'https://cdn.viperky.com/storage/images/20180515/ECIp0U54Wu.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526374503870309.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526374503163311.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526374503348509.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526374503499919.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526374503148059.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526374503878693.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526374503783373.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526374503640137.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526374503827085.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526374503819232.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526374503274997.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526374503788106.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526374503961733.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526374503986035.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526374504407788.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526374504148070.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526374504611716.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526374504165893.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '5', '0', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-15 16:57:14', '2018-08-14 16:43:19', null);
  178. INSERT INTO `ibrand_goods` VALUES ('56', '2018夏款韩版女童连衣裙中小童拼色俏皮可爱休闲裙', 'KS1681', '7', '2', '99.00', '99.00', '99.00', '169.00', '169.00', null, null, '1', 'https://cdn.viperky.com/storage/images/20180515/960DVtExN2.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526375492492688.jpg\" data-spm-anchor-id=\"a261y.7663282.descBanner.i0.7f956f3cX1ecn6\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526375492948621.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526375492520656.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526375492333470.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526375492814985.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526375492831773.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526375492732226.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526375492582854.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526375492520466.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526375492392306.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526375492990552.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526375492285997.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526375492913305.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526375492974863.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526375492883048.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526375492566041.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526375492434056.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526375492185788.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '12', '0', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-15 17:13:24', '2018-08-14 16:44:16', null);
  179. INSERT INTO `ibrand_goods` VALUES ('57', '2018夏季新款童装波点印花棉质内衬三层网纱童裙', 'KS448', '7', '2', '89.00', '89.00', '89.00', '139.00', '139.00', null, null, '50', 'https://cdn.viperky.com/storage/images/20180515/mgbZazUWIt.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376312492045.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376312261620.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376313325040.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"原创模板_01\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376313317290.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"原创模板_02\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376313263171.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"原创模板_03\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376313570962.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"原创模板_04\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376314779373.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"原创模板_05\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376314328991.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376314468759.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376314254113.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376314642247.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376314770343.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376314500054.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376314531041.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376315700656.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376315141314.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376315294367.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376315870102.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376315387785.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '11', '0', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-15 17:26:20', '2018-08-14 16:44:32', null);
  180. INSERT INTO `ibrand_goods` VALUES ('58', '2018夏季家庭亲子装时尚圆领T恤', 'KS1794', '7', '7', '68.00', '98.00', '68.00', '146.00', '99.00', null, null, '1593', 'https://cdn.viperky.com/storage/images/20180515/QnAzriQw35.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376595837194.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376595106340.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376595460214.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376595408348.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376595138250.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376595360121.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376595204179.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376595588751.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376595881854.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376595262407.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376595842472.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376595728334.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376595717215.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376595447023.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376596449313.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376596164581.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376596643892.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376596950872.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376596895526.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376596106155.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376596807011.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376596383394.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376596456022.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376596725444.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526376596953634.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '15', '0', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-15 17:30:56', '2018-08-14 16:44:32', null);
  181. INSERT INTO `ibrand_goods` VALUES ('59', '新款韩版休闲百搭假两件裤裙', 'KS1637', '7', '2', '69.00', '69.00', '69.00', '119.00', '119.00', null, null, '499', 'https://cdn.viperky.com/storage/images/20180515/Tz6uyb6PIE.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377209367400.jpg\" data-spm-anchor-id=\"a261y.7663282.descBanner.i0.24793a4blOhLwn\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377209399023.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377209767463.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377209261574.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377209175872.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377209962952.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377209999245.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377209436557.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377209713569.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377209174869.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377209297097.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377209651037.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377209114323.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377209689342.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377209720097.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377209360074.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377209626116.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377209435825.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377209971372.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377209938858.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377209450766.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377210461186.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377210866884.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377210126820.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377210458284.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377210734690.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377210459470.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377210495630.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377210747784.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377210242596.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377210722790.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377210495857.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377210776135.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377210889078.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377210340447.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377210672225.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377210549631.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '4', '0', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-15 17:41:25', '2018-08-14 16:44:32', null);
  182. INSERT INTO `ibrand_goods` VALUES ('60', '2018夏装新款纯棉韩版中小童背心裙纯色拼接荷叶边女童裙子', 'KS1717', '7', '2', '79.00', '79.00', '79.00', '129.00', '129.00', null, null, '19', 'https://cdn.viperky.com/storage/images/20180515/q6nihEXE4U.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377856855712.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377856105075.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377856496749.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377856371681.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377856338616.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377856405677.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377856441157.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377856200859.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377856638628.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377856809868.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377856257952.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377856497526.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377856954556.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377856566008.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377856928572.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377856865307.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377856423637.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377856412510.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377856579865.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377856582553.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><br/><br/><img alt=\"质检2.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377857987696.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"商标吊牌.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377857790693.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"质检\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526377857985189.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '10', '0', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-15 17:51:34', '2018-08-14 16:44:32', null);
  183. INSERT INTO `ibrand_goods` VALUES ('61', '2018夏季新款全棉儿童套装字母印花一家三口亲子装', 'KS1612', '7', '7', '79.00', '129.00', '129.00', '199.00', '125.00', null, null, '320', 'https://cdn.viperky.com/storage/images/20180515/3aeigfciq6.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/458/190/8684091854_592962341.jpg\" data-spm-anchor-id=\"a261y.7663282.descBanner.i0.7e0e3a38y4iWXb\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/311/271/8719172113_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/724/841/8719148427_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/564/121/8684121465_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/708/742/8703247807_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/417/652/8703256714_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/752/751/8719157257_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/602/361/8719163206_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/715/811/8684118517_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/702/661/8719166207_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/552/331/8684133255_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/103/472/8703274301_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/477/952/8703259774_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/498/121/8719121894_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/511/571/8719175115_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/962/061/8719160269_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/104/151/8719151401_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/179/580/8684085971_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/246/331/8719133642_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/910/892/8703298019_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/166/601/8684106661_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/322/682/8703286223_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/702/982/8703289207_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/442/241/8684142244_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/118/790/8684097811_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '12', '0', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-15 17:58:37', '2018-08-14 16:44:53', null);
  184. INSERT INTO `ibrand_goods` VALUES ('62', '2018夏季童装新款韩版半身儿童公主裙子', 'KS1581', '7', '2', '79.00', '79.00', '79.00', '129.00', '129.00', null, null, '0', 'https://cdn.viperky.com/storage/images/20180515/vvyDoN4Cqx.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526378446803597.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526378446879090.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526378446110477.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526378446593686.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526378446719900.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526378446143150.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526378446479297.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526378446575353.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526378446304361.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526378446505643.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526378446454938.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526378446916343.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526378446514049.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526378446973657.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526378446928126.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526378446938377.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526378446860990.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526378446802330.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526378446509199.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526378446785340.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526378446384601.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526378446895859.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526378446366318.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526378446948781.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526378446498681.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526378446525322.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526378446410707.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526378446556358.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526378446948586.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526378446784800.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180515/1526378446511016.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '10', '0', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-15 18:01:29', '2018-08-14 16:44:53', null);
  185. INSERT INTO `ibrand_goods` VALUES ('63', '2018夏季新款童装海魂衫字母条纹T恤韩版母女亲子装', 'KS1729', '7', '7', '69.00', '88.00', '69.00', '136.00', '99.00', null, null, '700', 'https://cdn.viperky.com/storage/images/20180516/9CH0ykc9Pv.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526434790594252.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526434790520887.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526434790666179.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526434790900822.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526434790901169.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526434790820315.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526434790792429.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526434790590035.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526434790163164.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526434790784784.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526434790346111.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526434790477433.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526434790283106.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526434790282913.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526434790639130.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526434791459627.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526434791168924.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526434791297265.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526434791233278.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526434791807119.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526434791292874.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '3', '0', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-16 09:41:38', '2018-08-14 16:44:53', null);
  186. INSERT INTO `ibrand_goods` VALUES ('64', '2018夏季新款欧美童装儿童套装', '9700', '6', '3', '49.00', '49.00', '49.00', '79.00', '79.00', null, null, '165', 'https://cdn.viperky.com/storage/images/20180516/HU3jWIl7Vv.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"9700_01\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526435378627086.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9700_05\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526435378407189.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9700_06\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526435378288435.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9700_07\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526435378392012.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9700_08\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526435378547559.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9700_09\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526435378122979.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9700_10\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526435378570541.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9700_11\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526435378513125.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9700_12\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526435378837593.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9700_13\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526435378229048.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"9700_14\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526435378642569.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9700_15\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526435378652154.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/></p><p><br/></p>', null, '0', '0', '0', '0', '3', '0', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-16 09:50:24', '2018-08-14 16:44:53', null);
  187. INSERT INTO `ibrand_goods` VALUES ('65', '2018新款纯色全棉一家三口童装中袖T恤', 'KS1636', '7', '7', '49.00', '79.00', '79.00', '120.00', '75.00', null, null, '3200', 'https://cdn.viperky.com/storage/images/20180516/rtKPDHPXgX.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180523/1527057075981769.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180523/1527057075668912.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180523/1527057075119190.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180523/1527057075871913.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180523/1527057075177622.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180523/1527057075728144.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180523/1527057075901303.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180523/1527057075588395.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180523/1527057075370546.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180523/1527057075290748.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180523/1527057075413005.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180523/1527057075534479.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180523/1527057075848770.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180523/1527057075847389.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180523/1527057075451512.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180523/1527057075336129.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180523/1527057075689027.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180523/1527057075433351.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180523/1527057075624042.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180523/1527057075790127.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180523/1527057076743034.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180523/1527057076439626.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180523/1527057076685352.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180523/1527057076774308.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180523/1527057076663597.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180523/1527057076377570.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180523/1527057076662951.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180523/1527057076198508.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '3', '0', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-16 09:53:33', '2018-08-14 16:44:53', null);
  188. INSERT INTO `ibrand_goods` VALUES ('66', '2018夏季新款韩版洗水加软麻料纯色系带装饰中小童短裤', 'Ks1694', '7', '1', '78.00', '78.00', '78.00', '118.00', '118.00', null, null, '300', 'https://cdn.viperky.com/storage/images/20180516/5qeqUlrb8C.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436361612865.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436361769660.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436361175587.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436361441138.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436361576616.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436361782225.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436361147693.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436361172336.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436362581660.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436362228156.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436362435262.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436362977645.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436362951027.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436362408984.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436362574415.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436362187980.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436362257584.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><br/><br/><img alt=\"质检2.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436362621853.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"商标吊牌.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436362340082.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"质检\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436362189865.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '9', '0', '0', '12', '45', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-16 10:08:51', '2018-08-14 16:44:53', null);
  189. INSERT INTO `ibrand_goods` VALUES ('67', '2018夏季新款母女装全棉宽松潮范童T恤套头衫', 'KS1677', '7', '7', '68.00', '79.00', '68.00', '125.00', '98.00', null, null, '0', 'https://cdn.viperky.com/storage/images/20180516/15fX573g5k.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436581380833.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436581955753.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436581599927.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436581338507.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436581350470.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436581138406.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436619983661.jpg\" data-spm-anchor-id=\"a261y.7663282.descBanner.i2.4b1964d7L7Mue3\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436619856039.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436619890585.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436619168723.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436619395990.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436619647122.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436619815231.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436619604647.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436619365297.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436619618248.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436619728110.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436619167490.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436619566476.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436619851406.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436619863703.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526436619481813.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '8', '0', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-16 10:12:03', '2018-08-14 16:44:53', null);
  190. INSERT INTO `ibrand_goods` VALUES ('68', '潮爆韩版连帽波点印花男女两件套装', 'KS1610', '7', '3', '139.00', '139.00', '139.00', '219.00', '219.00', null, null, '50', 'https://cdn.viperky.com/storage/images/20180516/PC00HvwETk.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526437274539939.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526437274979758.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526437274605053.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526437274479289.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526437274206088.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526437274563589.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526437274674575.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526437274601120.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526437274186344.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526437274849624.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526437274625111.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526437274921374.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526437274876369.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526437274617823.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526437274643331.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526437274665728.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"商标吊牌.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526437274970618.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"质检\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526437274633386.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"质检2.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526437274129037.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '12', '0', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-16 10:21:53', '2018-08-14 16:44:53', null);
  191. INSERT INTO `ibrand_goods` VALUES ('69', '2018夏季新款韩版全棉拼接贴布绣拼色中小童套装', 'KS670', '7', '3', '98.00', '98.00', '98.00', '158.00', '158.00', null, null, '600', 'https://cdn.viperky.com/storage/images/20180516/xDgHzuODM5.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438093495323.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438093440578.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438093195105.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438025469917.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438025937458.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438025698653.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438025154437.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438025929686.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438025840001.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438025140162.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438025241467.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438025897590.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438025402674.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438025219949.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438025354561.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438025728981.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438025977016.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438025776434.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438026926448.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438026403543.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438026333644.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438026849361.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438026765351.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438026361963.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438026542619.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438026186748.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438026969837.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438026864145.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438026225299.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438026168267.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438026138345.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438026798288.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438027599900.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"商标吊牌.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438027170533.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"质检\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438027945537.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"质检2.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526438027596999.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '12', '0', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-16 10:38:51', '2018-08-14 16:44:53', null);
  192. INSERT INTO `ibrand_goods` VALUES ('70', '新款韩版中性百搭宽松五分裤', 'KS1707', '7', '1', '79.00', '79.00', '79.00', '129.00', '129.00', null, null, '80', 'https://cdn.viperky.com/storage/images/20180516/gnh2LyQm46.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"KS1707_02\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526440763596574.jpg\" data-spm-anchor-id=\"a261y.7663282.descBanner.i1.53ad1d89vVcaxi\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><br/><img alt=\"KS1707_04\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526440763842516.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"KS1707_05\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526440763624523.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"KS1707_06\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526440763682405.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"KS1707_07\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526440763773782.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"KS1707_08\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526440763938246.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"KS1707_09\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526440763941209.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"KS1707_10\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526440763829507.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"KS1707_11\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526440763484822.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"KS1707_12\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526440763253406.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"KS1707_13\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526440763191593.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"KS1707_14\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526440763192243.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"KS17072_01\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526440763911245.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"KS17072_02\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526440763610008.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"KS17072_03\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526440763582174.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"KS17072_04\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526440763564576.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"KS17072_05\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526440763138482.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"KS17072_06\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526440763487270.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"KS17072_07\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526440763505666.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526440763431403.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526440763418225.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526440763607349.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526440763960115.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '3', '0', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-16 11:37:01', '2018-08-14 16:44:53', null);
  193. INSERT INTO `ibrand_goods` VALUES ('72', '20178夏季新款韩版纯色猫须边斜插袋男女童高弹短裤', 'KS316', '7', '1', '78.00', '78.00', '78.00', '128.00', '128.00', null, null, '0', 'https://cdn.viperky.com/storage/images/20180516/fY4pK8sA8N.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/851/297/4057792158_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-size: 22pt;\">设计师解说</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-size: 18pt;\">短裤是宝宝夏季必备的应季装备;</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-size: 18pt;\">因为宝宝活动量大,到了夏季更容易出汗;</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-size: 18pt;\">所以很多宝妈在夏季都会选择短袖短裤来给自己的宝宝;</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-size: 18pt;\">短裤简单,但我们把简单的东西细节化;</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-size: 18pt;\">短裤简单,但我们把简单的东西品质化;</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-size: 18pt;\">面料我们采用高弹赛络纺,裤子挺括有型,面料舒适弹力好;</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-size: 18pt;\">酵洗加软工艺让裤子,穿着亲肤柔软不刺激,颜色牢固度强;</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-size: 18pt;\">腰部宽度的丝光橡筋加橡筋定位,不勒宝宝腰身,洗涤不移位;</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-size: 18pt;\">裤脚猫须边设计显得简单而又不失时尚;</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-size: 18pt;\">后袋添加柳丁装饰,小心意大改观哦~~</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-size: 18pt;\"><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/669/979/4359979966_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/843/289/4359982348_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/560/589/4359985065_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/378/780/4358087873_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/110/889/4359988011_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/654/318/4362813456_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/166/387/4057783661_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/538/338/4056833835_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/946/164/4060461649_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/714/687/4057786417_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/877/777/4057777778_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/003/464/4060464300_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/243/987/4057789342_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/987/087/4057780789_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/295/248/4056842592_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/330/548/4056845033_592962341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '7', '0', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-16 11:55:31', '2018-08-14 16:44:53', null);
  194. INSERT INTO `ibrand_goods` VALUES ('73', '2018夏季新款纯色高弹赛络纺棉质磨破弹力韩版小童儿童短裤', 'KS174', '7', '1', '88.00', '88.00', '88.00', '158.00', '158.00', null, null, '0', 'https://cdn.viperky.com/storage/images/20180516/prLOpI6GEe.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526443646572281.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-size: 22pt;\">设计师解说</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-size: 18pt;\">盛夏来临;</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-size: 18pt;\">各种服饰形形色色在街头展露出来;</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-size: 18pt;\">夏季的缤纷多彩、夏季的热情似火;</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-size: 18pt;\">都是属于这个季节的颜色;</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-size: 18pt;\">我们也为宝宝设计了简单颜色艳丽的夏季五分裤作为出行装;</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-size: 18pt;\">面料采用了高弹赛络纺;</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-size: 18pt;\">这种面料具有优秀的弹力;</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-size: 18pt;\">全棉的属性给了它透气、舒适、干爽的特性;</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-size: 18pt;\">裤子采用了酵素洗加软工艺;</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-size: 18pt;\">使得裤子更亲肤,更柔软,色牢度更强;</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-size: 18pt;\">还运用了当下裤子最为流行的元素之一--磨破;</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-size: 18pt;\">真实的前后插袋让整条裤子更具立体感和饱满度;</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-size: 18pt;\">配色的大气门襟纽扣让整条裤子所有细节都展露出来;</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-size: 18pt;\">炎炎夏日,宝妈们是不是已经准备好给自己宝宝一条这样的裤子呢?</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526443646411313.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526443646835264.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526443646218123.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526443646720210.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526443646250956.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526443646448145.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526443646154814.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526443646758902.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526443646400090.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526443646345528.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '4', '0', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-16 12:11:45', '2018-08-14 16:44:53', null);
  195. INSERT INTO `ibrand_goods` VALUES ('74', '2018夏季新款童装三色棉短裤韩版男女童百搭童裤', 'KS1591', '7', '1', '49.00', '49.00', '49.00', '79.00', '79.00', null, null, '60', 'https://cdn.viperky.com/storage/images/20180516/oSmerYZcLg.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526447830207714.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526447830805083.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526447830794683.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526447830363995.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526447830634810.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526447830500171.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526447830304348.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526447830211118.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526447830246337.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526447830603269.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526447830337517.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526447830511227.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526447830363833.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526447830645160.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526447830268751.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526447830124909.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526447830453527.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526447831444871.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526447831391137.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><br/><br/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><br/><br/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"商标吊牌.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526447831819473.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"质检\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526447831712500.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"质检2.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526447831395194.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '7', '0', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-16 13:21:41', '2018-08-14 16:44:53', null);
  196. INSERT INTO `ibrand_goods` VALUES ('75', '2018夏季新款洗水固色加软牛仔棉男女童中性潮范儿童短裤', 'KS1607', '7', '1', '78.00', '78.00', '78.00', '128.00', '128.00', null, null, '10', 'https://cdn.viperky.com/storage/images/20180516/A5fJXdPrxF.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526448581620670.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526448582698801.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526448582306150.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526448582204061.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526448582313347.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526448582171270.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526448582651439.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526448582846309.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526448582750350.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526448582990365.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526448582917582.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"商标吊牌.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526448582484791.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"质检\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526448582704536.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><br/><img alt=\"质检2.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526448582236245.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '11', '0', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-16 13:30:20', '2018-08-14 16:46:04', null);
  197. INSERT INTO `ibrand_goods` VALUES ('76', '2018韩版夏季新款童装潮范插袋猫须边中小童牛仔裤', 'KS666', '7', '1', '89.00', '89.00', '89.00', '139.00', '139.00', null, null, '400', 'https://cdn.viperky.com/storage/images/20180516/yCKKnaesUe.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526449155571705.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526449155114504.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526449156736275.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526449156292870.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526449156252656.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526449156380765.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526449156475836.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526449156931192.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526449156551614.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526449156394795.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526449156663255.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526449157829939.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526449157433958.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526449157632352.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526449157422125.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526449157240895.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526449157524440.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526449157110408.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526449157536816.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526449158750765.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both;\"><img alt=\"商标吊牌.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526449158292960.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both;\"><img alt=\"质检\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526449158164339.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"质检2.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180516/1526449158347152.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p>', null, '0', '0', '0', '0', '9', '0', '', '', '', '2', '0', '1', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-16 13:39:59', '2018-08-14 16:46:04', null);
  198. INSERT INTO `ibrand_goods` VALUES ('77', '测试商品勿下单-暴暴', 'test', '6', '3', '9.00', '9.00', '9.00', '29.00', '29.00', null, null, '4', 'https://cdn.viperky.com/storage/images/20180516/26dpZEjppG.jpg', null, null, '0', '0', '0', '0', '3', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-16 14:33:59', '2018-05-19 17:11:52', null);
  199. INSERT INTO `ibrand_goods` VALUES ('78', '2018夏季新款中小童宝宝T恤男童纯棉文艺时尚休闲短袖', '8172101193', '10', '3', '58.00', '58.00', '58.00', '79.00', '79.00', null, null, '60', 'https://cdn.viperky.com/storage/images/20180521/4pjdI5JrCY.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887945502895.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887945925344.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887945798855.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887945799498.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887945156123.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887946190042.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887946994804.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887946918810.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887946618403.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887946521578.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887946993155.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887947508465.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887947554943.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887947990167.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887947653021.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887948230683.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887948100584.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887948902620.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887948915626.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887948535338.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887948213810.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887949537471.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887949778287.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887949858896.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887949258475.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887949251214.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887950813823.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887950346748.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887950326874.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887950505878.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887950565086.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887950352799.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887950682188.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887951647389.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887951809448.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887951795473.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '3', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-21 15:34:49', '2018-08-14 16:46:04', null);
  200. INSERT INTO `ibrand_goods` VALUES ('79', '2018夏季新款洗水加软毛边韩版中性牛仔短裤', 'KS1781', '7', '1', '88.00', '88.00', '88.00', '134.00', '134.00', null, null, '500', 'https://cdn.viperky.com/storage/images/20180521/UKEAjlCBA7.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887955713692.jpg\" data-spm-anchor-id=\"a261y.7663282.descBanner.i0.64a93d40EJwQWS\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887955567620.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887955637693.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887955523223.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887955977640.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887956218901.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887956348403.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887956755988.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887956300516.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887956200932.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887956786750.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887957998302.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887957312862.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887957730923.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887957471419.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887957940487.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887957873529.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887957129695.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887957679824.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887957761051.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526887957247667.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '12', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-21 15:35:37', '2018-08-14 16:46:25', null);
  201. INSERT INTO `ibrand_goods` VALUES ('80', '2018新款韩版中小女童纯色宽松九分牛仔裤', 'KS1582', '7', '1', '98.00', '98.00', '98.00', '150.00', '150.00', null, null, '500', 'https://cdn.viperky.com/storage/images/20180521/4yxNr0Z2wQ.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889111120563.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889111870083.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889111679042.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889111198655.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889111693394.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889111161080.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889111628258.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889111271845.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889111104593.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889111845043.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889111879984.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889111518318.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889111103204.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889112475280.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889112789066.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889112523107.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '11', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-21 15:53:00', '2018-08-14 16:45:52', null);
  202. INSERT INTO `ibrand_goods` VALUES ('81', '2018韩版新款纯色打孔轻薄透气防晒服外套', '17189打孔佩奇', '9', '9', '69.00', '69.00', '69.00', '99.00', '99.00', null, null, '2000', 'https://cdn.viperky.com/storage/images/20180521/xYFWSXF9DI.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889221691881.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889221471305.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889221426977.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889221388562.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889221297694.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889221202113.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889221124637.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"2详情_12\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889221553839.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"2详情_13\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889221907261.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"2详情_16\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889221908782.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"2详情_17\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889221252805.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"2详情_19\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889221817891.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"19\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889221342878.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '11', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-21 15:54:33', '2018-08-14 16:45:52', null);
  203. INSERT INTO `ibrand_goods` VALUES ('82', '2018韩版新款纯色打孔轻薄透气防晒服外套', '17078', '9', '9', '68.00', '68.00', '68.00', '98.00', '98.00', null, null, '1000', 'https://cdn.viperky.com/storage/images/20180525/OwUQuZk6W8.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889832975164.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><br/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889832392712.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889832144023.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889832170753.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889832317650.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889832985142.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889832519374.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889832850430.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889832768425.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889832576454.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"_13\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889832183790.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"_14\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889832810772.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"_15\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889832196604.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"_01\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889832975164.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '11', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-21 16:04:42', '2018-08-14 16:45:52', null);
  204. INSERT INTO `ibrand_goods` VALUES ('83', '2018夏新款女童韩版童装潮流纯色无袖T恤', 'KS1710', '7', '3', '59.00', '59.00', '59.00', '90.00', '90.00', null, null, '1000', 'https://cdn.viperky.com/storage/images/20180521/l1cMiDYS0h.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889917563633.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889917780138.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889917977450.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889917225047.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889917317473.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889917164046.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889917174203.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889917299565.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889918429084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889918620792.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889918740835.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889918875883.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889918941433.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889918555119.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889918415806.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889918999062.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889918517860.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889918997364.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889918393617.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889918232741.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889918262337.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889918500111.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889918193330.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889918531549.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889918246444.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889918868956.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889918450226.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889918429178.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889918361211.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889918827333.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889918643023.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889918408536.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526889918402232.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '11', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-21 16:06:29', '2018-08-14 21:08:59', null);
  205. INSERT INTO `ibrand_goods` VALUES ('84', '韩系范糖果色儿童防晒服可变背包', '17180', '9', '9', '59.00', '59.00', '59.00', '118.00', '118.00', null, null, '1000', 'https://cdn.viperky.com/storage/images/20180521/YvhTF5FavK.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890394427026.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><br/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890394559246.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" height=\"606.1580680570801\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890394731299.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890394259881.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890394341550.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890394641516.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890394640852.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890394407028.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890394588161.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890394603796.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890394546451.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"2详情_12\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890394320489.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"2详情_13\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890394965820.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"2详情_14\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890394330628.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890394108485.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '6', '0', '0', '11', '30', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-21 16:14:34', '2018-08-14 21:08:59', null);
  206. INSERT INTO `ibrand_goods` VALUES ('87', '2018夏季韩版一家三口亲子装纯棉短袖T恤', 'KS1773', '7', '7', '59.00', '88.00', '88.00', '136.00', '90.00', null, null, '1400', 'https://cdn.viperky.com/storage/images/20180521/fg6XhS0P3a.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890718308265.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890718255373.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890718301428.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890718158306.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890718369319.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890718563031.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890718133321.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890718851390.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890719680094.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890719232556.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890719698886.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890719936790.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890719342768.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890719238409.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890719576968.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890719447402.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890719478218.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890719625031.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890719928580.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890719514782.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890719878387.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890719590832.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890719139187.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890719916649.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890719332393.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890719354073.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890720296254.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890720867719.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890720539696.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890720341634.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890720951355.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526890720505854.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '7', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-21 16:19:54', '2018-08-14 16:41:32', null);
  207. INSERT INTO `ibrand_goods` VALUES ('88', '2018韩版夏季韩版字母短袖T恤家庭亲子装', 'KS1782', '7', '7', '59.00', '89.00', '89.00', '145.00', '95.00', null, null, '1800', 'https://cdn.viperky.com/storage/images/20180521/0vPCfgHqU0.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891555593805.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891556121859.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891556542167.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891556521971.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891556927420.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891556668046.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891556504717.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891556816071.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891556378759.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891556806390.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891556993137.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891556462339.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891556356969.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891556192913.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891556612629.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891556137867.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891556766834.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891556829698.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891556323011.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891556988363.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891556904351.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891556840209.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891556920505.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891556384459.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '10', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-21 16:33:38', '2018-08-14 16:41:32', null);
  208. INSERT INTO `ibrand_goods` VALUES ('89', '2018夏季新童装5分超薄短袖男女儿童卡通纯棉家居服', 'un8ssiw061501', '8', '8', '98.00', '98.00', '98.00', '158.00', '158.00', null, null, '600', 'https://cdn.viperky.com/storage/images/20180521/toq7Uq3HA1.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"color: rgb(255, 0, 0); line-height: 1.5; font-family: simhei; font-size: 24pt;\"><img alt=\"undefined\" height=\"3643\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891539949884.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"2202\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891539278225.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><br/><img alt=\"undefined\" height=\"3418\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891539986167.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"3103\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891539370868.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><br/><img alt=\"undefined\" height=\"4616\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891540412836.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"4246\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891540286860.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><br/><img alt=\"undefined\" height=\"4006\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891540775587.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"4050\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891541799210.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><br/><img alt=\"undefined\" height=\"2741\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891541270180.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"3228\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891541559195.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><br/><img alt=\"undefined\" height=\"3502\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891542952300.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"2369\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891542763260.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><br/></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"color: rgb(255, 0, 0); font-family: simhei; font-size: 24pt; background-color: rgb(255, 204, 153);\"><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"温馨提示:修改后是安全的\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891542117420.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"968\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891542598744.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"899\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526891543310246.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '8', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-21 16:39:49', '2018-08-14 16:41:32', null);
  209. INSERT INTO `ibrand_goods` VALUES ('90', '2018夏季新款欧美风儿童纯棉T恤', '9092', '6', '3', '28.00', '28.00', '28.00', '38.00', '38.00', null, null, '12', 'https://cdn.viperky.com/storage/images/20180521/1SKwXtshhX.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"9092_01.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526892520412316.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9092_02.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526892520387560.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9092_04.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526892520542503.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9092_05.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526892520614129.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9092_06.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526892520843115.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9092_07.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526892520269428.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9092_09.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526892520987215.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9092_10.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526892520760184.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9092_12.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526892520751903.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9092_13.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526892520680299.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"9092_14.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526892520314524.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '8', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-21 16:49:43', '2018-08-14 16:41:32', null);
  210. INSERT INTO `ibrand_goods` VALUES ('91', '2018夏款进口男女童短袖5分超薄竹节棉空调房家居服套装', 'un8sssw020501', '8', '8', '88.00', '88.00', '88.00', '138.00', '138.00', null, null, '620', 'https://cdn.viperky.com/storage/images/20180521/z6Gz0H9Hzp.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180521/1526893339277901.png\" title=\"1526893339277901.png\" alt=\"2.png\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180521/1526893349505883.png\" title=\"1526893349505883.png\" alt=\"1.png\"/></p><p><img alt=\"undefined\" height=\"1074\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526893370112026.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><img alt=\"undefined\" height=\"907\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526893370906709.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"温馨提示:修改后是安全的\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526893370229005.jpg\" data-spm-anchor-id=\"a261y.7663282.descBanner.i1.52374b28oJmXIs\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '11', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-21 17:03:06', '2018-08-14 16:41:32', null);
  211. INSERT INTO `ibrand_goods` VALUES ('92', '韩版童装夏季新款宝宝短袖男童T恤', '9075', '6', '3', '28.00', '28.00', '28.00', '38.00', '38.00', null, null, '389', 'https://cdn.viperky.com/storage/images/20180521/Wl3BMd2mQR.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"9075_01.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526893055743218.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9075_02.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526893055575514.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9075_04.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526893055630571.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9075_05.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526893055315130.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9075_07.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526893055720638.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9075_09.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526893055433447.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9075_10.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526893055206913.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9075_12.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526893055533947.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9075_13.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526893055890462.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"9075_14.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526893055972324.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/></p><p><br/></p>', null, '0', '0', '0', '0', '13', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-21 17:03:14', '2018-08-14 16:41:32', null);
  212. INSERT INTO `ibrand_goods` VALUES ('93', '2018夏季新品 男童欧美风五分裤', '6205', '6', '1', '38.00', '38.00', '38.00', '55.00', '55.00', null, null, '563', 'https://cdn.viperky.com/storage/images/20180521/8YFEp3Q6Uo.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"6205_01.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526893678907697.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"6205_02.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526893678909736.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"6205_04.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526893678906705.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"6205_05.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526893678330517.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"6205_06.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526893678279105.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"6205_07.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526893678217759.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"6205aa.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526893678806293.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><br/><img alt=\"6205_09.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526893678891583.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"6205_10.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526893679298264.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"6205_12.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526893679285271.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"6205_13.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526893679408377.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"6205_14.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526893679675075.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/></p><p><br/></p>', null, '0', '0', '0', '0', '11', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-21 17:17:38', '2018-08-14 16:41:32', null);
  213. INSERT INTO `ibrand_goods` VALUES ('94', '2018夏季新品童装背心男女宝宝儿童纯棉内衣套装', 'un8sssw060601', '8', '8', '79.00', '79.00', '79.00', '129.00', '129.00', null, null, '240', 'https://cdn.viperky.com/storage/images/20180521/Tv7mOtqpk5.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"color: rgb(255, 0, 0); line-height: 1.5; font-family: simhei; font-size: 24pt;\"><img alt=\"undefined\" height=\"3785\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526894348608513.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"4131\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526894348636475.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><br/><img alt=\"undefined\" height=\"4254\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526894348317377.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"3333\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526894349713373.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><br/><img alt=\"undefined\" height=\"4210\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526894349673080.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"2617\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526894350533270.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><br/><img alt=\"undefined\" height=\"3541\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526894350255826.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"2994\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526894350177375.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"color: rgb(255, 0, 0); font-family: simhei; font-size: 24pt; background-color: rgb(255, 204, 0);\"><br/><br/></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" height=\"1023\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526894350823558.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" height=\"899\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526894359940142.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"温馨提示:修改后是安全的\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180521/1526894359490806.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '8', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-21 17:20:46', '2018-08-14 16:41:32', null);
  214. INSERT INTO `ibrand_goods` VALUES ('95', '本比小熊2018夏季新款韩版全棉短袖舒适百搭', '8172100283', '10', '3', '59.00', '59.00', '59.00', '79.00', '79.00', null, null, '90', 'https://cdn.viperky.com/storage/images/20180525/Xsoj2c7PDx.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527224552198056.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527224552898567.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527224552729544.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527224552961420.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527224552853233.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527224553255717.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527224553427506.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527224553559836.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527224553623690.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527224553703073.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527224553388974.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527224554851880.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527224554419765.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527224554934799.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527224554755606.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527224554188177.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527224555764072.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527224555268485.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527224555575240.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527224555585915.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527224555100568.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527224555741824.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527224556352108.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527224556641282.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527224556689486.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527224556921213.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527224556843149.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527224556619482.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '4', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-25 13:03:56', '2018-08-14 16:41:32', null);
  215. INSERT INTO `ibrand_goods` VALUES ('96', '本比小熊2018新款中小童卡通动物印花纯棉衬衫', '8182100133', '10', '3', '99.00', '99.00', '99.00', '145.00', '145.00', null, null, '75', 'https://cdn.viperky.com/storage/images/20180525/p70wPeToIb.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"细节展示\" src=\"https://cbu01.alicdn.com/img/ibank/2016/775/840/2785048577_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/735/665/8811566537_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/846/515/8795515648_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/308/845/8811548803_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/857/905/8795509758_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"模特展示\" src=\"https://cbu01.alicdn.com/img/ibank/2016/714/755/2788557417_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/015/245/8795542510_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/201/365/8795563102_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/880/395/8811593088_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/553/485/8811584355_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/149/657/8775756941_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/459/455/8811554954_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/957/267/8775762759_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/372/387/8775783273_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/268/425/8795524862_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/189/957/8775759981_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/296/635/8795536692_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/403/065/8795560304_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/357/035/8795530753_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/490/695/8811596094_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/025/155/8795551520_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/040/185/8795581040_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/785/477/8775774587_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/264/455/8795554462_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/731/897/8775798137_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/207/245/8795542702_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/762/365/8795563267_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/542/395/8811593245_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/415/485/8811584514_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/421/506/8811605124_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/501/408/8775804105_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/818/635/8795536818_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/224/065/8795560422_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/188/035/8795530881_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/722/695/8811596227_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/521/185/8795581125_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/746/155/8795551647_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/412/275/8795572214_1011975084.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '12', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-25 13:12:50', '2018-08-14 16:41:32', null);
  216. INSERT INTO `ibrand_goods` VALUES ('97', '本比小熊2018夏季新品韩版童装宝宝夏装短裤薄款', '8182101293', '10', '1', '89.00', '89.00', '89.00', '135.00', '135.00', null, null, '100', 'https://cdn.viperky.com/storage/images/20180525/w9YOk1KX3W.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225426681272.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225426266288.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225426817960.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225427382385.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225427269531.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225427512340.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225427685493.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225428951462.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225428619007.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225428819918.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225428333593.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225428613064.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225429951378.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225429904933.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225429228637.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225429717763.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225429677782.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225430942634.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225430326043.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225430802861.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225430697274.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225430328660.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225431714163.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225431715109.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225431201265.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225431165259.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225431818069.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225431475527.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225432213666.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225432534358.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225432567533.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225432546989.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225433118762.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225433916747.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225433888868.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225433906577.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225433652312.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225434670597.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225434797240.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225434708545.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225434918502.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225434424751.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225435565404.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225435267205.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225435465383.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225435148871.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225435388624.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225436749400.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225436849666.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225436265018.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527225436745475.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '8', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-25 13:46:09', '2018-08-14 16:41:32', null);
  217. INSERT INTO `ibrand_goods` VALUES ('98', '本比小熊2018新款韩版棉布潮流舒适短裤', '18182101333', '10', '1', '99.00', '99.00', '99.00', '145.00', '145.00', null, null, '82', 'https://cdn.viperky.com/storage/images/20180525/64tu3JIY7D.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227956971623.jpg\" data-spm-anchor-id=\"a261y.7663282.descBanner.i2.75b363609NyCs7\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227956589767.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"模特展示\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227956545728.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227956856683.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227956410143.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227957443310.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227957442323.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227957750596.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227957625124.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227957985874.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227957965567.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227958785268.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227958223883.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227958938024.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227959259501.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227959632917.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227959250930.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227959419596.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227959998977.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227959435445.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227960858001.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227960381178.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227960402407.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227960860272.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227960703933.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227960727478.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227961789961.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227961960041.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227961889288.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227961351265.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227961188489.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227962616359.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227962140968.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227962449212.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227962184032.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227962638445.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227962108283.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227963409570.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227963500283.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227963956749.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227963673644.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227963969936.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227964206119.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227964629380.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227964295287.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227964938978.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227964413170.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227964900406.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227965848637.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227965674399.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527227965596755.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '11', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-25 14:00:05', '2018-08-14 16:41:32', null);
  218. INSERT INTO `ibrand_goods` VALUES ('99', '本比小熊新品童装无袖背心中小童宝宝棉布衫', '8182101323', '10', '3', '69.00', '69.00', '69.00', '105.00', '105.00', null, null, '200', 'https://cdn.viperky.com/storage/images/20180525/UlcXjFBp6R.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228706900118.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228706205013.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228706290936.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228706879296.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228706387165.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"模特展示\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228706282536.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228707167653.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228707188656.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228707536813.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228707221986.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228708793936.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228708115608.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228708479246.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228709280712.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228709869619.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228709429115.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228709190974.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228709449591.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228710240861.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228710837267.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228710399272.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228711308339.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"细节展示\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228711515791.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228711181773.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228711701318.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228711298195.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228712612172.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228712141895.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228712505113.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228712730281.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228712624201.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228713384362.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228713536643.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228713780668.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228713227435.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228714170366.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228714835250.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527228714798573.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '7', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-25 14:18:24', '2018-08-14 16:41:32', null);
  219. INSERT INTO `ibrand_goods` VALUES ('100', '本比小熊夏季宝宝背心2018新款休闲百搭夏装潮衣', '18172100373', '10', '3', '49.00', '49.00', '49.00', '75.00', '75.00', null, null, '50', 'https://cdn.viperky.com/storage/images/20180525/fBOKr15rw6.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527230071753374.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527230071491575.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527230071127561.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527230071824219.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527230072775994.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527230072304864.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527230072522432.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527230072842042.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527230073939546.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527230073467122.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527230073881449.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527230073516859.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527230073910114.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527230074255636.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527230074464478.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527230074314989.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527230074443772.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527230074233151.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '11', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-25 14:35:24', '2018-08-14 16:41:32', null);
  220. INSERT INTO `ibrand_goods` VALUES ('101', '本比小熊2018新品韩版童装宝宝运动休闲套装两件套', '8182101223', '10', '3', '119.00', '119.00', '119.00', '190.00', '190.00', null, null, '16', 'https://cdn.viperky.com/storage/images/20180525/bqA0rkDnxp.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231267103616.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231267647962.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231267236572.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231268348926.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"模特展示\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231268112374.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231268507906.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231268394955.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231268940970.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231269186325.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231269483647.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231269980674.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231269428622.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231270580635.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231270258241.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231270755806.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231270488250.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231271266283.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231271903087.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231271755673.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231272777530.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><img alt=\"细节展示\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231272179421.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231272956993.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231272988326.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231272593536.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231272614248.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231272386082.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231273286673.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231273452927.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231273776331.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231273769851.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231274301295.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231274300796.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231274835210.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231274879031.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231274380408.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231274950981.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231275833435.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231275570130.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231275308481.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231275218133.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231276371853.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231276136303.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231276362698.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231276346652.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231276874636.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231277257682.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231277724808.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231277326333.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231278275853.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527231278315394.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '12', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-25 14:57:19', '2018-08-14 16:41:32', null);
  221. INSERT INTO `ibrand_goods` VALUES ('102', '本比小熊2018夏季新品韩版宝宝运动套装中小男童夏装两件套', '8182101533', '10', '3', '119.00', '119.00', '119.00', '190.00', '190.00', null, null, '35', 'https://cdn.viperky.com/storage/images/20180525/4h4mxaCOwx.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232338964386.jpg\" data-spm-anchor-id=\"a261y.7663282.descBanner.i1.2ec45ad02QpdZf\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232339644450.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"模特展示\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232339379805.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232339522805.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232339937247.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232339605971.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232339496710.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232340759529.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232340164103.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232340707272.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232340609323.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232341343533.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232341184316.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232341368119.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232341411764.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232342192284.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><img alt=\"细节展示\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232342542788.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232342860510.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232342770338.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232342641012.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232342744637.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232342997151.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232343410654.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232343322590.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232343154930.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232343242870.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232343610568.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232343488602.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232344395287.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232344998303.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232344370636.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232344381775.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232344940650.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232344918138.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232345840832.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232345167363.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232345573943.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232345324808.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232345745147.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232345497240.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232346997543.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232346778793.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232346408109.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232346829192.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180525/1527232346580685.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '5', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-25 15:13:58', '2018-08-14 16:41:32', null);
  222. INSERT INTO `ibrand_goods` VALUES ('103', '2018夏季新款中小童宝宝棉背心套装', '18182101233', '10', '3', '139.00', '139.00', '139.00', '219.00', '219.00', null, null, '90', 'https://cdn.viperky.com/storage/images/20180528/ivncB2qDQz.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527492767562673.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527492767328517.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527492768773059.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527492768635730.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527492768919834.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527492768755548.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527492768674790.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527492769541416.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527492769688331.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527492769138740.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527492769817849.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527492770188782.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527492770261713.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527492770786065.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527492770206972.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-28 15:36:29', '2018-08-14 16:41:32', null);
  223. INSERT INTO `ibrand_goods` VALUES ('104', '2018夏季新品韩版中小童短袖T恤', '18172100073', '10', '3', '78.00', '78.00', '78.00', '118.00', '118.00', null, null, '19', 'https://cdn.viperky.com/storage/images/20180528/ObCG8FzWP8.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527494042955951.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527494042115476.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527494042452538.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527494042166077.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527494043847110.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527494043632188.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527494043962599.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527494043636690.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527494043427884.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527494043733668.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527494044655767.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527494044873374.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527494044899144.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527494044439302.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527494044791573.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527494045400743.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527494045351374.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527494045736836.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527494045213828.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527494045616397.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527494046361296.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527494046572514.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527494046409685.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-28 15:55:08', '2018-08-14 16:41:32', null);
  224. INSERT INTO `ibrand_goods` VALUES ('105', '2018夏季新款全棉儿童短裤', '18182101553', '10', '1', '119.00', '119.00', '119.00', '179.00', '179.00', null, null, '27', 'https://cdn.viperky.com/storage/images/20180528/ZrXYaODeKs.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501086428606.jpg\" data-spm-anchor-id=\"a261y.7663282.descBanner.i0.7ac989aeovsRkJ\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501086425096.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501086864355.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501087240335.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501087175724.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501087190617.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501087828962.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501087299490.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501087729716.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501087690714.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501087929904.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501087123799.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501087642400.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501087670741.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501088983023.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-28 17:52:26', '2018-08-14 16:41:32', null);
  225. INSERT INTO `ibrand_goods` VALUES ('106', '2018夏季新款中小童短袖T恤半袖衫', '8172100553', '10', '3', '59.00', '59.00', '59.00', '79.00', '79.00', null, null, '55', 'https://cdn.viperky.com/storage/images/20180528/QZiWe55bKD.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501729670852.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501729170049.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501729909220.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501729564620.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501729693478.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501730955672.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501730367561.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501730229523.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501730370456.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501731943545.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501731493104.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501731608570.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501731926341.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501731496140.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501731644048.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501731652056.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501731748533.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501731559852.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501731995492.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501732421368.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501732144152.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501732110953.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501732247899.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501732398577.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501732836217.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501733967523.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501733704726.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501733791862.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501733439637.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501733875996.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501733479544.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501733763171.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501733837618.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501733817365.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527501734374007.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-28 18:03:05', '2018-08-14 16:41:32', null);
  226. INSERT INTO `ibrand_goods` VALUES ('107', '2018夏季新款中小童全棉T恤圆领短袖', '8172101393', '10', '3', '49.00', '49.00', '49.00', '75.00', '75.00', null, null, '75', 'https://cdn.viperky.com/storage/images/20180528/d0mi2NQVGH.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502211695094.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502211627208.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502211494144.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502211506963.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502211134752.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502212947246.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502212592227.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502212353647.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502212157622.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502212664694.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502212578081.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502213305019.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502213236551.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502213178899.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502214736035.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502214971360.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502214896719.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502214643566.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502214298896.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502215633571.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502215922743.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502215555049.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502215351943.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502216927754.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502216896469.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502216193300.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502216795982.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502216736222.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502216937972.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502217326820.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502217588687.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502217466189.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502217420836.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180528/1527502217380257.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-05-28 18:11:36', '2018-08-14 16:41:32', null);
  227. INSERT INTO `ibrand_goods` VALUES ('108', 'KINCHO日本金鸟儿童孕婴天然花草防蚊手环', '54080/54081', '11', '11', '79.00', '79.00', '79.00', '119.00', '119.00', null, null, '200', 'https://cdn.viperky.com/storage/images/20180607/A8vgL13Tsw.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"新海报参考\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180605/1528187014708661.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"日本金鸟驱蚊手环4(独家卖点)\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180605/1528187014841079.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"使用场景(改字体)_01\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180605/1528187014888263.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"日本金鸟驱蚊手环-3(防水与全家共享)改动字体侵权_02\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180605/1528187014703391.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"日本金鸟驱蚊手环-3(防水与全家共享)改动字体侵权_01\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180605/1528187015100570.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"使用场景(改字体)_02\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180605/1528187015497835.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-06-05 16:26:04', '2018-08-14 16:41:32', null);
  228. INSERT INTO `ibrand_goods` VALUES ('109', '爆款ins婴儿萌萌兔子午睡毯宝宝空调毛线毯子', '201865', '12', '8', '89.00', '89.00', '89.00', '139.00', '139.00', null, null, '3000', 'https://cdn.viperky.com/storage/images/20180605/CfzFIjxPZo.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-family: &quot;microsoft yahei&quot;; color: rgb(255, 0, 0); font-size: 16pt; background-color: rgb(255, 255, 255);\">本品材质为 纯棉,不是晴纶的,请注意区分。</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-family: &quot;microsoft yahei&quot;;\">ins火爆滴针织毛线毯子 空调房~出门推车</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-family: &quot;microsoft yahei&quot;;\">超可爱立体兔兔造型 幼儿园拉风小毯子</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-family: &quot;microsoft yahei&quot;;\">大小宝宝都能盖~幼儿园盖毯实在是太独特</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-family: &quot;microsoft yahei&quot;;\">卖萌上班族~萌妹纸~美妈~当午睡毯也无压力</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-family: &quot;microsoft yahei&quot;;\">可以当挂毯&nbsp;婴儿推车毯&nbsp;婴儿床盖毯或床单&nbsp;&nbsp;在户外可以当地毯&nbsp;</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-family: &quot;microsoft yahei&quot;;\">重要的是可以当拍照的背景毯哈 &nbsp; &nbsp;&nbsp;装饰婴儿房儿童房也是非常的美丽</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-family: &quot;microsoft yahei&quot;;\">我们家毛线都用纯棉滴~整体线细致~更精密~垂感较好~不起球!</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-family: &quot;microsoft yahei&quot;;\">精品棉作为此款的面料,</span><span style=\"line-height: 1.5; font-family: &quot;microsoft yahei&quot;;\">棉线不会扎手,而且柔软,</span><span style=\"line-height: 1.5; font-family: &quot;microsoft yahei&quot;;\">是小宝宝的忠实伴侣。</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"line-height: 1.5; font-family: &quot;microsoft yahei&quot;;\">&nbsp;<span style=\"font-size: 26pt;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"font-family: 楷体_gb2312;\">&nbsp; &nbsp;羊羔绒图片</span></span></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-family: &quot;microsoft yahei&quot;;\">&nbsp;<img alt=\"undefined\" height=\"525.4322916666666\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180605/1528190772560803.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180605/1528190772807629.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-family: &quot;microsoft yahei&quot;;\">&nbsp;<br/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180605/1528190772283690.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180605/1528190772602703.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><br/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180605/1528190772298468.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180605/1528190773483481.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180605/1528190773716098.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180605/1528190773956875.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180605/1528190773870897.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180605/1528190773281402.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180605/1528190774210901.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180605/1528190774421767.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180605/1528190774849042.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></span></p><p><br/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-06-05 17:27:17', '2018-08-14 16:41:32', null);
  229. INSERT INTO `ibrand_goods` VALUES ('110', '韩国进口 新款宝露露儿童西瓜防晒霜60ml啵乐乐防晒SPF45正品', '0040000010', '13', '11', '89.00', '89.00', '89.00', '149.00', '149.00', null, null, '50', 'https://cdn.viperky.com/storage/images/20180605/hcBoMVlioh.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-size: 12pt;\"><span style=\"font-weight: 700;\"><span style=\"background-color: rgb(255, 255, 255); color: rgb(255, 0, 0);\">严正通知:</span></span></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-weight: 700;\"><span style=\"font-size: 12pt;\">&nbsp; &nbsp; &nbsp; &nbsp;以下产品详情所描述的为产品所含(植物)成分功效,(植物)成分功效全部引自百度.百科,仅供参考!(植物)成分功效,不代表产品功效,不能作为一些职业打假人的投诉理由,请亲们知悉!</span></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-weight: 700;\"><span style=\"font-size: 12pt;\">如遇职业欺诈,我们公司将保留对其追究法律责任的权利!!!</span></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-weight: 700;\"><span style=\"font-size: 12pt;\"><img alt=\"宝露露防晒霜_01_01\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180605/1528192933853948.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"宝露露防晒霜_01_02\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180605/1528192934772773.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"宝露露防晒霜_01_03\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180605/1528192934377989.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"宝露露防晒霜_01_04\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180605/1528192934281732.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"宝露露防晒霜_01_05\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180605/1528192934866178.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"宝露露防晒霜_01_07\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180605/1528192934499839.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"宝露露防晒霜_01_09\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180605/1528192935233655.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"宝露露防晒霜_01_10\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180605/1528192935809613.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"宝露露防晒霜_09\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180605/1528192935755297.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></span></span></p><p><br/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-06-05 18:03:14', '2018-08-14 21:08:59', null);
  230. INSERT INTO `ibrand_goods` VALUES ('111', 'Kocotree新款儿童夏季男女童太阳帽亲子空顶防晒帽', 'KQ15431', '14', '11', '39.00', '39.00', '39.00', '98.00', '98.00', null, null, '1280', 'https://cdn.viperky.com/storage/images/20180606/ugnCsOgI7j.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; \n\ncolor: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, \n\nsans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-size: 16pt;\">儿童款帽围:50-54cm</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; \n\ncolor: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, \n\nsans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-size: 16pt;\"><span style=\"font-size: 16pt;\">成人款帽围:54-\n\n57cm</span></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; \n\ncolor: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, \n\nsans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-size: 16pt;\"><span style=\"font-size: 16pt;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180606/152826004370\n\n8198.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; \n\nzoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180606/152826004468\n\n7196.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; \n\nzoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180606/152826004437\n\n0176.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; \n\nzoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180606/152826004416\n\n4362.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; \n\nzoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180606/152826004484\n\n6867.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; \n\nzoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180606/152826004497\n\n6100.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; \n\nzoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180606/152826004594\n\n4524.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; \n\nzoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180606/152826004522\n\n6445.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; \n\nzoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180606/152826004553\n\n5091.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; \n\nzoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180606/152826004565\n\n5307.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; \n\nzoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180606/152826004553\n\n1198.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; \n\nzoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180606/152826004535\n\n0962.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; \n\nzoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180606/152826004650\n\n3513.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; \n\nzoom: 1;\"/><br/></span></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; \n\ncolor: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, \n\nsans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180606/152826004653\n\n1762.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; \n\nzoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180606/152826004681\n\n4583.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; \n\nzoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180606/152826004686\n\n5831.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; \n\nzoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180606/152826004636\n\n0205.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; \n\nzoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180606/152826004636\n\n1019.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; \n\nzoom: 1;\"/></p><p><br/></p>', null, '0', '21', '0', '0', '0', '105', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-06-06 12:43:28', '2018-08-14 21:08:58', null);
  231. INSERT INTO `ibrand_goods` VALUES ('112', '儿童时尚户外防晒遮阳鸭舌帽空顶帽', 'MR369', '15', '11', '35.00', '35.00', '35.00', '68.00', '68.00', null, null, '700', 'https://cdn.viperky.com/storage/images/20180606/qR9DWv1w2S.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><a href=\"https://fuzhuang.1688.com/524peishi.html\" target=\"_blank\" style=\"text-decoration-line: none; color: rgb(34, 34, 34); transition: color 0.3s ease 0s;\"><img style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px;\"/></a></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180606/1528267347703895.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180606/1528267348592809.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180606/1528267348449305.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180606/1528267348665478.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-06-06 14:44:42', '2018-08-14 16:40:54', null);
  232. INSERT INTO `ibrand_goods` VALUES ('113', '【江疏影力荐网红防晒霜】coppertone水宝宝温和纯净防晒霜spf50', '2018671', '17', '11', '88.00', '88.00', '88.00', '230.00', '230.00', null, null, '100', 'https://cdn.viperky.com/storage/images/20180607/opfRYLZJwy.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"02.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528351755738487.jpg\" class=\"img-ks-lazyload\" data-spm-anchor-id=\"a220o.1000855.0.i4.63f03af5epncq5\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none; color: rgb(64, 64, 64); font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255); line-height: 1.5;\"/></p><p><img alt=\"详情页2.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528351767486469.jpg\" class=\"img-ks-lazyload\" data-spm-anchor-id=\"a220o.1000855.0.i5.63f03af5epncq5\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none; color: rgb(64, 64, 64); font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\"/></p><p><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528352171194462.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none; color: rgb(64, 64, 64); font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\"/></p><p><img alt=\"详情页4.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528352185453538.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none; color: rgb(64, 64, 64); font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\"/></p><p><img alt=\"06.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528352195851195.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none; color: rgb(64, 64, 64); font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\"/></p><p><img alt=\"07.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528352208695874.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none; color: rgb(64, 64, 64); font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"margin: 0px; padding: 0px; color: rgb(64, 64, 64); font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"08.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528352208630490.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none; color: rgb(64, 64, 64); font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\"/></p><p><img alt=\"09.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528352220477334.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none; color: rgb(64, 64, 64); font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\"/></p><p><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528352232390498.jpg\" class=\"img-ks-lazyload\" style=\"margin: 0px; padding: 0px; border: 0px; animation: ks-fadeIn 350ms linear 0ms 1 normal both; opacity: 1; vertical-align: top; max-width: 100%; float: none; color: rgb(64, 64, 64); font-family: tahoma, arial, 宋体, sans-serif; font-size: 14px; white-space: normal; background-color: rgb(255, 255, 255);\"/></p><p><br/></p><p><br/></p><p><br/></p>', null, '0', '21', '0', '0', '0', '105', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-06-07 12:02:47', '2018-08-14 16:40:54', null);
  233. INSERT INTO `ibrand_goods` VALUES ('114', '【驱蚊神器】创意卡通驱蚊扣10块3个颜色随机发', '2018672', '18', '11', '10.00', '10.00', '10.00', '28.80', '28.80', null, null, '298', 'https://cdn.viperky.com/storage/images/20180607/IREjBpFLfp.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528353871331121.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528353871429619.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528353871300310.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528353871320135.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528353871400726.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\">&nbsp;</p><p data-spm-anchor-id=\"a261y.7663282.descBanner.i4.7d7f7b29PjJdeX\" style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528353871359577.jpg\" data-spm-anchor-id=\"a261y.7663282.descBanner.i3.7d7f7b29PjJdeX\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p data-spm-anchor-id=\"a261y.7663282.descBanner.i1.7d7f7b29PjJdeX\" style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528353871904980.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528353871639519.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528353872155198.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528353872844283.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528353872637761.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528353872551550.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528353872780178.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528353871400726.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528353872817217.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528353872495461.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528353872474526.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528353872558251.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528353872566098.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528353872925025.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528353872445260.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '18', '0', '0', '2', '90', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-06-07 14:50:10', '2018-08-14 16:40:54', null);
  234. INSERT INTO `ibrand_goods` VALUES ('115', 'ins爆款收纳桶儿童提式玩具桶北欧家居真皮提手可站立帆布收纳袋', 'T006', '20', '8', '39.00', '39.00', '39.00', '98.00', '98.00', null, null, '700', 'https://cdn.viperky.com/storage/images/20180607/GKofa2jVIG.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"H17B0314_副本\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528358945506014.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"H17B0315_副本\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528358945249958.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"H17B0346_副本\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528358945413026.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"H17B0316_副本\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528358945705100.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"H17B0347_副本\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528358945728777.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"12\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528358945374784.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"A7B01F2A2DC05241A9FCEA00E792A6\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528358945221975.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"H17B0725_副本\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528358945367533.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"H17B0319_副本\" height=\"714.95\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528358945302253.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-06-07 16:09:15', '2018-08-14 16:40:54', null);
  235. INSERT INTO `ibrand_goods` VALUES ('116', '新款zakka棉麻布艺花盆小麻袋 悬挂式黄麻点点条纹储物篮收纳挂袋', 'D002', '21', '8', '18.80', '18.80', '18.80', '58.80', '58.80', null, null, '600', 'https://cdn.viperky.com/storage/images/20180607/C6GaygKkc7.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180607/1528361958226635.png\" title=\"1528361958226635.png\" alt=\"1.png\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180607/1528361967895996.png\" title=\"1528361967895996.png\" alt=\"2.png\"/></p><p><img alt=\"IMG_0551\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528361915518936.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"IMG_0546\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528361915855358.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"IMG_0544\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528361915341976.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"IMG_0543\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528361915103004.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"IMG_0541\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528361915680228.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"IMG_0547\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528361915724838.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"IMG_0549\" height=\"526.3375\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528361915963619.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"IMG_0548\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528361915490825.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"IMG_0545\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528361915562511.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-06-07 17:01:15', '2018-08-14 16:40:54', null);
  236. INSERT INTO `ibrand_goods` VALUES ('117', '韩国进口pororo啵乐乐夏日宝宝止痒喷雾 进口儿童止痒喷雾50ml', '2018673', '13', '11', '58.00', '58.00', '58.00', '128.00', '128.00', null, null, '100', 'https://cdn.viperky.com/storage/images/20180607/J8eJOGzhVX.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528363141331835.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"1产品描述\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528363141681883.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/>&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-family: 微软雅黑; font-size: 14pt;\">产品名称:韩国啵乐乐儿童止痒喷雾</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-family: 微软雅黑; font-size: 14pt;\">产地:韩国</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-family: 微软雅黑; font-size: 14pt;\">容量:50ml</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-family: 微软雅黑; font-size: 14pt;\">主要材质:甘油,水,芦荟提取液,薄荷醇等</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-family: 微软雅黑; font-size: 14pt;\">保质期:3年</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-family: 微软雅黑; font-size: 14pt;\">使用方法:</span><span style=\"font-family: 微软雅黑; font-size: 14pt;\">涂于患处。有止痒、镇定、保湿的作用 。</span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"2特点介绍\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528363141428995.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p style=\"text-align: left; margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-family: 微软雅黑; font-size: 14pt;\">1.含有天然的芦荟成分</span></p><p style=\"text-align: left; margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-family: 微软雅黑; font-size: 14pt;\">2.具有很强的保湿作用</span></p><p style=\"text-align: left; margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-family: 微软雅黑; font-size: 14pt;\">3.能起到止痒的效果</span></p><p style=\"text-align: left; margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-family: 微软雅黑; font-size: 14pt;\">4.产品性质温和,天然芦荟提取成分,安全无刺激。</span></p><p style=\"text-align:center;margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\">&nbsp;</p><p style=\"text-align:center;margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-size: 12px;\"><br/>&nbsp;</span>&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"3产品展示\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528363141857313.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; float: left; zoom: 1;\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-family: 微软雅黑; font-size: 14pt;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528363141726375.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528363141201909.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img align=\"absmiddle\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528363141857720.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528363141302280.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528363141481183.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></span></p><p><br/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-06-07 17:19:29', '2018-08-14 16:40:54', null);
  237. INSERT INTO `ibrand_goods` VALUES ('118', '2018春夏新款童装无痕T恤 纯色纯棉 中小童一片式高弹T恤', 'C0121', '22', '3', '29.90', '29.90', '29.90', '88.00', '88.00', null, null, '2160', 'https://cdn.viperky.com/storage/images/20180607/d2HdZEM01M.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528365461772484.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528365461336045.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528365461191158.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528365461691145.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528365461463221.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528365461793340.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528365461799805.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528365461895783.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529036987812791.png\" title=\"1529036987812791.png\" alt=\"34.png\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529037014554316.png\" title=\"1529037014554316.png\" alt=\"27.png\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529037058988386.png\" title=\"1529037058988386.png\" alt=\"35.png\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180607/1528365461204880.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529036816449439.png\" title=\"1529036816449439.png\" alt=\"30.png\"/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529036838536983.png\" title=\"1529036838536983.png\" alt=\"31.png\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529036897863228.png\" title=\"1529036897863228.png\" alt=\"33.png\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529036868238895.png\" title=\"1529036868238895.png\" alt=\"32.png\"/></p><p><br/></p>', null, '0', '27', '0', '0', '0', '135', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-06-07 18:06:45', '2018-08-14 21:09:08', null);
  238. INSERT INTO `ibrand_goods` VALUES ('123', '2018春新款儿童无痕背心 纯色纯棉 婴幼中小童一片式高弹背心', 'C0111', '22', '3', '29.90', '29.90', '29.90', '89.00', '89.00', null, null, '6400', 'https://cdn.viperky.com/storage/images/20180608/TX3MU7YfGT.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528429024202731.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528429024571939.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528429024547331.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528429024439802.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528429024542300.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528429024819283.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529036111494355.png\" title=\"1529036111494355.png\" alt=\"19.png\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529036169707366.png\" title=\"1529036169707366.png\" alt=\"20.png\"/></p><p><br/></p><p><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528429024218436.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529036296261029.png\" title=\"1529036296261029.png\" alt=\"22.png\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529036436683033.png\" title=\"1529036436683033.png\" alt=\"24.png\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529036456912607.png\" title=\"1529036456912607.png\" alt=\"21.png\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529036489497490.png\" title=\"1529036489497490.png\" alt=\"25.png\"/></p><p><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528429024283468.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p><p><br/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529036349391614.png\" title=\"1529036349391614.png\" alt=\"21.png\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529035335196394.png\" title=\"1529035335196394.png\" alt=\"16.png\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529035353273769.png\" title=\"1529035353273769.png\" alt=\"17.png\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529035361355719.png\" title=\"1529035361355719.png\" alt=\"18.png\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-06-08 11:37:44', '2018-08-14 16:39:21', null);
  239. INSERT INTO `ibrand_goods` VALUES ('124', '2018女装T恤女式夏款新品韩版修身女T一件代发短袖女款打底衫', 'D014', '22', '3', '29.90', '29.90', '29.90', '119.00', '119.00', null, null, '3200', 'https://cdn.viperky.com/storage/images/20180608/9QaNQFD7uv.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"undefined\" height=\"651.0118505013673\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430942661518.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"581.8778486782134\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430942436033.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"611.4038286235187\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430942393394.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"601.3217866909754\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430942745461.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"823.8468550592526\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430942569372.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"607.0829535095716\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430942381796.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"615.7247037374658\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430942133319.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"591.9598906107566\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430943600782.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"546.5907019143118\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430943532205.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"774.876937101185\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430943960069.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"791.4402917046491\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430943281816.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"632.2880583409299\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430943616489.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"661.0938924339107\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430943824456.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"678.3773928896992\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430943783817.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"651.0118505013673\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430943932077.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"652.4521422060164\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430943961419.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"633.7283500455788\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430943356339.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"681.9781221513218\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430943691463.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"707.9033728350046\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430943252321.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"690.6198723792161\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430943379626.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"717.9854147675479\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430943294620.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"648.1312670920693\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430943350011.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"651.0118505013673\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430943827247.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"646.6909753874203\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430943943995.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"688.4594348222425\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430943890299.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"777.7575205104831\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430943350755.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"766.9553327256153\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430943651129.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-06-08 12:09:31', '2018-06-14 11:52:14', null);
  240. INSERT INTO `ibrand_goods` VALUES ('125', '2018新款吊带背心女夏 50S莫代尔随心裁无痕女士背心打底小背心', 'A0111-12', '22', '3', '39.00', '39.00', '39.00', '99.00', '99.00', null, null, '4200', 'https://cdn.viperky.com/storage/images/20180608/hf8RVBkfT8.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" height=\"486.8185961713765\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528437654845316.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" height=\"667.5752051048314\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528437654641434.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" height=\"545.8705560619873\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528437654549065.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"a0113女装夏款模特图版_02\" height=\"1373.3181403828623\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528437654182767.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"a0113女装夏款模特图版_03\" height=\"1923.5095715587968\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528437654305266.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"a0113女装夏款模特图版_04\" height=\"2199.3254329990887\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528437654146485.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"a0113女装夏款模特图版_05\" height=\"2879.8632634457613\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528437654873892.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"a0113女装夏款模特图版_06\" height=\"1243.6918869644485\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528437654818560.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" height=\"808.7237921604376\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528437654269296.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" height=\"1289.0610756608933\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528437654324854.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" height=\"1086.700091157703\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528437654804525.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"a0111女装夏款模特图版_10_01\" height=\"811.6043755697357\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528437655782262.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" height=\"906.6636280765725\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528437655304582.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180608/1528437685318051.png\" title=\"1528437685318051.png\" alt=\"QQ截图20180608140302.png\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180608/1528438026130058.png\" title=\"1528438026130058.png\" alt=\"1.png\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180608/1528438035759354.png\" title=\"1528438035759354.png\" alt=\"2.png\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180608/1528438043282438.png\" title=\"1528438043282438.png\" alt=\"3.png\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180608/1528438051219667.png\" title=\"1528438051219667.png\" alt=\"4.png\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180608/1528438058697202.png\" title=\"1528438058697202.png\" alt=\"5.png\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180608/1528438066522271.png\" title=\"1528438066522271.png\" alt=\"6.png\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180608/1528438076561172.png\" title=\"1528438076561172.png\" alt=\"7.png\"/></p><p><br/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-06-08 14:11:13', '2018-06-14 11:52:14', null);
  241. INSERT INTO `ibrand_goods` VALUES ('126', '2018夏季50S莫代尔宽松短袖超大弹力凉爽男T恤', 'B0121', '22', '3', '58.00', '58.00', '58.00', '168.00', '168.00', null, null, '4000', 'https://cdn.viperky.com/storage/images/20180608/Rj8IuoEEm6.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528440328829281.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528440328783453.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528440328509632.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528440328413922.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528440329899649.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528440329241040.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528440329452602.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528440329109379.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528440329584073.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528440329534358.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528440329458533.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528440329525359.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528440329748124.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-06-08 14:46:06', '2018-06-14 11:52:14', null);
  242. INSERT INTO `ibrand_goods` VALUES ('127', ' 2018新款50S莫代尔韩版男士夏季背心', 'B0111-12', '22', '3', '58.00', '58.00', '58.00', '168.00', '168.00', null, null, '3500', 'https://cdn.viperky.com/storage/images/20180608/BR1Yp3S3jC.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"undefined\" height=\"702.1422060164084\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528441587481341.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"1096.0619872379216\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528441587926305.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"1521.3640922768304\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528441587470152.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"690.6198723792161\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528441587767519.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"796.4813126709207\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528441587154263.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"1296.2625341841385\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528441587914514.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"1075.1777575205106\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528441587964568.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"789.2798541476755\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528441587889924.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"789.2798541476755\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528441587878795.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"1353.1540565177759\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528441587700636.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"1314.2661804922516\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528441587901899.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"1061.4949863263446\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528441587734607.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"1543.031536113937\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528441587804350.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"995.2415679124887\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528441587398072.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"566.0346399270738\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528441587303331.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"887.9398359161349\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528441587783274.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"1091.02096627165\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528441587860219.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"1091.02096627165\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528441587293635.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-06-08 15:07:40', '2018-06-14 11:52:14', null);
  243. INSERT INTO `ibrand_goods` VALUES ('130', ' 2018新款50S莫代尔韩版男士夏季背心', 'B0111-12-99', '22', '3', '39.90', '39.90', '39.90', '168.00', '168.00', null, null, '3500', 'https://cdn.viperky.com/storage/images/20180611/M9px9IZAkK.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"undefined\" height=\"702.1422060164084\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528441587481341.jpg\" width=\"790\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"1096.0619872379216\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528441587926305.jpg\" width=\"790\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"1521.3640922768304\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528441587470152.jpg\" width=\"790\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"690.6198723792161\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528441587767519.jpg\" width=\"790\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"796.4813126709207\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528441587154263.jpg\" width=\"790\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"1296.2625341841385\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528441587914514.jpg\" width=\"790\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"789.2798541476755\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528441587878795.jpg\" width=\"790\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529033493773325.png\" title=\"1529033493773325.png\" alt=\"1.png\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529033499751869.png\" title=\"1529033499751869.png\" alt=\"2.png\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529033505578442.png\" title=\"1529033505578442.png\" alt=\"3.png\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529033509529822.png\" title=\"1529033509529822.png\" alt=\"4.png\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529033514327590.png\" title=\"1529033514327590.png\" alt=\"5.png\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529033519954408.png\" title=\"1529033519954408.png\" alt=\"6.png\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529033524448731.png\" title=\"1529033524448731.png\" alt=\"7.png\"/><br/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-06-11 13:21:48', '2018-08-14 16:39:21', null);
  244. INSERT INTO `ibrand_goods` VALUES ('131', '2018夏季50S莫代尔宽松短袖超大弹力凉爽男士T恤', 'B0121-A', '22', '3', '39.90', '39.90', '39.90', '168.00', '168.00', null, null, '4000', 'https://cdn.viperky.com/storage/images/20180611/cwz4m11J3s.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528440328829281.jpg\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528440328783453.jpg\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528440328509632.jpg\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528440328413922.jpg\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528440329899649.jpg\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528440329241040.jpg\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528440329452602.jpg\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528440329109379.jpg\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528440329584073.jpg\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529034915306618.png\" title=\"1529034915306618.png\" alt=\"8.png\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529034922706234.png\" title=\"1529034922706234.png\" alt=\"9.png\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529034927706326.png\" title=\"1529034927706326.png\" alt=\"10.png\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529034935815155.png\" title=\"1529034935815155.png\" alt=\"11.png\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529034941759162.png\" title=\"1529034941759162.png\" alt=\"12.png\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529034947492542.png\" title=\"1529034947492542.png\" alt=\"13.png\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529034954868241.png\" title=\"1529034954868241.png\" alt=\"14.png\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180615/1529037279428314.png\" title=\"1529037279428314.png\" alt=\"36.png\"/></p><p><br/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-06-11 13:33:43', '2018-08-14 16:39:21', null);
  245. INSERT INTO `ibrand_goods` VALUES ('132', '2018新款夏50S莫代尔随心裁无痕女士打底小背心', 'A0111-12-A', '22', '3', '39.90', '39.90', '39.90', '129.00', '129.00', null, null, '2800', 'https://cdn.viperky.com/storage/images/20180611/uxnpIN7Bmd.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; font-size: 12px; white-space: normal; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif;\"><br/><img alt=\"undefined\" height=\"667.5752051048314\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528437654641434.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" height=\"545.8705560619873\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528437654549065.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; font-size: 12px; white-space: normal; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif;\"><img alt=\"a0113女装夏款模特图版_02\" height=\"1373.3181403828623\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528437654182767.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"a0113女装夏款模特图版_03\" height=\"1923.5095715587968\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528437654305266.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"a0113女装夏款模特图版_04\" height=\"2199.3254329990887\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528437654146485.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"a0113女装夏款模特图版_05\" height=\"2879.8632634457613\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528437654873892.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"a0113女装夏款模特图版_06\" height=\"1243.6918869644485\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528437654818560.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; font-size: 12px; white-space: normal; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif;\"><img alt=\"undefined\" height=\"808.7237921604376\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528437654269296.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" height=\"1289.0610756608933\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528437654324854.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"undefined\" height=\"906.6636280765725\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528437655304582.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; font-size: 12px; white-space: normal; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif;\"><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180608/1528437685318051.png\" title=\"1528437685318051.png\" alt=\"QQ截图20180608140302.png\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; font-size: 12px; white-space: normal; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif;\"><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180608/1528438026130058.png\" title=\"1528438026130058.png\" alt=\"1.png\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; font-size: 12px; white-space: normal; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif;\"><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180608/1528438035759354.png\" title=\"1528438035759354.png\" alt=\"2.png\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; font-size: 12px; white-space: normal; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif;\"><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180608/1528438043282438.png\" title=\"1528438043282438.png\" alt=\"3.png\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; font-size: 12px; white-space: normal; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif;\"><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180608/1528438051219667.png\" title=\"1528438051219667.png\" alt=\"4.png\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; font-size: 12px; white-space: normal; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif;\"><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180608/1528438058697202.png\" title=\"1528438058697202.png\" alt=\"5.png\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; font-size: 12px; white-space: normal; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif;\"><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180608/1528438066522271.png\" title=\"1528438066522271.png\" alt=\"6.png\"/></p><p style=\"margin-top: 0px; margin-bottom: 0px; font-size: 12px; white-space: normal; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif;\"><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180608/1528438076561172.png\" title=\"1528438076561172.png\" alt=\"7.png\"/></p><p><br/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-06-11 13:46:20', '2018-08-14 16:39:21', null);
  246. INSERT INTO `ibrand_goods` VALUES ('133', '2018女式夏款新品韩版修身女T短袖打底衫', 'D014-1', '22', '3', '39.90', '39.90', '39.90', '119.00', '119.00', null, null, '3200', 'https://cdn.viperky.com/storage/images/20180611/orZTXh1OtV.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"undefined\" height=\"651.0118505013673\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430942661518.jpg\" width=\"790\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"581.8778486782134\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430942436033.jpg\" width=\"790\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"611.4038286235187\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430942393394.jpg\" width=\"790\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"823.8468550592526\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430942569372.jpg\" width=\"790\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"607.0829535095716\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430942381796.jpg\" width=\"790\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"615.7247037374658\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430942133319.jpg\" width=\"790\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"591.9598906107566\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430943600782.jpg\" width=\"790\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"546.5907019143118\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430943532205.jpg\" width=\"790\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"774.876937101185\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430943960069.jpg\" width=\"790\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"791.4402917046491\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430943281816.jpg\" width=\"790\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"632.2880583409299\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430943616489.jpg\" width=\"790\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"661.0938924339107\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430943824456.jpg\" width=\"790\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"678.3773928896992\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430943783817.jpg\" width=\"790\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"651.0118505013673\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430943932077.jpg\" width=\"790\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"652.4521422060164\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430943961419.jpg\" width=\"790\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"633.7283500455788\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430943356339.jpg\" width=\"790\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><br style=\"font-size: 12px; white-space: normal; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" height=\"681.9781221513218\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180608/1528430943691463.jpg\" width=\"790\" style=\"font-size: 12px; white-space: normal; border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); zoom: 1;\"/><br/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-06-11 13:59:57', '2018-08-14 16:39:21', null);
  247. INSERT INTO `ibrand_goods` VALUES ('134', '2018年秋新品 儿童棉麻长袖T秋 开扣棉麻T', '617#', '23', '3', '78.00', '78.00', '78.00', '129.00', '129.00', null, null, '450', 'https://cdn.viperky.com/storage/images/20180807/Hg6uHt9SnI.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\"><img alt=\"undefined\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/791/885/9090588197_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/295/765/9090567592_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/762/585/9090585267_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/153/375/9090573351_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/828/303/9131303828_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/071/195/9090591170_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/186/170/9113071681_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/593/075/9090570395_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/960/311/9113113069_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/776/213/9131312677_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\"><span style=\"font-weight: 700;\"><span style=\"font-family: simsun; font-size: 12pt;\">&nbsp;<img alt=\"20180709-IMG_0398.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/827/405/9100504728_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0399.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/336/342/9078243633_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0400.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/516/615/9100516615_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0404.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/024/727/9118727420_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0403.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/923/735/9100537329_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0401.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/849/886/9118688948_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0402.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/543/972/9078279345_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0405.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/685/427/9118724586_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0406.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/889/132/9078231988_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0407.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/535/252/9078252535_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0408.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/470/762/9078267074_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0409.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/508/315/9100513805_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0410.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/279/105/9100501972_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0390.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/252/045/9100540252_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0391.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/559/894/9100498955_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0392.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/373/435/9100534373_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0393.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/012/937/9118739210_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0394.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/936/607/9118706639_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0395.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/544/825/9100528445_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0396.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/674/517/9118715476_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></span></span></p><p><br/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-07 21:27:29', '2018-08-16 16:54:52', null);
  248. INSERT INTO `ibrand_goods` VALUES ('135', '2018儿童牛仔裤 韩板洗水牛仔童裤 萝卜形男女童牛仔裤', '31175#', '23', '1', '88.00', '88.00', '88.00', '136.00', '136.00', null, null, '0', 'https://cdn.viperky.com/storage/images/20180807/p2CXcuNEn9.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"微信图片_20180225164242.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/323/709/8553907323_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180225164239.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/823/517/8534715328_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180225164228.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/546/988/8553889645_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180114174656.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/617/992/8303299716_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180114174643.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/776/675/8315576677_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180114174557.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/892/306/8315603298_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180114174554.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/588/654/8286456885_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"IMG_0269-34.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/766/037/8534730667_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"IMG_0266-31.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/430/499/8553994034_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"IMG_0290-55.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/162/108/8567801261_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"IMG_0291-56.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/337/139/8553931733_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"IMG_0293-58.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/173/457/8534754371_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"IMG_0292-57.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/750/018/8567810057_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"IMG_0275-40.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/450/067/8534760054_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"IMG_0274-39.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/741/408/8567804147_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"IMG_0273-38.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/335/867/8567768533_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"IMG_0272-37.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/707/439/8553934707_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"IMG_0271-36.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/966/267/8567762669_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"IMG_0270-35.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/674/387/8567783476_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-07 21:41:31', '2018-08-20 17:02:07', null);
  249. INSERT INTO `ibrand_goods` VALUES ('136', '2018儿童棉麻长裤 双层棉麻大PP裤 男女童哈伦裤', '30125#', '23', '1', '69.00', '69.00', '69.00', '106.00', '106.00', null, null, '0', 'https://cdn.viperky.com/storage/images/20180808/LQUwnv2TgG.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"棉麻长裤5\" height=\"637.0803662258393\" src=\"https://cbu01.alicdn.com/img/ibank/2015/973/152/2436251379_1814772146.jpg\" width=\"750\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); display: block; margin-left: auto; margin-right: auto; zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"棉麻长裤17\" height=\"690.2119071644803\" src=\"https://cbu01.alicdn.com/img/ibank/2015/281/356/2432653182_1814772146.jpg\" width=\"750\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); display: block; margin-left: auto; margin-right: auto; zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"棉麻长裤11\" height=\"663.054435483871\" src=\"https://cbu01.alicdn.com/img/ibank/2015/264/281/2437182462_1814772146.jpg\" width=\"750\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); display: block; margin-left: auto; margin-right: auto; zoom: 1;\"/><span style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; background-color: rgb(255, 255, 255);\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span><span style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; background-color: rgb(255, 255, 255); font-size: 26pt;\"><a href=\"https://detail.1688.com/offer/522091533613.html?spm=a2615.2177701.0.0.hxYxHt\" style=\"text-decoration-line: none; color: rgb(34, 34, 34); transition: color 0.3s ease 0s;\"><span style=\"font-size: 26pt;\">以下黑色棉麻T链接</span></a></span><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2015/816/008/2432800618_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); display: block; margin-left: auto; margin-right: auto; zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"IMG_9168_副本\" src=\"https://cbu01.alicdn.com/img/ibank/2015/473/476/2432674374_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); display: block; margin-left: auto; margin-right: auto; zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"IMG_9193_副本_副本\" height=\"750\" src=\"https://cbu01.alicdn.com/img/ibank/2015/265/176/2432671562_1814772146.jpg\" width=\"750\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); display: block; margin-left: auto; margin-right: auto; zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"IMG_9231_副本\" height=\"750\" src=\"https://cbu01.alicdn.com/img/ibank/2015/145/092/2436290541_1814772146.jpg\" width=\"750\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2015/425/497/2432794524_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); display: block; margin-left: auto; margin-right: auto; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-08 21:25:03', '2018-08-20 17:01:54', null);
  250. INSERT INTO `ibrand_goods` VALUES ('137', '2018秋款新品 儿童秋款棉麻衫 韩板棉麻娃娃有领衫 女童衬衫', '670#', '23', '3', '78.00', '78.00', '78.00', '129.00', '129.00', null, null, '46', 'https://cdn.viperky.com/storage/images/20180808/0pyNSZVN5k.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\"><span style=\"font-size: 26pt;\"><img alt=\"undefined\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/808/422/9101224808_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\"><span style=\"font-size: 26pt;\"><img alt=\"微信图片_20180716161143.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/593/972/9102279395_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\"><span style=\"font-size: 26pt;\"><img alt=\"微信图片_20180710210920.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/314/387/9128783413_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180710210914.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/399/635/9110536993_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180710210908.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/998/131/9088131899_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180710210903.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/096/845/9110548690_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180710210858.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/772/965/9110569277_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180710210853.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/419/521/9088125914_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180710210850.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/450/095/9110590054_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180710210846.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/653/761/9088167356_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180710210835.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/766/477/9128774667_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180710210831.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/953/755/9110557359_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\"><span style=\"font-weight: 700;\"><span style=\"font-family: simsun; font-size: 12pt;\">&nbsp;<img alt=\"20180709-IMG_0272.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/314/244/9118442413_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0273.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/112/499/9077994211_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0274.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/889/649/9077946988_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0275.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/044/942/9100249440_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0276.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/833/462/9100264338_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0277.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/147/822/9100228741_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></span></span></p><p><br/></p>', null, '0', '0', '0', '0', '4', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-08 21:38:02', '2018-09-08 15:00:06', null);
  251. INSERT INTO `ibrand_goods` VALUES ('138', '【秋款】2018年儿童秋款T 儿童打底衫秋款 竹节棉阔形儿童T恤', '30685#', '23', '3', '49.00', '49.00', '49.00', '73.00', '73.00', null, null, '240', 'https://cdn.viperky.com/storage/images/20180808/acHADSQSCT.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\"><span style=\"font-size: 22pt;\"><img alt=\"1-0468副本\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2017/848/895/7935598848_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\"><span style=\"font-size: 22pt;\"><img alt=\"1-0465副本\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2017/289/576/7840675982_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0454副本\" height=\"632\" src=\"https://cbu01.alicdn.com/img/ibank/2017/401/699/7827996104_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; font-size: 22pt; zoom: 1;\"/><br/></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\"><span style=\"font-size: 22pt;\"><br/><img alt=\"1-0458副本\" height=\"631.5885416666666\" src=\"https://cbu01.alicdn.com/img/ibank/2017/577/849/7827948775_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0352副本\" height=\"632\" src=\"https://cbu01.alicdn.com/img/ibank/2017/802/969/7827969208_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0356副本\" height=\"569.046875\" src=\"https://cbu01.alicdn.com/img/ibank/2017/247/704/7851407742_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0342副本\" height=\"631.5885416666666\" src=\"https://cbu01.alicdn.com/img/ibank/2017/215/224/7851422512_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0349副本\" height=\"632\" src=\"https://cbu01.alicdn.com/img/ibank/2017/288/683/7851386882_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0459\" height=\"526.6666666666666\" src=\"https://cbu01.alicdn.com/img/ibank/2017/123/099/7827990321_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0462副本\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2017/730/800/7828008037_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0360副本\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2017/283/044/7851440382_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\"><span style=\"font-size: 22pt;\"><img alt=\"1-0479副本\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2017/456/281/7947182654_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0470副本\" height=\"506.58750000000003\" src=\"https://cbu01.alicdn.com/img/ibank/2017/799/985/7935589997_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0475副本\" height=\"665.575\" src=\"https://cbu01.alicdn.com/img/ibank/2017/541/632/7947236145_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0474\" height=\"526.3375\" src=\"https://cbu01.alicdn.com/img/ibank/2017/031/736/7935637130_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0473副本\" height=\"456.225\" src=\"https://cbu01.alicdn.com/img/ibank/2017/865/671/7947176568_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0472副本\" height=\"484.8625\" src=\"https://cbu01.alicdn.com/img/ibank/2017/657/406/7935604756_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0471\" height=\"526.3375\" src=\"https://cbu01.alicdn.com/img/ibank/2017/219/595/7935595912_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0476副本\" height=\"677.4250000000001\" src=\"https://cbu01.alicdn.com/img/ibank/2017/892/033/7923330298_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0477\" height=\"526.3375\" src=\"https://cbu01.alicdn.com/img/ibank/2017/110/362/7947263011_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></span></p><p><br/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-08 22:04:03', '2018-08-08 22:04:04', null);
  252. INSERT INTO `ibrand_goods` VALUES ('139', '2018年秋款新品 儿童长袖衬衫 韩板宽松格仔衬衫 细格长袖衬衫', '690#', '23', '3', '78.00', '78.00', '78.00', '129.00', '129.00', null, null, '80', 'https://cdn.viperky.com/storage/images/20180809/RYTnznYv9h.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 13.3333px; white-space: normal; text-align: center;\"><img alt=\"微信图片_20180710212717.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782234277628.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180710212802.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782234805788.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180710212812.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782234934515.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180710212807.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782235585912.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180710212822.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782235213784.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180710212817.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782235442696.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180710212914.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782235785243.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180710212708.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782235868018.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180710212706.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782235915933.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180710212700.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782235926186.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180710212507.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782235719991.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180710212440.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782235179848.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180710212437.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782235659775.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180710212434.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782235673830.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180710212454.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782235460838.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180710212451.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782235757878.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 13.3333px; white-space: normal; text-align: center;\"><span style=\"font-weight: 700;\"><span style=\"font-family: simsun; font-size: 12pt;\">&nbsp;<img alt=\"20180708-IMG_0166.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782235131451.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180708-IMG_0165.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782236277725.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></span></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 13.3333px; white-space: normal; text-align: center;\">&nbsp;<img alt=\"20180708-IMG_0147.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782236244136.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180708-IMG_0148.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782236788211.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180708-IMG_0149.jpg\" height=\"526.2552083333333\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782236460980.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180708-IMG_0150.jpg\" height=\"526.2552083333333\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782236790602.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180708-IMG_0151.jpg\" height=\"526.2552083333333\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782236446592.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180708-IMG_0152.jpg\" height=\"526.2552083333333\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782236235558.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180708-IMG_0154.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782236847414.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180708-IMG_0155.jpg\" height=\"526.2552083333333\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782236464045.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180708-IMG_0156.jpg\" height=\"526.2552083333333\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782236990693.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><br/><br/><br/><img alt=\"20180708-IMG_0164.jpg\" height=\"526.2552083333333\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782236868316.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180708-IMG_0163.jpg\" height=\"526.2552083333333\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782236733763.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180708-IMG_0162.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782236651721.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180708-IMG_0161.jpg\" height=\"526.2552083333333\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782236727573.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180708-IMG_0160.jpg\" height=\"526.2552083333333\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782236160070.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180708-IMG_0159.jpg\" height=\"526.2552083333333\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782237869676.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180708-IMG_0158.jpg\" height=\"526.2552083333333\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782237972782.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180708-IMG_0157.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180809/1533782237328344.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-09 10:37:53', '2018-08-23 10:24:26', null);
  253. INSERT INTO `ibrand_goods` VALUES ('140', '2018年秋 儿童卫衣长裤 韩板撞边卫衣运动裤 校服裤男女童款', '635#', '23', '1', '76.00', '76.00', '76.00', '110.00', '110.00', null, null, '200', 'https://cdn.viperky.com/storage/images/20180809/UDlLDjaSd8.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 13.3333px; white-space: normal; text-align: center;\"><span style=\"font-weight: 700;\"><span style=\"font-family: simsun; font-size: 12pt;\"><span style=\"font-size: 16pt;\"><img alt=\"微信图片_20180702102543.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/699/160/9084061996_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702102547.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/310/817/9062718013_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702102552.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/777/901/9103109777_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702102421.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/194/121/9103121491_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702102527.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/952/331/9103133259_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702102532.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/402/931/9103139204_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702102637.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/853/151/9084151358_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702102701.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/251/187/9062781152_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702102833.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/649/751/9103157946_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702102815.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/067/871/9103178760_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702102810.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/403/412/9103214304_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702102802.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/283/841/9084148382_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702102749.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/006/931/9084139600_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702102735.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/936/481/9103184639_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702103416.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/527/856/9062658725_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702102943.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/970/901/9084109079_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702102939.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/256/376/9062673652_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702102924.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/471/607/9062706174_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"微信图片_20180713115926.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/905/962/9091269509_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713115920.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/786/152/9091251687_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713115653.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/125/980/9132089521_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713115645.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/556/308/9113803655_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713115642.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/224/290/9132092422_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713115546.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/629/260/9132062926_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713115548.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/544/362/9091263445_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/></span></span></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 13.3333px; white-space: normal;\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 13.3333px; white-space: normal;\"><img alt=\"2.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/982/980/9054089289_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1.jpg\" height=\"632\" src=\"https://cbu01.alicdn.com/img/ibank/2018/399/520/9036025993_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0389.jpg\" height=\"632\" src=\"https://cbu01.alicdn.com/img/ibank/2018/708/560/9054065807_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0390.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/034/204/9015402430_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0396.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/421/714/9015417124_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0395.jpg\" height=\"632\" src=\"https://cbu01.alicdn.com/img/ibank/2018/215/693/9015396512_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0394.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/763/970/9036079367_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0393.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/633/580/9036085336_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0392.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/004/504/9015405400_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0397.jpg\" height=\"631.5885416666666\" src=\"https://cbu01.alicdn.com/img/ibank/2018/272/414/9015414272_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0398.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/667/550/9036055766_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0399.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/455/393/9015393554_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0400.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/346/783/9015387643_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0401.jpg\" height=\"632\" src=\"https://cbu01.alicdn.com/img/ibank/2018/024/670/9036076420_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0402.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/471/290/9054092174_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0403.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/690/590/9054095096_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0404.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/438/860/9054068834_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0405.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/806/093/9015390608_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0406.jpg\" height=\"632\" src=\"https://cbu01.alicdn.com/img/ibank/2018/626/483/9015384626_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0407.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/855/993/9015399558_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0408.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/789/950/9054059987_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0417.jpg\" height=\"631.5885416666666\" src=\"https://cbu01.alicdn.com/img/ibank/2018/594/380/9054083495_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0418.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/341/101/9054101143_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0419.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/296/070/9036070692_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0420.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/626/370/9036073626_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0421.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/651/890/9054098156_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0422.jpg\" height=\"631.5885416666666\" src=\"https://cbu01.alicdn.com/img/ibank/2018/800/121/9036121008_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0423.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/294/280/9036082492_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0411.jpg\" height=\"631.5885416666666\" src=\"https://cbu01.alicdn.com/img/ibank/2018/692/190/9036091296_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0412.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/471/024/9015420174_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0413.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/163/880/9036088361_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0416.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/057/850/9036058750_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0415.jpg\" height=\"631.5885416666666\" src=\"https://cbu01.alicdn.com/img/ibank/2018/918/183/9015381819_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0414.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/139/640/9036046931_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-09 10:56:20', '2018-08-09 10:58:24', null);
  254. INSERT INTO `ibrand_goods` VALUES ('141', '2018儿童秋款棉麻长裤 韩板锥形棉麻长裤 男女童长裤', '31015#', '23', '1', '79.00', '79.00', '79.00', '123.00', '123.00', null, null, '59', 'https://cdn.viperky.com/storage/images/20180810/gXgEf0llFP.png', null, null, '0', '0', '0', '0', '1', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-10 10:53:53', '2018-09-10 17:26:03', null);
  255. INSERT INTO `ibrand_goods` VALUES ('142', '2018儿童秋款长袖麻T 森系文艺范男女童印波点长袖棉麻T恤', '31020#', '23', '3', '76.00', '76.00', '76.00', '116.00', '116.00', null, null, '50', 'https://cdn.viperky.com/storage/images/20180810/2WTTyzpvXj.png', null, null, '0', '0', '0', '0', '0', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-10 11:04:09', '2018-08-20 17:01:18', null);
  256. INSERT INTO `ibrand_goods` VALUES ('143', '儿童秋冬有帽卫衣外套 韩板男女童抓绒卫衣帽衫', '31092#', '23', '3', '79.00', '79.00', '79.00', '123.00', '123.00', null, null, '50', 'https://cdn.viperky.com/storage/images/20180810/vgc6zZAQqz.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\"><span style=\"font-size: 16pt;\"><img alt=\"QQ截图20170914151803\" height=\"574.6177062374245\" src=\"https://cbu01.alicdn.com/img/ibank/2017/329/241/4691142923_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"QQ截图20170914151646\" height=\"593.1152647975078\" src=\"https://cbu01.alicdn.com/img/ibank/2017/509/993/4688399905_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"QQ截图20170914154139\" height=\"535.5430711610487\" src=\"https://cbu01.alicdn.com/img/ibank/2017/201/086/4688680102_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"QQ截图20170914154157\" height=\"550.4222648752399\" src=\"https://cbu01.alicdn.com/img/ibank/2017/612/476/4688674216_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\"><span style=\"font-size: 16pt;\"><img alt=\"QQ截图20170922225846\" height=\"578.6472945891784\" src=\"https://cbu01.alicdn.com/img/ibank/2017/995/301/4842103599_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"QQ截图20170922230109\" height=\"591.0791366906475\" src=\"https://cbu01.alicdn.com/img/ibank/2017/852/246/4845642258_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"QQ截图20170922225909\" height=\"564.1748526522593\" src=\"https://cbu01.alicdn.com/img/ibank/2017/819/036/4845630918_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><img alt=\"QQ截图20170914151258\" height=\"577.49\" src=\"https://cbu01.alicdn.com/img/ibank/2017/217/204/4688402712_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"QQ截图20170914151210\" height=\"580.1810865191147\" src=\"https://cbu01.alicdn.com/img/ibank/2017/715/804/4688408517_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"QQ截图20170914153129\" src=\"https://cbu01.alicdn.com/img/ibank/2017/337/841/4691148733_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"QQ截图20170914152914\" src=\"https://cbu01.alicdn.com/img/ibank/2017/001/114/4688411100_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"QQ截图20170914152057\" height=\"524.1346153846154\" src=\"https://cbu01.alicdn.com/img/ibank/2017/386/151/4691151683_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"QQ截图20170914152038\" src=\"https://cbu01.alicdn.com/img/ibank/2017/012/866/4688668210_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"QQ截图20170914152015\" height=\"504.25531914893617\" src=\"https://cbu01.alicdn.com/img/ibank/2017/016/266/4688662610_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></span></p><p><br/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-10 16:19:09', '2018-08-20 17:00:26', null);
  257. INSERT INTO `ibrand_goods` VALUES ('144', '2018年儿童春款灯笼裤 韩板灯芯绒束脚9分裤男女童款', '31078#', '23', '1', '88.00', '88.00', '88.00', '139.00', '139.00', null, null, '20', 'https://cdn.viperky.com/storage/images/20180810/ejVTkuJc6R.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\"><span style=\"font-size: 18pt;\"><img alt=\"微信图片_20170927224350\" height=\"787.9427083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2017/723/900/4845009327_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20170923205359\" height=\"787.9427083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2017/945/751/4840157549_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20170927224347\" height=\"787.9427083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2017/874/794/4841497478_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20170923000208\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2017/869/433/4840334968_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20170923000208\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2017/758/781/4840187857_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20170923000222\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2017/573/365/4841563375_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20170927224336\" height=\"787.9427083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2017/105/592/4840295501_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20170927224333\" height=\"787.9427083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2017/108/210/4845012801_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20170927224329\" height=\"787.9427083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2017/824/982/4840289428_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\"><span style=\"font-size: 18pt;\"><img alt=\"1-0385副本\" src=\"https://cbu01.alicdn.com/img/ibank/2017/035/490/7948094530_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0386副本\" src=\"https://cbu01.alicdn.com/img/ibank/2017/673/654/7936456376_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0396副本\" src=\"https://cbu01.alicdn.com/img/ibank/2017/311/611/7924116113_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0387\" src=\"https://cbu01.alicdn.com/img/ibank/2017/782/564/7936465287_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0389\" src=\"https://cbu01.alicdn.com/img/ibank/2017/525/624/7936426525_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0390\" src=\"https://cbu01.alicdn.com/img/ibank/2017/532/174/7936471235_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0391\" src=\"https://cbu01.alicdn.com/img/ibank/2017/299/440/7924044992_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0392\" src=\"https://cbu01.alicdn.com/img/ibank/2017/638/114/7936411836_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0394\" src=\"https://cbu01.alicdn.com/img/ibank/2017/844/744/7936447448_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0395\" src=\"https://cbu01.alicdn.com/img/ibank/2017/981/511/7948115189_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0396副本\" src=\"https://cbu01.alicdn.com/img/ibank/2017/311/611/7924116113_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0397\" src=\"https://cbu01.alicdn.com/img/ibank/2017/684/834/7936438486_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0399\" src=\"https://cbu01.alicdn.com/img/ibank/2017/211/121/7948121112_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0400\" src=\"https://cbu01.alicdn.com/img/ibank/2017/229/560/7924065922_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0401\" src=\"https://cbu01.alicdn.com/img/ibank/2017/655/234/7936432556_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0402副本\" src=\"https://cbu01.alicdn.com/img/ibank/2017/200/405/7936504002_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1-0404\" src=\"https://cbu01.alicdn.com/img/ibank/2017/085/924/7936429580_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></span></p><p><br/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-10 16:49:29', '2018-08-16 16:51:16', null);
  258. INSERT INTO `ibrand_goods` VALUES ('145', '2018年秋款新 儿童萝卜裤秋 韩板花苞腰头洗水棉童装', '719#', '23', '1', '70.00', '70.00', '70.00', '119.00', '119.00', null, null, '50', 'https://cdn.viperky.com/storage/images/20180810/ezsAPK3nHH.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\"><span style=\"font-weight: 700;\"><span style=\"font-family: simsun; font-size: 12pt;\"><span style=\"font-size: 16pt;\"><img alt=\"微信图片_20180710205953.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/713/042/9106240317_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180710205948.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/228/418/9083814822_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180710205943.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/226/718/9083817622_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180710205911.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/789/394/9124493987_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180710210149\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/827/214/9083412728_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180710210549\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/915/724/9083427519_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180710210508\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/638/883/9083388836_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180710210201\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/141/331/9124133141_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/553/645/9121546355_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/103/945/9121549301_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></span></span></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal;\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\"><span style=\"font-weight: 700;\"><span style=\"font-family: simsun; font-size: 12pt;\">&nbsp;<img alt=\"_MG_7497裤_副本.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/231/409/9098904132_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"_MG_7506裤.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/354/778/9098877453_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"_MG_7510裤_副本.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/493/808/9139808394_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"_MG_7512裤.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/002/298/9098892200_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"QQ截图20180713174248_副本.png\" height=\"536.9682151589242\" src=\"https://cbu01.alicdn.com/img/ibank/2018/091/825/9121528190_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"QQ截图20180713174421.png\" src=\"https://cbu01.alicdn.com/img/ibank/2018/523/688/9098886325_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"QQ截图20180713174510.png\" src=\"https://cbu01.alicdn.com/img/ibank/2018/786/487/9139784687_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"QQ截图20180713174531.png\" src=\"https://cbu01.alicdn.com/img/ibank/2018/069/277/9139772960_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"QQ截图20180713174655.png\" height=\"579.3897216274089\" src=\"https://cbu01.alicdn.com/img/ibank/2018/856/097/9139790658_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></span></span></p><p><br/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-10 17:24:44', '2018-08-16 16:57:05', null);
  259. INSERT INTO `ibrand_goods` VALUES ('146', '2018年秋新品 儿童棉麻长袖T秋 韩板1:1制作棉麻长袖衫 拉边棉麻T', '692#', '23', '3', '70.00', '70.00', '70.00', '119.00', '119.00', null, null, '80', 'https://cdn.viperky.com/storage/images/20180813/wQ4UQ3VK0U.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"20180709-IMG_0353.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/837/054/9100450738_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180709-IMG_0362.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/827/354/9100453728_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180709-IMG_0355.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/131/261/9078162131_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180709-IMG_0354.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/178/834/9100438871_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180709-IMG_0356.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/767/831/9078138767_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180709-IMG_0357.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/322/736/9118637223_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180709-IMG_0358.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/350/771/9078177053_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180709-IMG_0361.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/339/444/9100444933_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180709-IMG_0360.jpg\" height=\"661.625\" src=\"https://cbu01.alicdn.com/img/ibank/2018/535/051/9078150535_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180709-IMG_0359.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/461/561/9078165164_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180709-IMG_0363.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/889/385/9118583988_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180709-IMG_0364.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/694/226/9118622496_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180709-IMG_0365.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/469/231/9078132964_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180709-IMG_0366.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/507/441/9078144705_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180709-IMG_0367.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/342/264/9100462243_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180709-IMG_0369.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/952/954/9100459259_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-13 14:28:02', '2018-08-16 16:54:00', null);
  260. INSERT INTO `ibrand_goods` VALUES ('147', '儿童棉麻裤秋款 韩板棉麻复古条萝卜裤 偏襟腰棉麻童裤', '746#', '23', '1', '69.00', '69.00', '70.00', '119.00', '119.00', null, null, '96', 'https://cdn.viperky.com/storage/images/20180813/qjMcdXIdbD.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"微信图片_20180806215908.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/415/883/9213388514_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180806215901.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/942/304/9213403249_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180806215945.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/554/391/9232193455_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180806215926.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/611/327/9189723116_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180806215918.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/516/973/9213379615_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180806215937.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/967/571/9232175769_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180806220015.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/685/193/9213391586_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180806220011.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/965/781/9232187569_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180806215953.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/132/604/9213406231_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180806220003.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/489/643/9213346984_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180806215743.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/830/751/9232157038_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180806215750.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/855/721/9232127558_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180806220022.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/144/103/9213301441_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180806215843.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/763/756/9189657367_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180806215817.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/824/541/9232145428_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180806215814.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/601/433/9213334106_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180806215759.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/746/331/9232133647_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180806220035.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/473/451/9232154374_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180806215836.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/373/613/9213316373_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 24px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-13 14:37:17', '2018-08-20 17:01:05', null);
  261. INSERT INTO `ibrand_goods` VALUES ('148', '2018秋款新品 儿童棉麻灯笼裤 韩板棉麻童裤 宽松跨裤', '668#', '23', '1', '82.00', '82.00', '82.00', '138.00', '138.00', null, null, '50', 'https://cdn.viperky.com/storage/images/20180813/mPBQyHz5LG.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\"><span style=\"font-weight: 700;\"><span style=\"font-family: simsun; font-size: 12pt;\"><span style=\"font-size: 16pt;\"><img alt=\"undefined\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/698/200/9113002896_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/316/582/9131285613_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/256/882/9131288652_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/334/735/9090537433_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/535/525/9090525535_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/914/920/9113029419_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/815/620/9113026518_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/349/594/9090495943_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/001/855/9090558100_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></span></span></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\"><span style=\"font-weight: 700;\"><span style=\"font-family: simsun; font-size: 12pt;\"><span style=\"font-size: 16pt;\"><img alt=\"20180709-IMG_0289.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/526/930/9078039625_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0304.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/417/072/9100270714_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0294.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/798/342/9100243897_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0311.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/303/492/9100294303_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0310.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/078/154/9118451870_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0309.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/051/213/9100312150_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0308.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/567/889/9077988765_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0307.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/271/874/9118478172_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0306.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/338/289/9077982833_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0305.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/749/852/9100258947_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0302.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/151/810/9078018151_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0301.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/621/184/9118481126_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0300.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/561/210/9078012165_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0297.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/719/544/9118445917_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0296.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/561/303/9100303165_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0295.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/031/903/9100309130_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0292.jpg\" height=\"790.411672746222\" src=\"https://cbu01.alicdn.com/img/ibank/2018/498/559/9077955894_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></span></span></span></p><p><br/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-13 15:00:20', '2018-08-16 16:57:50', null);
  262. INSERT INTO `ibrand_goods` VALUES ('149', '2018年秋 儿童长袖卫衣衫 韩板纯色卫衣衫 男女童宽松卫衣衫', '630#', '23', '3', '70.00', '70.00', '70.00', '119.00', '119.00', null, null, '90', 'https://cdn.viperky.com/storage/images/20180813/iSKOUjJfzd.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\"><img alt=\"微信图片_20180702102853.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/254/586/9115685452_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702102815.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/865/771/9075177568_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702102810.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/189/282/9097282981_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702102749.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/565/303/9097303565_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702102739.jpg\" height=\"746.796875\" src=\"https://cbu01.alicdn.com/img/ibank/2018/538/261/9075162835_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702102719.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/505/213/9097312505_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702102701.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/447/561/9075165744_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702102637.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/886/171/9075171688_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702102630.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/126/471/9075174621_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702102558.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/904/681/9075186409_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702102552.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/244/603/9097306442_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702102547.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/165/003/9097300561_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702102543.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/704/676/9115676407_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702102538.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/237/192/9097291732_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702102532.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/704/903/9097309407_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180702102421.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/552/591/9075195255_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/>&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal;\"><img alt=\"1.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/150/652/9036256051_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0507.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/661/052/9036250166_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0508.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/699/671/9054176996_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0509.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/109/594/9015495901_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0510.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/402/812/9054218204_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0511.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/077/015/9015510770_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0512.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/110/032/9054230011_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0513.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/623/832/9036238326_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0514.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/092/435/9015534290_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0515.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/793/532/9036235397_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0516.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/211/345/9015543112_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0517.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/796/491/9054194697_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0518.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/891/045/9015540198_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0519.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/703/442/9036244307_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0520.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/979/502/9036205979_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0521.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/429/202/9036202924_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0522.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/204/135/9015531402_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0523.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/017/225/9015522710_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0524.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/539/802/9036208935_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180609-IMG_0525.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/378/705/9015507873_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-13 15:30:58', '2018-08-16 17:00:34', null);
  263. INSERT INTO `ibrand_goods` VALUES ('150', '2018年秋款新品 儿童秋款背带裤 韩板1:1制作 粗斜棉儿童背带跨裤', '675#', '23', '1', '100.00', '100.00', '100.00', '168.00', '168.00', null, null, '67', 'https://cdn.viperky.com/storage/images/20180813/f1HxiawLYA.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\"><span style=\"font-size: 14pt;\"><img alt=\"undefined\" height=\"791.2363067292645\" src=\"https://cbu01.alicdn.com/img/ibank/2018/217/129/9172921712_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"1185.9265050820954\" src=\"https://cbu01.alicdn.com/img/ibank/2018/180/639/9191936081_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"1186.8544600938967\" src=\"https://cbu01.alicdn.com/img/ibank/2018/183/849/9172948381_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/955/819/9191918559_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\">&nbsp;</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\"><img alt=\"微信图片_20180707175426.jpg\" height=\"592.5\" src=\"https://cbu01.alicdn.com/img/ibank/2018/292/469/9083964292_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180707175424.jpg\" height=\"592.5\" src=\"https://cbu01.alicdn.com/img/ibank/2018/478/903/9106309874_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180707175421.jpg\" height=\"592.5\" src=\"https://cbu01.alicdn.com/img/ibank/2018/966/813/9106318669_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180707175419.jpg\" height=\"592.5\" src=\"https://cbu01.alicdn.com/img/ibank/2018/276/049/9083940672_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180707175416.jpg\" height=\"592.5\" src=\"https://cbu01.alicdn.com/img/ibank/2018/825/333/9106333528_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180707175414.jpg\" height=\"592.5\" src=\"https://cbu01.alicdn.com/img/ibank/2018/732/543/9106345237_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180707175412.jpg\" height=\"592.5\" src=\"https://cbu01.alicdn.com/img/ibank/2018/548/829/9083928845_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180707175409.jpg\" height=\"592.5\" src=\"https://cbu01.alicdn.com/img/ibank/2018/400/346/9124643004_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180707175330.jpg\" height=\"592.5\" src=\"https://cbu01.alicdn.com/img/ibank/2018/344/033/9106330443_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180707175404.jpg\" height=\"592.5\" src=\"https://cbu01.alicdn.com/img/ibank/2018/306/213/9106312603_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"微信图片_20180707175402.jpg\" height=\"592.5\" src=\"https://cbu01.alicdn.com/img/ibank/2018/814/723/9106327418_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180707175347.jpg\" height=\"592.5\" src=\"https://cbu01.alicdn.com/img/ibank/2018/378/919/9083919873_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180707175344.jpg\" height=\"592.5\" src=\"https://cbu01.alicdn.com/img/ibank/2018/419/303/9106303914_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180707175340.jpg\" height=\"592.5\" src=\"https://cbu01.alicdn.com/img/ibank/2018/959/106/9124601959_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180707175337.jpg\" height=\"592.5\" src=\"https://cbu01.alicdn.com/img/ibank/2018/229/792/9106297922_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180707175335.jpg\" height=\"592.5\" src=\"https://cbu01.alicdn.com/img/ibank/2018/469/882/9106288964_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\"><span style=\"font-weight: 700;\"><span style=\"font-family: simsun; font-size: 12pt;\">&nbsp;<img alt=\"微信图片_20180713113322.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/946/461/9113164649_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713113315.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/389/641/9113146983_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713113250.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/796/551/9113155697_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713113237.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/244/726/9090627442_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713113213.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/826/093/9131390628_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713113209.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/935/504/9131405539_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713113142.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/410/246/9090642014_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713113156.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/086/183/9131381680_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713113102.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/613/071/9113170316_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713113127.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/117/251/9113152711_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713113117.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/034/993/9131399430_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713113114.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/082/804/9131408280_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713113112.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/370/024/9131420073_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713113131.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/693/114/9131411396_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713113134.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/424/371/9113173424_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713113138.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/721/581/9113185127_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713113110.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/008/006/9090600800_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0371.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/033/042/9078240330_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0372.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/625/496/9118694526_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0389.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/863/642/9078246368_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0373.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/724/705/9100507427_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0374.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/483/307/9118703384_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0375.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/338/012/9078210833_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0376.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/759/402/9078204957_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0377.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/667/586/9118685766_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0378.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/771/525/9100525177_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0379.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/030/637/9118736030_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0382.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/504/015/9100510405_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0383.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/473/217/9118712374_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0384.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/776/196/9118691677_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0386.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/073/907/9118709370_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20180709-IMG_0388.jpg\" height=\"1185\" src=\"https://cbu01.alicdn.com/img/ibank/2018/771/135/9100531177_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></span></span></p><p><br/></p>', null, '0', '0', '0', '0', '13', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-13 15:40:15', '2018-09-07 17:22:38', null);
  264. INSERT INTO `ibrand_goods` VALUES ('151', '2018秋款儿童棉麻衬衫 韩板宽松防晒衣 棉麻衬衫男女童款', '31173#', '23', '3', '89.00', '89.00', '89.00', '149.00', '149.00', null, null, '25', 'https://cdn.viperky.com/storage/images/20180813/zjdpk2oK4z.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><span style=\"font-weight: 700; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; background-color: rgb(255, 255, 255);\"><span style=\"font-family: simsun; font-size: 12pt;\"><span style=\"font-size: 16pt;\"><img alt=\"微信图片_20180226125713.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180813/1534147166852407.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180226125710.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180813/1534147166770077.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180226125659.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180813/1534147167807106.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180226125702.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180813/1534147167370078.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180226125707.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180813/1534147167127837.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></span></span></span></p><p><img alt=\"IMG_0238-25.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180813/1534147194474441.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"IMG_0249-36.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180813/1534147194205187.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-13 16:00:04', '2018-08-16 16:56:22', null);
  265. INSERT INTO `ibrand_goods` VALUES ('152', '2018年秋款新品 儿童打底裤 糖果色打底裤 拉织边紧身弹力打底裤', '628#', '23', '1', '45.00', '45.00', '45.00', '75.00', '75.00', null, null, '288', 'https://cdn.viperky.com/storage/images/20180813/xkDXKpvuOE.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"微信图片_20180711141624.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/383/827/9123728383_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180711141620.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/843/479/9082974348_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180711141618.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/618/163/9105361816_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180711141613.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/680/610/9083016086_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180711141610.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/701/700/9083007107_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180711141603.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/967/659/9082956769_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180711141600.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/309/553/9105355903_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180711141558.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/017/407/9123704710_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180711141555.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/946/269/9082962649_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180711141552.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/561/193/9105391165_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180703221907\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/574/707/9123707475_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180711140923.jpg\" height=\"563.9867549668875\" src=\"https://cbu01.alicdn.com/img/ibank/2018/625/317/9123713526_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"QQ截图20180709113902\" src=\"https://cbu01.alicdn.com/img/ibank/2018/958/449/9082944859_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180703223235.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/371/520/9083025173_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180703223225.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/314/899/9082998413_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180703223222.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/855/179/9082971558_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180703223204.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/369/763/9105367963_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180703223128.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/017/973/9105379710_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180703223106.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/024/299/9082992420_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180703223054.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/542/793/9105397245_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180703223048.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/108/073/9105370801_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180703223025.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/973/989/9082989379_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180703223015.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/219/853/9105358912_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180703223006.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/305/869/9082968503_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180703222031.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/833/437/9123734338_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180703222000.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/644/137/9123731446_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180703221921.jpg\" height=\"794.5521215295967\" src=\"https://cbu01.alicdn.com/img/ibank/2018/822/310/9083013228_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180703221913.jpg\" height=\"795.3854221289985\" src=\"https://cbu01.alicdn.com/img/ibank/2018/785/917/9123719587_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180703221837.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/775/569/9082965577_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180703221830.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/276/017/9123710672_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180609-IMG_0483.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/004/384/9015483400_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180609-IMG_0478.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/006/361/9036163600_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180609-IMG_0477.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/120/405/9015504021_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180609-IMG_0476.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/321/391/9036193123_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180609-IMG_0475.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/995/864/9015468599_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180609-IMG_0474.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/968/341/9054143869_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180609-IMG_0473.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/312/581/9054185213_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180609-IMG_0472.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/372/684/9015486273_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180609-IMG_0471.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/393/871/9036178393_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180609-IMG_0468.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/977/654/9015456779_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180609-IMG_0467.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/906/264/9015462609_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180609-IMG_0466.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/407/954/9015459704_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180609-IMG_0465.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/434/084/9015480434_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180609-IMG_0464.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/779/041/9054140977_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180609-IMG_0461.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/530/881/9054188035_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180609-IMG_0460.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/440/894/9015498044_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180609-IMG_0459.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/471/971/9054179174_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180609-IMG_0458.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/025/161/9054161520_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180609-IMG_0457.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/845/061/9036160548_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180609-IMG_0455.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/030/691/9036196030_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180609-IMG_0454.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/999/431/9054134999_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180609-IMG_0453.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/361/294/9015492163_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180609-IMG_0452.jpg\" height=\"526.2552083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2018/817/751/9036157718_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"20180609-IMG_0451.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/325/564/9015465523_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"1.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/743/461/9054164347_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-13 16:44:40', '2018-08-16 17:02:03', null);
  266. INSERT INTO `ibrand_goods` VALUES ('153', '2018年秋新品 儿童长款衬衫 韩板oversize条纹长款衬衫 宽松衬衫', '30600#', '23', '3', '89.00', '89.00', '89.00', '143.00', '143.00', null, null, '30', 'https://cdn.viperky.com/storage/images/20180813/tIPmlxcSVl.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\"><img alt=\"微信图片_20180713161051.jpg\" height=\"592.5\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180813/1534151245254231.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713161049.jpg\" height=\"592.5\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180813/1534151245130609.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713161046.jpg\" height=\"592.5\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180813/1534151245378678.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713161044.jpg\" height=\"592.5\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180813/1534151245981679.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713161041.jpg\" height=\"592.5\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180813/1534151245703148.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713161039.jpg\" height=\"592.5\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180813/1534151245594638.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713161036.jpg\" height=\"592.5\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180813/1534151245145898.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713161033.jpg\" height=\"592.5\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180813/1534151246232103.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713161031.jpg\" height=\"592.5\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180813/1534151246853926.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713161029.jpg\" height=\"592.5\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180813/1534151246762125.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\"><img alt=\"微信图片_20180713161026.jpg\" height=\"592.5\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180813/1534151246719641.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713161018.jpg\" height=\"592.5\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180813/1534151246168361.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180713161013.jpg\" height=\"592.5\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180813/1534151246561455.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"_MG_7458衬衫.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180813/1534151246526385.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"_MG_7475衬衫.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180813/1534151246170027.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"_MG_7471能用.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180813/1534151246498637.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"QQ截图20180713160119.png\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180813/1534151246341865.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"QQ截图20180713160153.png\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180813/1534151246340400.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"QQ截图20180713160216.png\" height=\"594.6799116997793\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180813/1534151246639765.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"QQ截图20180713160232.png\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180813/1534151246448739.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-13 17:16:08', '2018-08-13 17:16:08', null);
  267. INSERT INTO `ibrand_goods` VALUES ('154', '2018年秋新品 儿童棉麻衬衫秋 韩板棉麻娃娃衫女童款', '720#', '23', '3', '78.00', '78.00', '78.00', '129.00', '129.00', null, null, '60', 'https://cdn.viperky.com/storage/images/20180906/j1MuDXf6n7.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\"><span style=\"font-weight: 700;\"><span style=\"font-family: simsun; font-size: 12pt;\"><span style=\"font-size: 16pt;\"><img alt=\"微信图片_20180730133529.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/912/899/9157998219_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180730133526.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/678/531/9181135876_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180730133531.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/462/981/9181189264_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180730133534.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/116/021/9200120611_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180730133538.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/960/310/9158013069_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180730133552.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/190/291/9181192091_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180730133557.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/617/651/9181156716_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180730133602.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/614/989/9157989416_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180730133549.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/987/141/9181141789_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180730133602.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/736/081/9181180637_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180730133624.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/416/681/9181186614_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180730133624.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/058/951/9181159850_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180730133629.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/210/702/9181207012_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180730133631.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/245/141/9200141542_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></span></span></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal;\">&nbsp;<img alt=\"微信图片_20180723140941.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/997/672/9151276799_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180723140938.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/496/286/9128682694_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180723140915.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/686/030/9170030686_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180723140913.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/727/162/9151261727_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180723140910.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/867/462/9151264768_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180723140936.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/869/252/9151252968_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180723140908.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/756/076/9128670657_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180723140905.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/203/492/9151294302_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180723140900.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/691/496/9128694196_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180723140918.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/115/240/9170042511_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\"><span style=\"font-weight: 700;\"><span style=\"font-family: simsun; font-size: 12pt;\">&nbsp;<img alt=\"_MG_7628衣服.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/531/323/9155323135_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"_MG_7632衣服.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/765/803/9155308567_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></span></span></p><p><br/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-16 14:34:29', '2018-09-06 16:59:46', null);
  268. INSERT INTO `ibrand_goods` VALUES ('155', '2018年秋款童裤 儿童棉麻裤秋 韩板1:1制作棉麻灯笼跨裤', '695#', '23', '1', '70.00', '70.00', '70.00', '119.00', '119.00', null, null, '30', 'https://cdn.viperky.com/storage/images/20180816/vWPWLejUc1.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\"><span style=\"font-weight: 700;\"><span style=\"font-family: simsun; font-size: 12pt;\"><img alt=\"_MG_7637衣服.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/222/602/9248206222_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"_MG_7636衣服.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/994/020/9267020499_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"_MG_7635衣服.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/011/784/9224487110_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"_MG_7632衣服.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/097/064/9224460790_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"_MG_7628衣服.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/374/664/9224466473_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></span></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\"><span style=\"font-weight: 700;\"><span style=\"font-family: simsun; font-size: 12pt;\">&nbsp;</span></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\"><span style=\"font-weight: 700;\"><span style=\"font-family: simsun; font-size: 12pt;\"><img alt=\"微信图片_20180723141426\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/369/666/9170666963_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180723141424.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/793/381/9170183397_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180723141422.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/966/624/9151426669_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180723141335.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/191/054/9151450191_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180723141318.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/945/414/9151414549_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180723141316.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/805/024/9151420508_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180723141306.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/603/144/9151441306_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180723141351.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/717/967/9128769717_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180723141346.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/380/264/9151462083_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180723141430.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/470/702/9170207074_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180723141402.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/943/444/9151444349_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180723141422.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/966/624/9151426669_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180723141355.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/260/102/9170201062_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180723141346.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/380/264/9151462083_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></span></span></p><p><br/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-16 14:43:49', '2018-08-16 16:58:50', null);
  269. INSERT INTO `ibrand_goods` VALUES ('156', '儿童秋款棉麻衬衫 韩板有领娃娃衫 森系女童棉麻衬衫', '739#', '23', '3', '78.00', '78.00', '78.00', '129.00', '129.00', null, null, '40', 'https://cdn.viperky.com/storage/images/20180816/0dt9YRChj0.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\"><span style=\"font-size: 24pt;\"><img alt=\"微信图片_20180806215814.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/601/433/9213334106_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180806215759.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/746/331/9232133647_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180806220032.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/036/592/9213295630_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180806215840.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/418/636/9189636814_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; text-align: center;\"><span style=\"font-size: 24pt;\"><br/><img alt=\"微信图片_20180806215553.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/788/246/9189642887_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180806221149.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/096/292/9213292690_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><img alt=\"微信图片_20180806215616.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/078/631/9232136870_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180806215705.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/373/576/9189675373_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180806215825.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/228/121/9232121822_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180806215821.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/910/276/9189672019_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180806215817.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/824/541/9232145428_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180806215810.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/150/966/9189669051_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180806215829.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/671/366/9189663176_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180806215832.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/983/151/9232151389_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180806215705.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/373/576/9189675373_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180806215621.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/380/943/9213349083_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180806215611.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/809/546/9189645908_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180806215606.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/267/156/9189651762_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180806215602.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/514/666/9189666415_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180806215557.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/315/751/9232157513_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180806215553.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/788/246/9189642887_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180806215549.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/252/661/9232166252_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></span></p><p><br/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-16 15:00:34', '2018-08-16 15:00:34', null);
  270. INSERT INTO `ibrand_goods` VALUES ('157', '儿童牛仔裤秋款 韩板洗水九分牛仔裤男女童款', '742', '23', '1', '88.00', '88.00', '88.00', '139.00', '139.00', null, null, '18', 'https://cdn.viperky.com/storage/images/20180816/xjcL6hUu0e.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><span style=\"font-weight: 700; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; background-color: rgb(255, 255, 255);\"><span style=\"font-family: simsun; font-size: 12pt;\"><img alt=\"微信图片_20180723140933.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/051/603/9151306150_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180723140931.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/824/196/9128691428_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180723140928.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/588/120/9170021885_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180723140926.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/707/376/9128673707_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180723140923.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/614/882/9151288416_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180723140920.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/309/720/9170027903_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180723140918.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/115/240/9170042511_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180723140910.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/867/462/9151264768_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180723140936.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/869/252/9151252968_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20180723140941.jpg\" height=\"790\" src=\"https://cbu01.alicdn.com/img/ibank/2018/997/672/9151276799_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></span></span></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-16 15:11:30', '2018-08-20 17:00:55', null);
  271. INSERT INTO `ibrand_goods` VALUES ('158', '韩版2018新款儿童帽子街舞长飘带棒球帽防晒遮阳鸭舌帽男女童帽子', '025', '23', '11', '32.00', '32.00', '32.00', '32.00', '32.00', null, null, '8', 'https://cdn.viperky.com/storage/images/20180816/fffX2NAxnp.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180816/1534405024417637.png\" title=\"1534405024417637.png\" alt=\"2.png\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180816/1534405031179476.png\" title=\"1534405031179476.png\" alt=\"3.png\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180816/1534405043519468.png\" title=\"1534405043519468.png\" alt=\"4.png\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180816/1534405054192284.png\" title=\"1534405054192284.png\" alt=\"5.png\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180816/1534405062365751.png\" title=\"1534405062365751.png\" alt=\"6.png\"/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-16 15:38:29', '2018-08-16 15:38:29', null);
  272. INSERT INTO `ibrand_goods` VALUES ('159', '春夏季ins新款磨破边儿童渔夫帽时尚儿童帽子防晒遮阳帽宝宝帽子', '0263', '23', '12', '46.00', '46.00', '46.00', '46.00', '46.00', null, null, '6', 'https://cdn.viperky.com/storage/images/20180816/7G0VKfSDiV.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"1525923478200\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180816/1534407461316913.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"1525923330372\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180816/1534407461396460.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"1525923397731\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180816/1534407461646458.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"IMG20180404220716\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180816/1534407462493063.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"IMG20180404220700\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180816/1534407462281134.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"IMG20180404220711\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180816/1534407462287324.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-16 16:18:30', '2018-08-16 16:18:30', null);
  273. INSERT INTO `ibrand_goods` VALUES ('160', 'ins同款毛边纯色布艺儿童渔夫帽 做旧潮男童女童大沿遮阳帽盆帽', '0264', '23', '12', '36.00', '36.00', '36.00', '36.00', '36.00', null, null, '8', 'https://cdn.viperky.com/storage/images/20180816/OGs6xnm898.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180816/1534408132974307.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180816/1534408132584074.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180816/1534408132317647.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180816/1534408133354753.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180816/1534408133933902.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180816/1534408133758863.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180816/1534408133609344.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-16 16:29:29', '2018-08-16 16:29:29', null);
  274. INSERT INTO `ibrand_goods` VALUES ('161', '儿童水洗棒球帽子宝宝鸭舌帽遮阳运动帽子秋季', '0265', '23', '12', '33.00', '33.00', '33.00', '33.00', '33.00', null, null, '4', 'https://cdn.viperky.com/storage/images/20180816/QQxM20krZA.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180816/1534408823758869.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180816/1534408823967027.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180816/1534408823745129.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '2', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-16 16:40:48', '2018-09-12 08:56:06', null);
  275. INSERT INTO `ibrand_goods` VALUES ('162', '儿童帽子潮宝宝棒球帽纯色鸭舌帽亲子帽男女童母子防晒遮阳帽', 'M6000700', '23', '12', '29.00', '29.00', '29.00', '29.00', '29.00', null, null, '10', 'https://cdn.viperky.com/storage/images/20180816/STXsXPpRBh.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/783/098/3949890387_800725970.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/253/430/3948034352_800725970.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/215/049/3946940512_800725970.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/120/998/3949899021_800725970.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/077/488/3949884770_800725970.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/131/698/3949896131_800725970.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/126/739/3946937621_800725970.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/703/398/3949893307_800725970.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '-2', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-16 16:48:46', '2018-09-10 18:21:02', null);
  276. INSERT INTO `ibrand_goods` VALUES ('163', '2018儿童牛仔阔脚裤秋款 韩板男女童牛仔背带阔脚裤', '31026#', '23', '1', '89.00', '89.00', '89.00', '149.00', '149.00', null, null, '40', 'https://cdn.viperky.com/storage/images/20180827/NMRpa5xgQK.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-weight: 700;\"><span style=\"font-size: 22pt;\"><img alt=\"undefined\" height=\"685.4895833333333\" src=\"https://cbu01.alicdn.com/img/ibank/2017/695/567/4531765596_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"630.3541666666666\" src=\"https://cbu01.alicdn.com/img/ibank/2017/473/477/4531774374_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"674.3802083333333\" src=\"https://cbu01.alicdn.com/img/ibank/2017/038/551/4530155830_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"676.4375\" src=\"https://cbu01.alicdn.com/img/ibank/2017/043/777/4531777340_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"630.3541666666666\" src=\"https://cbu01.alicdn.com/img/ibank/2017/362/616/4535616263_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"662.859375\" src=\"https://cbu01.alicdn.com/img/ibank/2017/630/761/4530167036_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"526.6666666666666\" src=\"https://cbu01.alicdn.com/img/ibank/2017/426/016/4535610624_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"783.828125\" src=\"https://cbu01.alicdn.com/img/ibank/2017/345/851/4530158543_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"772.3072916666666\" src=\"https://cbu01.alicdn.com/img/ibank/2017/701/916/4535619107_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/986/316/4535613689_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></span></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-weight: 700;\"><span style=\"font-size: 22pt;\"><img alt=\"微信图片_20170729160737\" height=\"526.6666666666666\" src=\"https://cbu01.alicdn.com/img/ibank/2017/999/420/4488024999_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"微信图片_20170729160745\" height=\"526.6666666666666\" src=\"https://cbu01.alicdn.com/img/ibank/2017/073/503/4482305370_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></span></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-weight: 700;\"><span style=\"font-size: 22pt;\"><img alt=\"微信图片_20170729160743\" height=\"526.6666666666666\" src=\"https://cbu01.alicdn.com/img/ibank/2017/947/092/4482290749_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></span></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-weight: 700;\"><span style=\"font-size: 22pt;\"><img alt=\"IMG_0291.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/033/802/8341208330_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"IMG_0294.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/024/502/8341205420_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"IMG_0295.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/502/475/8328574205_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"IMG_0296.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/157/575/8311575751_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"IMG_0297.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/726/691/8341196627_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"IMG_0298.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/136/925/8328529631_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"IMG_0299.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/326/185/8311581623_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"IMG_0300.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/518/361/8341163815_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></span></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><span style=\"font-size: 16pt;\"><img alt=\"QQ截图20170721182421\" height=\"590.4297693920336\" src=\"https://cbu01.alicdn.com/img/ibank/2017/815/366/4454663518_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"QQ截图20170721182404\" height=\"534.3897824030274\" src=\"https://cbu01.alicdn.com/img/ibank/2017/354/923/4457329453_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"QQ截图20170721182440\" src=\"https://cbu01.alicdn.com/img/ibank/2017/169/066/4454660961_1814772146.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"QQ截图20170721182509\" height=\"612.1645021645021\" src=\"https://cbu01.alicdn.com/img/ibank/2017/240/760/4460067042_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"QQ截图20170721182521\" height=\"622.4242424242424\" src=\"https://cbu01.alicdn.com/img/ibank/2017/317/323/4457323713_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"QQ图片20170721182115\" height=\"569.0209790209791\" src=\"https://cbu01.alicdn.com/img/ibank/2017/930/070/4460070039_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"QQ截图20170721182348\" height=\"589.8448810754912\" src=\"https://cbu01.alicdn.com/img/ibank/2017/005/623/4457326500_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"QQ截图20170721182324\" height=\"591.2732919254659\" src=\"https://cbu01.alicdn.com/img/ibank/2017/883/160/4460061388_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"QQ截图20170721182243\" height=\"579.7645854657114\" src=\"https://cbu01.alicdn.com/img/ibank/2017/563/666/4454666365_1814772146.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></span></p><p><br/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-27 14:10:49', '2018-08-27 14:10:50', null);
  277. INSERT INTO `ibrand_goods` VALUES ('164', '2018 韩板儿童长款卫衣衫 宽松卫衣印花长款衫', '731#', '23', '3', '78.00', '78.00', '78.00', '129.00', '129.00', null, null, '80', 'https://cdn.viperky.com/storage/images/20180827/JLC5xrU98s.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"微信图片_20180730134404.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535350907529612.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180730134411.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535350907339811.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180730134413.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535350907164224.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180730134415.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535350907256552.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180730134418.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535350907787742.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180730134427.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535350907860813.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180730134457.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535350907312441.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180730134455.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535350907121495.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180730134450.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535350907568745.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180730134431.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535350907264683.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180730134519.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535350907671295.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180730134513.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535350908315193.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180730134440.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535350908564755.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180730134436.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535350908750914.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180730134519.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535350907671295.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180730134505.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535350908754093.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180730134455.jpg\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535350907121495.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 29.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-27 14:22:16', '2018-08-27 14:22:16', null);
  278. INSERT INTO `ibrand_goods` VALUES ('165', '2018秋儿童格仔衬衫 韩板宽松格仔衬衫男女童款', '31165#', '23', '3', '69.00', '69.00', '69.00', '116.00', '116.00', null, null, '36', 'https://cdn.viperky.com/storage/images/20180827/Jw94Plan4q.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img alt=\"微信图片_20180114174630.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535351965827700.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180114174625.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535351965236311.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180114174522.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535351965507759.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180114174524.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535351965226134.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180114174535.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535351965226355.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180114174537.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535351965813304.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180114174449.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535351965907275.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180114174441.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535351965744162.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180114174438.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535351965239687.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180114174434.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535351966758153.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180114174516.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535351966760439.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180114174511.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535351966770603.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180114174504.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535351966431715.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180114174457.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535351966922492.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180114174540.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535351966816331.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180114174543.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535351966272299.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180114174549.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535351966925192.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180114174551.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535351967383315.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180114174554.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535351967597551.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180114174557.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535351967342237.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180114174620.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535351967593666.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180114174612.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535351967144293.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180114174636.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535351967773843.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180114174640.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535351968475270.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180114174643.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535351968380751.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><br style=\"color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255);\"/><img alt=\"微信图片_20180114174702.jpg\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180827/1535351968933073.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 21.3333px; text-align: center; white-space: normal; background-color: rgb(255, 255, 255); zoom: 1;\"/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-08-27 14:39:45', '2018-08-27 14:39:45', null);
  279. INSERT INTO `ibrand_goods` VALUES ('166', '2018新款儿童帆布鞋男女童板鞋一脚蹬单鞋套脚鞋', '588', '24', '13', '79.00', '79.00', '79.00', '159.00', '159.00', null, null, '500', 'https://cdn.viperky.com/storage/images/20180903/hhlNBt74eh.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-size: 15pt;\"><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/308/665/4508566803_924083358.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/234/185/4508581432_924083358.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/372/485/4508584273_924083358.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/476/575/4508575674_924083358.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/753/262/4507262357_924083358.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/177/275/4508572771_924083358.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/435/952/4507259534_924083358.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/598/365/4508563895_924083358.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/002/862/4507268200_924083358.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2017/667/444/4512444766_924083358.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-size: 15pt;\"><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/073/055/8369550370_924083358.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/016/835/8369538610_924083358.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/510/443/8387344015_924083358.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/054/113/8387311450_924083358.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/396/692/8387296693_924083358.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/158/782/8387287851_924083358.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/388/043/8401340883_924083358.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/140/085/8369580041_924083358.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></span></p><p><br/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  280. INSERT INTO `ibrand_goods` VALUES ('167', '2018新款男女童儿帆布鞋', '5032', '24', '13', '78.00', '78.00', '78.00', '159.00', '159.00', null, null, '800', 'https://cdn.viperky.com/storage/images/20180903/K0OQDsU5I7.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><span style=\"font-size: 15pt;\"><img alt=\"5032蓝色\" height=\"576.7\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180903/1535961526279690.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><br/><img alt=\"undefined\" height=\"328.83750000000003\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180903/1535961527265863.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"1018.6702484889188\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180903/1535961527617414.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"790\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180903/1535961527346824.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"1053.3333333333333\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180903/1535961527965961.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"1053.3333333333333\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180903/1535961528202568.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"1053.3333333333333\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180903/1535961528784496.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"undefined\" height=\"910.9909909909909\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180903/1535961528448898.jpg\" width=\"790\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></span></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal;\"><img alt=\"undefined\" src=\"https://admin.viperky.com/storage/uploads/ueditor/php/upload/image/20180903/1535961528756955.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  281. INSERT INTO `ibrand_goods` VALUES ('168', '2018秋冬新品中小童宝宝韩版灯芯绒A字背心连衣裙', '5240', '24', '2', '0.01', '0.01', '0.01', '0.01', '0.01', null, null, '280', 'https://cdn.viperky.com/storage/images/20180903/l1RpEjPqAt.png', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><img alt=\"undefined\" src=\"https://cbu01.alicdn.com/img/ibank/2018/302/613/9321316203_1823421814.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/></p><p style=\"margin-top: 0px; margin-bottom: 0px; padding: 0px; line-height: 1.5; clear: both; color: rgb(51, 51, 51); font-family: &quot;Hiragino Sans GB&quot;, Tahoma, Arial, 宋体, sans-serif; font-size: 12px; white-space: normal; text-align: center;\"><img alt=\"文案条.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/386/130/8887031683_1823421814.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><img alt=\"IMG_0034.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/511/601/9312106115_1823421814.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"IMG_0024.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/008/601/9331106800_1823421814.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"IMG_0027.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/806/490/9312094608_1823421814.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"IMG_0030.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/634/121/9331121436_1823421814.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"IMG_0037.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/697/667/9287766796_1823421814.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><br/><img alt=\"222.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/542/138/8850831245_1823421814.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"1.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/941/268/9278862149_1823421814.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"2.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/934/670/9322076439_1823421814.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"3.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/150/001/9303100051_1823421814.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"4.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/545/070/9322070545_1823421814.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"5.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/997/838/9278838799_1823421814.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"6.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/015/058/9278850510_1823421814.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"7.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/188/538/9278835881_1823421814.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"8.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/831/568/9278865138_1823421814.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"9.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/735/580/9303085537_1823421814.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"10.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/645/460/9322064546_1823421814.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"11.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/842/580/9322085248_1823421814.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"12.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/559/928/9278829955_1823421814.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"14.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/881/490/9322094188_1823421814.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"15.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/132/880/9322088231_1823421814.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"16.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/399/370/9303073993_1823421814.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"17.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/071/790/9322097170_1823421814.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"18.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/838/670/9303076838_1823421814.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"19.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/278/550/9322055872_1823421814.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"20.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/289/238/9278832982_1823421814.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"21.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/702/268/9278862207_1823421814.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/><br/><br/><img alt=\"22.jpg\" src=\"https://cbu01.alicdn.com/img/ibank/2018/984/670/9322076489_1823421814.jpg\" style=\"border: none; visibility: visible; vertical-align: bottom; max-width: 790px; zoom: 1;\"/></p><p><br/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-09-03 16:16:41', '2018-09-03 16:16:41', null);
  282. INSERT INTO `ibrand_goods` VALUES ('169', '2018新款儿童网红小黑鞋', 'whx1', '24', '13', '0.01', '0.01', '0.01', '0.01', '0.01', null, null, '40', 'https://cdn.viperky.com/storage/images/20180904/YTWT8I5Z8n.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180904/1536059222360989.jpeg\" title=\"1536059222360989.jpeg\" alt=\"1.jpg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180904/1536059236215197.jpeg\" title=\"1536059236215197.jpeg\" alt=\"2.jpg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180904/1536059243752610.jpeg\" title=\"1536059243752610.jpeg\" alt=\"3.jpg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180904/1536059247454469.jpeg\" title=\"1536059247454469.jpeg\" alt=\"4.jpg\"/></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-09-04 19:07:49', '2018-09-04 19:08:06', null);
  283. INSERT INTO `ibrand_goods` VALUES ('170', '2018新款儿童家居服', '2810', '24', '3', '0.01', '0.01', '0.01', '0.01', '0.01', null, null, '130', 'https://cdn.viperky.com/storage/images/20180906/gkLsyBNdi4.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180904/1536060975638758.jpeg\" title=\"1536060975638758.jpeg\" alt=\"1.jpg\"/></p><p><br/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180904/1536060987773689.jpeg\" title=\"1536060987773689.jpeg\" alt=\"3.jpg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180906/1536200164115488.jpeg\" title=\"1536200164115488.jpeg\" alt=\"7.jpg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180906/1536200173831176.jpeg\" title=\"1536200173831176.jpeg\" alt=\"6.jpg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180906/1536200181981642.jpeg\" title=\"1536200181981642.jpeg\" alt=\"4.jpg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180906/1536200187845350.jpeg\" title=\"1536200187845350.jpeg\" alt=\"5.jpg\"/></p>', null, '0', '0', '0', '0', '5', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-09-04 19:36:47', '2018-09-12 11:13:37', null);
  284. INSERT INTO `ibrand_goods` VALUES ('171', '2018新款男女童卡通内裤(2条装)', '4768', '24', '1', '0.01', '0.01', '0.01', '0.01', '0.01', null, null, '60', 'https://cdn.viperky.com/storage/images/20180904/gGE29kPjtE.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p style=\"text-align: center;\"><span style=\"font-size: 18px;\"><strong>可爱的女童款</strong></span></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180904/1536062370728189.jpeg\" title=\"1536062370728189.jpeg\" alt=\"1.jpg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180904/1536062376754033.jpeg\" title=\"1536062376754033.jpeg\" alt=\"2.jpg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180904/1536062381884369.jpeg\" title=\"1536062381884369.jpeg\" alt=\"3.jpg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180904/1536062388653006.jpeg\" title=\"1536062388653006.jpeg\" alt=\"4.jpg\"/></p><p></p><p style=\"text-align: center;\"><span style=\"font-size: 18px;\"><strong>男童款</strong></span></p><p><span style=\"font-size: 18px;\"><strong><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180904/1536062517759419.jpeg\" title=\"1536062517759419.jpeg\" alt=\"1.jpg\"/></strong></span></p><p><span style=\"font-size: 18px;\"><strong><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180904/1536062530598501.jpeg\" title=\"1536062530598501.jpeg\" alt=\"2.jpg\"/></strong></span></p><p><span style=\"font-size: 18px;\"><strong><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180904/1536062545166335.jpeg\" title=\"1536062545166335.jpeg\" alt=\"3.jpg\"/></strong></span></p><p><strong><br/></strong></p>', null, '0', '0', '0', '0', '0', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-09-04 20:03:01', '2018-09-04 20:03:01', null);
  285. INSERT INTO `ibrand_goods` VALUES ('172', '2018超级无敌复古袜子', 'fgwz', '24', '13', '0.01', '0.01', '0.01', '0.01', '0.01', null, null, '162', 'https://cdn.viperky.com/storage/images/20180905/GAYUgTYLev.jpg', '<p style=\"text-align: center\">此商品仅用于交易流程测试,不退款,不发货!不小心拍了商品,请联系 ibrandshjchen 退款!</p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180905/1536128724808507.jpeg\" title=\"1536128724808507.jpeg\" alt=\"7.jpg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180905/1536128735719274.jpeg\" title=\"1536128735719274.jpeg\" alt=\"6.jpg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180905/1536128743604026.jpeg\" title=\"1536128743604026.jpeg\" alt=\"5.jpg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180905/1536128759750779.jpeg\" title=\"1536128759750779.jpeg\" alt=\"9.jpg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180905/1536128771799039.jpeg\" title=\"1536128771799039.jpeg\" alt=\"1.jpg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180905/1536128776703186.jpeg\" title=\"1536128776703186.jpeg\" alt=\"2.jpg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180905/1536128785367404.jpeg\" title=\"1536128785367404.jpeg\" alt=\"3.jpg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180905/1536128798734651.jpeg\" title=\"1536128798734651.jpeg\" alt=\"4.jpg\"/></p><p><img src=\"https://admin.viperky.com/uploads/ueditor/php/upload/image/20180905/1536128803382429.jpeg\" title=\"1536128803382429.jpeg\" alt=\"8.jpg\"/></p>', null, '0', '0', '0', '0', '3', '0', '', '', '', '0', '0', '0', '0', null, '{\"video\":{\"status\":\"0\",\"url\":\"\"}}', '2018-09-05 14:27:17', '2018-09-10 16:18:57', null);
  286. -- ----------------------------
  287. -- Table structure for ibrand_goods_attribute
  288. -- ----------------------------
  289. DROP TABLE IF EXISTS `ibrand_goods_attribute`;
  290. CREATE TABLE `ibrand_goods_attribute` (
  291. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  292. `type` tinyint(4) NOT NULL DEFAULT '1',
  293. `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  294. `is_search` tinyint(4) NOT NULL DEFAULT '0',
  295. `is_chart` tinyint(4) NOT NULL DEFAULT '0',
  296. `created_at` timestamp NULL DEFAULT NULL,
  297. `updated_at` timestamp NULL DEFAULT NULL,
  298. `deleted_at` timestamp NULL DEFAULT NULL,
  299. PRIMARY KEY (`id`)
  300. ) ENGINE=InnoDB AUTO_INCREMENT=57 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
  301. -- ----------------------------
  302. -- Records of ibrand_goods_attribute
  303. -- ----------------------------
  304. INSERT INTO `ibrand_goods_attribute` VALUES ('1', '1', '适用性别', '0', '0', '2017-05-03 12:24:17', '2017-05-03 12:24:17', null);
  305. INSERT INTO `ibrand_goods_attribute` VALUES ('2', '1', '风格', '0', '1', '2017-05-03 12:25:49', '2018-06-08 14:12:32', null);
  306. INSERT INTO `ibrand_goods_attribute` VALUES ('3', '1', '安全等级', '0', '1', '2017-05-03 12:28:41', '2017-05-03 12:28:41', null);
  307. INSERT INTO `ibrand_goods_attribute` VALUES ('4', '1', '适用季节', '0', '1', '2017-05-03 12:29:17', '2017-05-03 12:29:17', null);
  308. INSERT INTO `ibrand_goods_attribute` VALUES ('5', '1', '主要面料', '0', '0', '2017-05-03 12:32:45', '2018-06-08 14:46:31', null);
  309. INSERT INTO `ibrand_goods_attribute` VALUES ('6', '1', '袖长', '0', '1', '2017-05-03 12:33:33', '2018-05-21 16:00:50', null);
  310. INSERT INTO `ibrand_goods_attribute` VALUES ('7', '1', '图案', '0', '0', '2017-05-03 12:34:20', '2018-06-06 11:52:42', null);
  311. INSERT INTO `ibrand_goods_attribute` VALUES ('8', '1', '领型', '0', '0', '2017-05-03 12:35:16', '2017-05-03 12:35:16', null);
  312. INSERT INTO `ibrand_goods_attribute` VALUES ('9', '1', '裙子款式', '0', '0', '2017-05-03 12:37:51', '2018-05-15 16:35:19', null);
  313. INSERT INTO `ibrand_goods_attribute` VALUES ('10', '1', '裙型', '0', '0', '2017-05-03 12:41:33', '2017-05-11 14:59:01', null);
  314. INSERT INTO `ibrand_goods_attribute` VALUES ('11', '1', '裤长', '0', '1', '2017-05-03 12:43:47', '2017-05-12 11:02:03', null);
  315. INSERT INTO `ibrand_goods_attribute` VALUES ('12', '1', '厚薄', '0', '1', '2017-05-11 11:55:01', '2018-09-03 14:44:34', null);
  316. INSERT INTO `ibrand_goods_attribute` VALUES ('13', '1', '裤腰', '0', '1', '2017-05-11 12:09:04', '2017-05-12 10:53:36', null);
  317. INSERT INTO `ibrand_goods_attribute` VALUES ('14', '1', '伞面大小', '0', '1', '2017-09-22 13:15:27', '2017-09-22 13:15:27', null);
  318. INSERT INTO `ibrand_goods_attribute` VALUES ('15', '1', '防风指数', '0', '1', '2017-09-22 13:15:50', '2017-09-22 13:15:50', null);
  319. INSERT INTO `ibrand_goods_attribute` VALUES ('16', '1', '收纳方式', '0', '1', '2017-09-22 13:16:06', '2017-09-22 13:16:06', null);
  320. INSERT INTO `ibrand_goods_attribute` VALUES ('17', '1', '面料工艺', '0', '0', '2018-05-15 09:57:59', '2018-05-15 10:21:14', null);
  321. INSERT INTO `ibrand_goods_attribute` VALUES ('18', '1', '适合年龄段', '0', '0', '2018-05-15 09:58:40', '2018-09-03 14:42:51', null);
  322. INSERT INTO `ibrand_goods_attribute` VALUES ('19', '1', '是否连帽', '0', '0', '2018-05-15 09:59:34', '2018-05-21 16:05:22', null);
  323. INSERT INTO `ibrand_goods_attribute` VALUES ('20', '1', '产地', '0', '0', '2018-05-15 09:59:53', '2018-06-07 17:26:17', null);
  324. INSERT INTO `ibrand_goods_attribute` VALUES ('22', '1', '适用人群', '0', '0', '2018-05-15 10:02:05', '2018-05-15 10:07:50', null);
  325. INSERT INTO `ibrand_goods_attribute` VALUES ('24', '1', '亲子装类别', '0', '0', '2018-05-15 10:05:05', '2018-05-15 10:05:05', null);
  326. INSERT INTO `ibrand_goods_attribute` VALUES ('25', '1', '款式', '0', '0', '2018-05-15 10:10:35', '2018-05-15 10:17:45', null);
  327. INSERT INTO `ibrand_goods_attribute` VALUES ('26', '1', '主面料成分', '0', '0', '2018-05-15 10:11:59', '2018-06-08 14:46:45', null);
  328. INSERT INTO `ibrand_goods_attribute` VALUES ('27', '1', '主面料成分含量', '0', '0', '2018-05-15 10:12:35', '2018-06-08 14:47:16', null);
  329. INSERT INTO `ibrand_goods_attribute` VALUES ('28', '1', '套装类型', '0', '0', '2018-05-15 10:28:33', '2018-05-15 10:28:33', null);
  330. INSERT INTO `ibrand_goods_attribute` VALUES ('29', '1', '套装件数', '0', '0', '2018-05-15 10:28:54', '2018-05-15 10:28:54', null);
  331. INSERT INTO `ibrand_goods_attribute` VALUES ('30', '1', '家居服类别', '0', '0', '2018-05-21 15:18:32', '2018-05-21 15:18:32', null);
  332. INSERT INTO `ibrand_goods_attribute` VALUES ('31', '1', '是否进口', '0', '0', '2018-06-05 15:45:11', '2018-06-05 15:45:11', null);
  333. INSERT INTO `ibrand_goods_attribute` VALUES ('32', '1', '原产国(地)', '0', '0', '2018-06-05 15:45:39', '2018-06-07 11:01:58', null);
  334. INSERT INTO `ibrand_goods_attribute` VALUES ('33', '1', '有无原产地证', '0', '0', '2018-06-05 15:46:07', '2018-06-05 15:46:07', null);
  335. INSERT INTO `ibrand_goods_attribute` VALUES ('34', '2', '进口口岸', '0', '0', '2018-06-05 15:46:20', '2018-06-05 15:46:20', null);
  336. INSERT INTO `ibrand_goods_attribute` VALUES ('35', '2', '形态', '0', '0', '2018-06-05 15:54:19', '2018-06-05 15:54:19', null);
  337. INSERT INTO `ibrand_goods_attribute` VALUES ('36', '2', '规格', '0', '0', '2018-06-05 15:54:29', '2018-06-05 15:54:29', null);
  338. INSERT INTO `ibrand_goods_attribute` VALUES ('37', '2', '报关单号', '0', '0', '2018-06-05 15:54:46', '2018-06-05 15:54:46', null);
  339. INSERT INTO `ibrand_goods_attribute` VALUES ('38', '2', '货物清关状态', '0', '0', '2018-06-05 15:56:28', '2018-06-05 15:56:28', null);
  340. INSERT INTO `ibrand_goods_attribute` VALUES ('39', '2', '适用肤质', '0', '0', '2018-06-05 17:45:47', '2018-06-05 17:45:47', null);
  341. INSERT INTO `ibrand_goods_attribute` VALUES ('40', '2', 'PA值', '0', '0', '2018-06-05 17:46:36', '2018-06-05 17:46:36', null);
  342. INSERT INTO `ibrand_goods_attribute` VALUES ('41', '2', '保质期', '0', '0', '2018-06-05 17:46:54', '2018-06-05 17:46:54', null);
  343. INSERT INTO `ibrand_goods_attribute` VALUES ('42', '2', '防晒指数', '0', '0', '2018-06-05 17:47:04', '2018-06-05 17:47:04', null);
  344. INSERT INTO `ibrand_goods_attribute` VALUES ('43', '2', '净含量', '0', '0', '2018-06-05 17:47:19', '2018-06-05 17:47:19', null);
  345. INSERT INTO `ibrand_goods_attribute` VALUES ('44', '2', '功效', '0', '0', '2018-06-05 17:47:41', '2018-06-05 17:47:41', null);
  346. INSERT INTO `ibrand_goods_attribute` VALUES ('45', '2', '防晒部位', '0', '0', '2018-06-05 17:48:03', '2018-06-05 17:48:03', null);
  347. INSERT INTO `ibrand_goods_attribute` VALUES ('46', '2', '编制方法', '0', '0', '2018-06-06 11:53:25', '2018-06-06 11:53:25', null);
  348. INSERT INTO `ibrand_goods_attribute` VALUES ('47', '2', '产品类别', '0', '0', '2018-06-06 11:53:47', '2018-06-06 11:53:47', null);
  349. INSERT INTO `ibrand_goods_attribute` VALUES ('48', '1', '鞋底材质', '0', '0', '2018-09-03 14:43:17', '2018-09-03 14:43:37', null);
  350. INSERT INTO `ibrand_goods_attribute` VALUES ('49', '1', '鞋帮高度', '0', '0', '2018-09-03 14:43:53', '2018-09-03 14:43:53', null);
  351. INSERT INTO `ibrand_goods_attribute` VALUES ('50', '1', '鞋帮高度', '0', '0', '2018-09-03 14:43:55', '2018-09-03 14:43:55', null);
  352. INSERT INTO `ibrand_goods_attribute` VALUES ('51', '1', '鞋面材质', '0', '0', '2018-09-03 14:44:11', '2018-09-03 14:44:11', null);
  353. INSERT INTO `ibrand_goods_attribute` VALUES ('52', '1', '适用运动', '0', '0', '2018-09-03 14:45:08', '2018-09-03 14:45:08', null);
  354. INSERT INTO `ibrand_goods_attribute` VALUES ('53', '1', '功能', '0', '0', '2018-09-03 14:45:57', '2018-09-03 14:45:57', null);
  355. INSERT INTO `ibrand_goods_attribute` VALUES ('54', '1', '流行元素', '0', '0', '2018-09-03 14:46:43', '2018-09-03 14:46:43', null);
  356. INSERT INTO `ibrand_goods_attribute` VALUES ('55', '1', '鞋底工艺', '0', '0', '2018-09-03 14:47:08', '2018-09-03 14:47:08', null);
  357. INSERT INTO `ibrand_goods_attribute` VALUES ('56', '1', '内里材质', '0', '0', '2018-09-03 14:47:30', '2018-09-03 14:47:30', null);
  358. -- ----------------------------
  359. -- Table structure for ibrand_goods_attribute_relation
  360. -- ----------------------------
  361. DROP TABLE IF EXISTS `ibrand_goods_attribute_relation`;
  362. CREATE TABLE `ibrand_goods_attribute_relation` (
  363. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  364. `goods_id` int(10) unsigned NOT NULL,
  365. `model_id` int(10) unsigned NOT NULL,
  366. `attribute_id` int(10) unsigned NOT NULL,
  367. `attribute_value_id` int(10) unsigned NOT NULL,
  368. `attribute_value` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  369. `created_at` timestamp NULL DEFAULT NULL,
  370. `updated_at` timestamp NULL DEFAULT NULL,
  371. `deleted_at` timestamp NULL DEFAULT NULL,
  372. PRIMARY KEY (`id`)
  373. ) ENGINE=InnoDB AUTO_INCREMENT=1443 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
  374. -- ----------------------------
  375. -- Records of ibrand_goods_attribute_relation
  376. -- ----------------------------
  377. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('4', '2', '2', '2', '12', '韩版', null, null, null);
  378. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('5', '2', '2', '3', '15', 'B类', null, null, null);
  379. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('6', '2', '2', '4', '18', '夏季', null, null, null);
  380. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('7', '2', '2', '5', '20', '纯棉', null, null, null);
  381. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('8', '2', '2', '7', '40', '纯色', null, null, null);
  382. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('9', '2', '2', '10', '61', '公主裙', null, null, null);
  383. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('10', '2', '2', '9', '76', '无袖', null, null, null);
  384. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('11', '3', '1', '1', '2', '女', null, null, null);
  385. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('12', '3', '1', '2', '12', '韩版', null, null, null);
  386. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('13', '3', '1', '3', '15', 'B类', null, null, null);
  387. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('14', '3', '1', '4', '18', '夏季', null, null, null);
  388. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('15', '3', '1', '5', '20', '纯棉', null, null, null);
  389. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('16', '3', '1', '11', '63', '短裤', null, null, null);
  390. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('17', '3', '1', '13', '72', '中腰', null, null, null);
  391. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('18', '4', '1', '1', '2', '女', null, null, null);
  392. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('19', '4', '1', '2', '12', '韩版', null, null, null);
  393. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('20', '4', '1', '3', '15', 'B类', null, null, null);
  394. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('21', '4', '1', '4', '18', '夏季', null, null, null);
  395. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('22', '4', '1', '5', '20', '纯棉', null, null, null);
  396. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('23', '4', '1', '11', '63', '短裤', null, null, null);
  397. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('24', '4', '1', '13', '72', '中腰', null, null, null);
  398. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('25', '5', '2', '2', '12', '韩版', null, null, null);
  399. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('26', '5', '2', '3', '15', 'B类', null, null, null);
  400. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('27', '5', '2', '4', '18', '夏季', null, null, null);
  401. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('28', '5', '2', '5', '20', '纯棉', null, null, null);
  402. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('29', '5', '2', '7', '37', '圆点', null, null, null);
  403. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('30', '5', '2', '9', '48', '吊带裙/背心裙', null, null, null);
  404. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('31', '5', '2', '10', '61', '公主裙', null, null, null);
  405. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('32', '6', '2', '2', '12', '韩版', null, null, null);
  406. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('33', '6', '2', '3', '15', 'B类', null, null, null);
  407. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('34', '6', '2', '4', '18', '夏季', null, null, null);
  408. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('35', '6', '2', '5', '20', '纯棉', null, null, null);
  409. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('36', '6', '2', '7', '40', '纯色', null, null, null);
  410. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('37', '6', '2', '9', '76', '无袖', null, null, null);
  411. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('38', '6', '2', '10', '59', 'A字裙', null, null, null);
  412. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('39', '7', '2', '2', '12', '韩版', null, null, null);
  413. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('40', '7', '2', '3', '15', 'B类', null, null, null);
  414. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('41', '7', '2', '4', '18', '夏季', null, null, null);
  415. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('42', '7', '2', '5', '28', '混纺', null, null, null);
  416. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('43', '7', '2', '7', '40', '纯色', null, null, null);
  417. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('44', '7', '2', '9', '49', '短袖', null, null, null);
  418. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('45', '7', '2', '10', '61', '公主裙', null, null, null);
  419. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('46', '8', '2', '2', '12', '韩版', null, null, null);
  420. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('47', '8', '2', '3', '15', 'B类', null, null, null);
  421. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('48', '8', '2', '4', '18', '夏季', null, null, null);
  422. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('49', '8', '2', '5', '20', '纯棉', null, null, null);
  423. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('50', '8', '2', '7', '40', '纯色', null, null, null);
  424. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('51', '8', '2', '9', '76', '无袖', null, null, null);
  425. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('52', '8', '2', '10', '61', '公主裙', null, null, null);
  426. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('53', '9', '2', '2', '12', '韩版', null, null, null);
  427. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('54', '9', '2', '3', '15', 'B类', null, null, null);
  428. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('55', '9', '2', '4', '18', '夏季', null, null, null);
  429. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('56', '9', '2', '5', '20', '纯棉', null, null, null);
  430. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('57', '9', '2', '7', '39', '碎花', null, null, null);
  431. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('58', '9', '2', '9', '48', '吊带裙/背心裙', null, null, null);
  432. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('59', '9', '2', '10', '59', 'A字裙', null, null, null);
  433. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('60', '10', '2', '2', '12', '韩版', null, null, null);
  434. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('61', '10', '2', '3', '15', 'B类', null, null, null);
  435. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('62', '10', '2', '4', '18', '夏季', null, null, null);
  436. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('63', '10', '2', '5', '30', '涤纶', null, null, null);
  437. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('64', '10', '2', '7', '40', '纯色', null, null, null);
  438. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('65', '10', '2', '9', '76', '无袖', null, null, null);
  439. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('66', '10', '2', '10', '53', '蛋糕裙', null, null, null);
  440. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('67', '11', '2', '2', '12', '韩版', null, null, null);
  441. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('68', '11', '2', '3', '15', 'B类', null, null, null);
  442. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('69', '11', '2', '4', '18', '夏季', null, null, null);
  443. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('70', '11', '2', '5', '20', '纯棉', null, null, null);
  444. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('71', '11', '2', '7', '40', '纯色', null, null, null);
  445. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('72', '11', '2', '9', '48', '吊带裙/背心裙', null, null, null);
  446. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('73', '11', '2', '10', '61', '公主裙', null, null, null);
  447. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('74', '12', '2', '2', '12', '韩版', null, null, null);
  448. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('75', '12', '2', '3', '15', 'B类', null, null, null);
  449. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('76', '12', '2', '4', '18', '夏季', null, null, null);
  450. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('77', '12', '2', '5', '20', '纯棉', null, null, null);
  451. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('78', '12', '2', '7', '38', '卡通动漫', null, null, null);
  452. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('79', '12', '2', '9', '52', '衬裙', null, null, null);
  453. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('80', '12', '2', '10', '61', '公主裙', null, null, null);
  454. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('81', '13', '4', '14', '79', '大型', null, null, null);
  455. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('82', '13', '4', '15', '82', '很强', null, null, null);
  456. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('83', '13', '4', '16', '84', '长柄', null, null, null);
  457. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('84', '41', '3', '1', '3', '中性', null, null, null);
  458. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('85', '41', '3', '2', '12', '韩版', null, null, null);
  459. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('86', '41', '3', '3', '14', 'A类', null, null, null);
  460. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('87', '41', '3', '4', '18', '夏季', null, null, null);
  461. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('88', '41', '3', '5', '20', '纯棉', null, null, null);
  462. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('89', '41', '3', '6', '31', '短袖', null, null, null);
  463. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('90', '41', '3', '7', '38', '卡通动漫', null, null, null);
  464. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('91', '41', '3', '8', '42', '圆领', null, null, null);
  465. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('92', '42', '3', '1', '3', '中性', null, null, null);
  466. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('93', '42', '3', '2', '12', '韩版', null, null, null);
  467. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('94', '42', '3', '3', '15', 'B类', null, null, null);
  468. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('95', '42', '3', '4', '18', '夏季', null, null, null);
  469. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('96', '42', '3', '5', '20', '纯棉', null, null, null);
  470. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('97', '42', '3', '6', '31', '短袖', null, null, null);
  471. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('98', '42', '3', '7', '38', '卡通动漫', null, null, null);
  472. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('99', '42', '3', '8', '42', '圆领', null, null, null);
  473. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('100', '43', '3', '1', '3', '中性', null, null, null);
  474. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('101', '43', '3', '2', '12', '韩版', null, null, null);
  475. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('102', '43', '3', '3', '14', 'A类', null, null, null);
  476. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('103', '43', '3', '4', '18', '夏季', null, null, null);
  477. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('104', '43', '3', '5', '20', '纯棉', null, null, null);
  478. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('105', '43', '3', '6', '31', '短袖', null, null, null);
  479. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('106', '43', '3', '7', '93', '条纹,字母', null, null, null);
  480. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('107', '43', '3', '8', '42', '圆领', null, null, null);
  481. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('108', '44', '3', '1', '3', '中性', null, null, null);
  482. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('109', '44', '3', '2', '12', '韩版', null, null, null);
  483. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('110', '44', '3', '3', '14', 'A类', null, null, null);
  484. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('111', '44', '3', '4', '18', '夏季', null, null, null);
  485. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('112', '44', '3', '5', '20', '纯棉', null, null, null);
  486. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('113', '44', '3', '6', '31', '短袖', null, null, null);
  487. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('114', '44', '3', '7', '38', '卡通动漫', null, null, null);
  488. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('115', '44', '3', '8', '42', '圆领', null, null, null);
  489. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('116', '45', '3', '1', '3', '中性', null, null, null);
  490. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('117', '45', '3', '2', '12', '韩版', null, null, null);
  491. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('118', '45', '3', '3', '14', 'A类', null, null, null);
  492. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('119', '45', '3', '4', '18', '夏季', null, null, null);
  493. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('120', '45', '3', '5', '20', '纯棉', null, null, null);
  494. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('121', '45', '3', '6', '31', '短袖', null, null, null);
  495. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('122', '45', '3', '7', '38', '卡通动漫', null, null, null);
  496. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('123', '45', '3', '8', '42', '圆领', null, null, null);
  497. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('124', '46', '3', '1', '3', '中性', null, null, null);
  498. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('125', '46', '3', '2', '12', '韩版', null, null, null);
  499. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('126', '46', '3', '3', '14', 'A类', null, null, null);
  500. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('127', '46', '3', '4', '18', '夏季', null, null, null);
  501. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('128', '46', '3', '5', '20', '纯棉', null, null, null);
  502. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('129', '46', '3', '6', '31', '短袖', null, null, null);
  503. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('130', '46', '3', '7', '38', '卡通动漫', null, null, null);
  504. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('131', '46', '3', '8', '42', '圆领', null, null, null);
  505. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('132', '47', '7', '1', '3', '中性', null, null, null);
  506. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('133', '47', '7', '2', '12', '韩版', null, null, null);
  507. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('134', '47', '7', '3', '15', 'B类', null, null, null);
  508. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('135', '47', '7', '4', '18', '夏季', null, null, null);
  509. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('136', '47', '7', '5', '20', '纯棉', null, null, null);
  510. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('137', '47', '7', '6', '31', '短袖', null, null, null);
  511. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('138', '48', '7', '1', '3', '中性', null, null, null);
  512. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('139', '48', '7', '2', '12', '韩版', null, null, null);
  513. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('140', '48', '7', '3', '15', 'B类', null, null, null);
  514. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('141', '48', '7', '4', '18', '夏季', null, null, null);
  515. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('142', '48', '7', '5', '20', '纯棉', null, null, null);
  516. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('143', '48', '7', '6', '34', '五分袖', null, null, null);
  517. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('144', '48', '7', '22', '95', '家庭装', null, null, null);
  518. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('145', '49', '3', '1', '2', '女', null, null, null);
  519. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('146', '49', '3', '2', '12', '韩版', null, null, null);
  520. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('147', '49', '3', '3', '15', 'B类', null, null, null);
  521. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('148', '49', '3', '4', '18', '夏季', null, null, null);
  522. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('149', '49', '3', '5', '109', '棉', null, null, null);
  523. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('150', '49', '3', '6', '31', '短袖', null, null, null);
  524. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('151', '49', '3', '7', '93', '字母', null, null, null);
  525. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('152', '49', '3', '8', '42', '圆领', null, null, null);
  526. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('153', '49', '3', '17', '92', '柔软处理,酵素洗', null, null, null);
  527. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('154', '49', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  528. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('155', '49', '3', '26', '100', '棉', null, null, null);
  529. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('156', '49', '3', '27', '102', '95(%)', null, null, null);
  530. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('157', '50', '7', '1', '3', '中性', null, null, null);
  531. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('158', '50', '7', '2', '12', '韩版', null, null, null);
  532. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('159', '50', '7', '3', '14', 'A类', null, null, null);
  533. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('160', '50', '7', '4', '18', '夏季', null, null, null);
  534. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('161', '50', '7', '5', '20', '纯棉', null, null, null);
  535. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('162', '50', '7', '6', '31', '短袖', null, null, null);
  536. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('163', '50', '7', '22', '95', '家庭装', null, null, null);
  537. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('164', '50', '7', '17', '92', '柔软处理,酵素洗', null, null, null);
  538. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('165', '50', '7', '24', '94', 'T恤', null, null, null);
  539. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('166', '50', '7', '26', '100', '棉', null, null, null);
  540. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('167', '50', '7', '27', '101', '100(%)', null, null, null);
  541. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('180', '52', '3', '1', '3', '中性', null, null, null);
  542. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('181', '52', '3', '2', '12', '韩版', null, null, null);
  543. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('182', '52', '3', '3', '14', 'A类', null, null, null);
  544. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('183', '52', '3', '4', '18', '夏季', null, null, null);
  545. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('184', '52', '3', '5', '20', '纯棉', null, null, null);
  546. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('185', '52', '3', '6', '31', '短袖', null, null, null);
  547. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('186', '52', '3', '7', '111', '卡通动物', null, null, null);
  548. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('187', '52', '3', '8', '42', '圆领', null, null, null);
  549. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('188', '52', '3', '17', '85', '柔软处理', null, null, null);
  550. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('189', '52', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  551. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('190', '52', '3', '26', '100', '棉', null, null, null);
  552. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('191', '52', '3', '27', '101', '100(%)', null, null, null);
  553. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('192', '48', '7', '17', '92', '柔软处理,酵素洗', null, null, null);
  554. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('193', '48', '7', '24', '94', 'T恤', null, null, null);
  555. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('194', '48', '7', '26', '100', '棉', null, null, null);
  556. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('195', '48', '7', '27', '102', '95(%)', null, null, null);
  557. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('196', '47', '7', '22', '90', '母女装', null, null, null);
  558. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('197', '47', '7', '17', '92', '柔软处理,酵素洗', null, null, null);
  559. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('198', '47', '7', '24', '94', 'T恤', null, null, null);
  560. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('199', '47', '7', '26', '100', '棉', null, null, null);
  561. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('200', '47', '7', '27', '102', '95(%)', null, null, null);
  562. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('201', '53', '2', '2', '12', '韩版', null, null, null);
  563. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('202', '53', '2', '3', '15', 'B类', null, null, null);
  564. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('203', '53', '2', '4', '18', '夏季', null, null, null);
  565. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('204', '53', '2', '5', '110', '苎麻', null, null, null);
  566. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('205', '53', '2', '7', '40', '纯色', null, null, null);
  567. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('206', '53', '2', '9', '112', '裙裤', null, null, null);
  568. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('207', '53', '2', '10', '59', 'A字裙', null, null, null);
  569. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('208', '53', '2', '17', '92', '柔软处理,酵素洗', null, null, null);
  570. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('209', '53', '2', '26', '98', '苎麻', null, null, null);
  571. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('210', '53', '2', '27', '99', '55(%)', null, null, null);
  572. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('211', '54', '7', '1', '3', '中性', null, null, null);
  573. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('212', '54', '7', '2', '12', '韩版', null, null, null);
  574. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('213', '54', '7', '3', '15', 'B类', null, null, null);
  575. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('214', '54', '7', '4', '18', '夏季', null, null, null);
  576. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('215', '54', '7', '5', '109', '棉', null, null, null);
  577. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('216', '54', '7', '6', '31', '短袖', null, null, null);
  578. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('217', '54', '7', '22', '95', '家庭装', null, null, null);
  579. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('218', '54', '7', '17', '92', '柔软处理,酵素洗', null, null, null);
  580. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('219', '54', '7', '24', '94', 'T恤', null, null, null);
  581. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('220', '54', '7', '26', '100', '棉', null, null, null);
  582. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('221', '54', '7', '27', '102', '95(%)', null, null, null);
  583. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('222', '55', '2', '2', '12', '韩版', null, null, null);
  584. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('223', '55', '2', '3', '15', 'B类', null, null, null);
  585. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('224', '55', '2', '4', '18', '夏季', null, null, null);
  586. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('225', '55', '2', '5', '109', '棉', null, null, null);
  587. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('226', '55', '2', '7', '40', '纯色', null, null, null);
  588. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('227', '55', '2', '9', '49', '短袖', null, null, null);
  589. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('228', '55', '2', '10', '56', '荷叶边', null, null, null);
  590. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('229', '55', '2', '17', '106', '酵素洗', null, null, null);
  591. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('230', '55', '2', '26', '100', '棉', null, null, null);
  592. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('231', '55', '2', '27', '102', '95(%)', null, null, null);
  593. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('232', '56', '2', '2', '12', '韩版', null, null, null);
  594. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('233', '56', '2', '3', '15', 'B类', null, null, null);
  595. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('234', '56', '2', '4', '18', '夏季', null, null, null);
  596. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('235', '56', '2', '5', '109', '棉', null, null, null);
  597. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('236', '56', '2', '7', '40', '纯色', null, null, null);
  598. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('237', '56', '2', '9', '49', '短袖', null, null, null);
  599. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('238', '56', '2', '10', '75', '其他', null, null, null);
  600. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('239', '56', '2', '17', '106', '酵素洗', null, null, null);
  601. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('240', '56', '2', '26', '100', '棉', null, null, null);
  602. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('241', '56', '2', '27', '102', '95(%)', null, null, null);
  603. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('242', '57', '2', '2', '12', '韩版', null, null, null);
  604. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('243', '57', '2', '3', '15', 'B类', null, null, null);
  605. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('244', '57', '2', '4', '18', '夏季', null, null, null);
  606. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('245', '57', '2', '5', '109', '棉', null, null, null);
  607. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('246', '57', '2', '7', '37', '圆点', null, null, null);
  608. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('247', '57', '2', '9', '52', '衬裙', null, null, null);
  609. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('248', '57', '2', '10', '59', 'A字裙', null, null, null);
  610. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('249', '57', '2', '17', '104', '褶皱', null, null, null);
  611. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('250', '57', '2', '26', '100', '棉', null, null, null);
  612. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('251', '57', '2', '27', '102', '95(%)', null, null, null);
  613. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('252', '58', '7', '1', '3', '中性', null, null, null);
  614. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('253', '58', '7', '2', '12', '韩版', null, null, null);
  615. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('254', '58', '7', '3', '15', 'B类', null, null, null);
  616. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('255', '58', '7', '4', '18', '夏季', null, null, null);
  617. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('256', '58', '7', '5', '109', '棉', null, null, null);
  618. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('257', '58', '7', '6', '31', '短袖', null, null, null);
  619. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('258', '58', '7', '22', '95', '家庭装', null, null, null);
  620. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('259', '58', '7', '17', '92', '柔软处理,酵素洗', null, null, null);
  621. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('260', '58', '7', '24', '94', 'T恤', null, null, null);
  622. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('261', '58', '7', '26', '100', '棉', null, null, null);
  623. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('262', '58', '7', '27', '102', '95(%)', null, null, null);
  624. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('263', '59', '2', '2', '12', '韩版', null, null, null);
  625. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('264', '59', '2', '3', '15', 'B类', null, null, null);
  626. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('265', '59', '2', '4', '18', '夏季', null, null, null);
  627. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('266', '59', '2', '5', '109', '棉', null, null, null);
  628. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('267', '59', '2', '7', '40', '纯色', null, null, null);
  629. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('268', '59', '2', '9', '112', '裙裤', null, null, null);
  630. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('269', '59', '2', '10', '54', '百褶裙', null, null, null);
  631. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('270', '59', '2', '17', '92', '柔软处理,酵素洗', null, null, null);
  632. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('271', '59', '2', '26', '100', '棉', null, null, null);
  633. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('272', '59', '2', '27', '102', '95(%)', null, null, null);
  634. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('273', '60', '2', '2', '12', '韩版', null, null, null);
  635. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('274', '60', '2', '3', '15', 'B类', null, null, null);
  636. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('275', '60', '2', '4', '18', '夏季', null, null, null);
  637. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('276', '60', '2', '5', '109', '棉', null, null, null);
  638. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('277', '60', '2', '7', '40', '纯色', null, null, null);
  639. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('278', '60', '2', '9', '48', '吊带裙/背心裙', null, null, null);
  640. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('279', '60', '2', '10', '56', '荷叶边', null, null, null);
  641. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('280', '60', '2', '17', '106', '酵素洗', null, null, null);
  642. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('281', '60', '2', '26', '100', '棉', null, null, null);
  643. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('282', '60', '2', '27', '102', '95(%)', null, null, null);
  644. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('283', '61', '7', '1', '3', '中性', null, null, null);
  645. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('284', '61', '7', '2', '12', '韩版', null, null, null);
  646. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('285', '61', '7', '3', '15', 'B类', null, null, null);
  647. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('286', '61', '7', '4', '18', '夏季', null, null, null);
  648. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('287', '61', '7', '5', '109', '棉', null, null, null);
  649. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('288', '61', '7', '6', '31', '短袖', null, null, null);
  650. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('289', '61', '7', '22', '95', '家庭装', null, null, null);
  651. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('290', '61', '7', '17', '92', '柔软处理,酵素洗', null, null, null);
  652. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('291', '61', '7', '24', '94', 'T恤', null, null, null);
  653. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('292', '61', '7', '26', '100', '棉', null, null, null);
  654. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('293', '61', '7', '27', '102', '95(%)', null, null, null);
  655. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('294', '62', '2', '2', '12', '韩版', null, null, null);
  656. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('295', '62', '2', '3', '15', 'B类', null, null, null);
  657. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('296', '62', '2', '4', '18', '夏季', null, null, null);
  658. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('297', '62', '2', '5', '30', '涤纶', null, null, null);
  659. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('298', '62', '2', '7', '40', '纯色', null, null, null);
  660. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('299', '62', '2', '10', '61', '公主裙', null, null, null);
  661. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('300', '62', '2', '17', '106', '酵素洗', null, null, null);
  662. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('301', '62', '2', '26', '100', '棉', null, null, null);
  663. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('302', '62', '2', '27', '101', '100(%)', null, null, null);
  664. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('303', '63', '7', '1', '2', '女', null, null, null);
  665. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('304', '63', '7', '2', '12', '韩版', null, null, null);
  666. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('305', '63', '7', '3', '15', 'B类', null, null, null);
  667. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('306', '63', '7', '4', '18', '夏季', null, null, null);
  668. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('307', '63', '7', '5', '109', '棉', null, null, null);
  669. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('308', '63', '7', '6', '31', '短袖', null, null, null);
  670. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('309', '63', '7', '22', '90', '母女装', null, null, null);
  671. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('310', '63', '7', '17', '92', '柔软处理,酵素洗', null, null, null);
  672. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('311', '63', '7', '24', '94', 'T恤', null, null, null);
  673. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('312', '63', '7', '26', '100', '棉', null, null, null);
  674. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('313', '63', '7', '27', '102', '95(%)', null, null, null);
  675. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('314', '64', '3', '1', '1', '男', null, null, null);
  676. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('315', '64', '3', '2', '11', '欧美', null, null, null);
  677. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('316', '64', '3', '3', '15', 'B类', null, null, null);
  678. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('317', '64', '3', '4', '18', '夏季', null, null, null);
  679. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('318', '64', '3', '5', '109', '棉', null, null, null);
  680. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('319', '64', '3', '6', '31', '短袖', null, null, null);
  681. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('320', '64', '3', '7', '38', '卡通动漫', null, null, null);
  682. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('321', '64', '3', '8', '42', '圆领', null, null, null);
  683. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('322', '64', '3', '17', '85', '柔软处理', null, null, null);
  684. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('323', '64', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  685. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('324', '64', '3', '26', '100', '棉', null, null, null);
  686. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('325', '64', '3', '27', '102', '95(%)', null, null, null);
  687. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('326', '65', '7', '1', '3', '中性', null, null, null);
  688. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('327', '65', '7', '2', '12', '韩版', null, null, null);
  689. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('328', '65', '7', '3', '15', 'B类', null, null, null);
  690. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('329', '65', '7', '4', '18', '夏季', null, null, null);
  691. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('330', '65', '7', '5', '109', '棉', null, null, null);
  692. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('331', '65', '7', '6', '34', '五分袖', null, null, null);
  693. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('332', '65', '7', '22', '95', '家庭装', null, null, null);
  694. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('333', '65', '7', '17', '92', '柔软处理,酵素洗', null, null, null);
  695. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('334', '65', '7', '24', '94', 'T恤', null, null, null);
  696. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('335', '65', '7', '26', '100', '棉', null, null, null);
  697. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('336', '65', '7', '27', '101', '100(%)', null, null, null);
  698. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('337', '66', '1', '1', '3', '中性', null, null, null);
  699. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('338', '66', '1', '2', '12', '韩版', null, null, null);
  700. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('339', '66', '1', '3', '15', 'B类', null, null, null);
  701. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('340', '66', '1', '4', '18', '夏季', null, null, null);
  702. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('341', '66', '1', '5', '24', '亚麻', null, null, null);
  703. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('342', '66', '1', '11', '63', '短裤', null, null, null);
  704. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('343', '66', '1', '13', '72', '中腰', null, null, null);
  705. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('344', '66', '1', '17', '92', '柔软处理,酵素洗', null, null, null);
  706. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('345', '66', '1', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  707. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('347', '66', '1', '25', '97', '休闲裤', null, null, null);
  708. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('348', '66', '1', '27', '102', '95(%)', null, null, null);
  709. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('349', '67', '7', '1', '2', '女', null, null, null);
  710. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('350', '67', '7', '2', '12', '韩版', null, null, null);
  711. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('351', '67', '7', '3', '15', 'B类', null, null, null);
  712. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('352', '67', '7', '4', '18', '夏季', null, null, null);
  713. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('353', '67', '7', '5', '109', '棉', null, null, null);
  714. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('354', '67', '7', '6', '31', '短袖', null, null, null);
  715. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('355', '67', '7', '22', '90', '母女装', null, null, null);
  716. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('356', '67', '7', '17', '92', '柔软处理,酵素洗', null, null, null);
  717. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('357', '67', '7', '24', '94', 'T恤', null, null, null);
  718. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('358', '67', '7', '26', '100', '棉', null, null, null);
  719. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('359', '67', '7', '27', '101', '100(%)', null, null, null);
  720. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('360', '68', '3', '1', '3', '中性', null, null, null);
  721. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('361', '68', '3', '2', '12', '韩版', null, null, null);
  722. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('362', '68', '3', '3', '15', 'B类', null, null, null);
  723. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('363', '68', '3', '4', '18', '夏季', null, null, null);
  724. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('364', '68', '3', '5', '109', '棉', null, null, null);
  725. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('365', '68', '3', '6', '31', '短袖', null, null, null);
  726. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('366', '68', '3', '7', '37', '圆点', null, null, null);
  727. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('367', '68', '3', '8', '47', '其他', null, null, null);
  728. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('368', '68', '3', '17', '92', '柔软处理,酵素洗', null, null, null);
  729. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('369', '68', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  730. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('370', '68', '3', '26', '100', '棉', null, null, null);
  731. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('371', '68', '3', '27', '102', '95(%)', null, null, null);
  732. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('372', '69', '3', '1', '3', '中性', null, null, null);
  733. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('373', '69', '3', '2', '12', '韩版', null, null, null);
  734. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('374', '69', '3', '3', '15', 'B类', null, null, null);
  735. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('375', '69', '3', '4', '18', '夏季', null, null, null);
  736. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('376', '69', '3', '5', '109', '棉', null, null, null);
  737. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('377', '69', '3', '6', '31', '短袖', null, null, null);
  738. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('378', '69', '3', '7', '41', '其他', null, null, null);
  739. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('379', '69', '3', '8', '42', '圆领', null, null, null);
  740. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('380', '69', '3', '17', '92', '柔软处理,酵素洗', null, null, null);
  741. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('381', '69', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  742. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('382', '69', '3', '26', '100', '棉', null, null, null);
  743. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('383', '69', '3', '27', '101', '100(%)', null, null, null);
  744. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('384', '70', '1', '1', '3', '中性', null, null, null);
  745. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('385', '70', '1', '2', '12', '韩版', null, null, null);
  746. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('386', '70', '1', '3', '15', 'B类', null, null, null);
  747. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('387', '70', '1', '4', '18', '夏季', null, null, null);
  748. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('388', '70', '1', '5', '110', '苎麻', null, null, null);
  749. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('389', '70', '1', '11', '64', '五分裤', null, null, null);
  750. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('390', '70', '1', '13', '72', '中腰', null, null, null);
  751. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('391', '70', '1', '17', '92', '柔软处理,酵素洗', null, null, null);
  752. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('392', '70', '1', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  753. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('393', '70', '1', '25', '97', '休闲裤', null, null, null);
  754. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('394', '70', '1', '26', '98', '苎麻', null, null, null);
  755. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('395', '70', '1', '27', '99', '55(%)', null, null, null);
  756. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('408', '72', '1', '1', '3', '中性', null, null, null);
  757. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('409', '72', '1', '2', '12', '韩版', null, null, null);
  758. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('410', '72', '1', '3', '15', 'B类', null, null, null);
  759. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('411', '72', '1', '4', '18', '夏季', null, null, null);
  760. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('412', '72', '1', '5', '109', '棉', null, null, null);
  761. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('413', '72', '1', '11', '63', '短裤', null, null, null);
  762. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('414', '72', '1', '13', '72', '中腰', null, null, null);
  763. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('415', '72', '1', '17', '92', '柔软处理,酵素洗', null, null, null);
  764. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('416', '72', '1', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  765. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('417', '72', '1', '25', '97', '休闲裤', null, null, null);
  766. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('418', '72', '1', '26', '100', '棉', null, null, null);
  767. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('419', '72', '1', '27', '102', '95(%)', null, null, null);
  768. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('420', '73', '1', '1', '3', '中性', null, null, null);
  769. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('421', '73', '1', '2', '12', '韩版', null, null, null);
  770. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('422', '73', '1', '3', '15', 'B类', null, null, null);
  771. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('423', '73', '1', '4', '18', '夏季', null, null, null);
  772. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('424', '73', '1', '5', '109', '棉', null, null, null);
  773. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('425', '73', '1', '11', '63', '短裤', null, null, null);
  774. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('426', '73', '1', '13', '72', '中腰', null, null, null);
  775. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('427', '73', '1', '17', '92', '柔软处理,酵素洗', null, null, null);
  776. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('428', '73', '1', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  777. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('429', '73', '1', '25', '97', '休闲裤', null, null, null);
  778. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('430', '73', '1', '26', '100', '棉', null, null, null);
  779. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('431', '73', '1', '27', '102', '95(%)', null, null, null);
  780. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('432', '74', '1', '1', '3', '中性', null, null, null);
  781. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('433', '74', '1', '2', '12', '韩版', null, null, null);
  782. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('434', '74', '1', '3', '15', 'B类', null, null, null);
  783. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('435', '74', '1', '4', '18', '夏季', null, null, null);
  784. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('436', '74', '1', '5', '109', '棉', null, null, null);
  785. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('437', '74', '1', '11', '63', '短裤', null, null, null);
  786. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('438', '74', '1', '13', '72', '中腰', null, null, null);
  787. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('439', '74', '1', '17', '92', '柔软处理,酵素洗', null, null, null);
  788. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('440', '74', '1', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  789. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('441', '74', '1', '25', '97', '休闲裤', null, null, null);
  790. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('442', '74', '1', '26', '100', '棉', null, null, null);
  791. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('443', '74', '1', '27', '102', '95(%)', null, null, null);
  792. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('444', '75', '1', '1', '3', '中性', null, null, null);
  793. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('445', '75', '1', '2', '12', '韩版', null, null, null);
  794. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('446', '75', '1', '3', '15', 'B类', null, null, null);
  795. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('447', '75', '1', '4', '18', '夏季', null, null, null);
  796. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('448', '75', '1', '5', '109', '棉', null, null, null);
  797. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('449', '75', '1', '11', '63', '短裤', null, null, null);
  798. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('450', '75', '1', '13', '72', '中腰', null, null, null);
  799. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('451', '75', '1', '17', '92', '柔软处理,酵素洗', null, null, null);
  800. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('452', '75', '1', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  801. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('453', '75', '1', '25', '97', '休闲裤', null, null, null);
  802. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('454', '75', '1', '26', '100', '棉', null, null, null);
  803. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('455', '75', '1', '27', '102', '95(%)', null, null, null);
  804. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('456', '76', '1', '1', '3', '中性', null, null, null);
  805. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('457', '76', '1', '2', '12', '韩版', null, null, null);
  806. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('458', '76', '1', '3', '15', 'B类', null, null, null);
  807. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('459', '76', '1', '4', '18', '夏季', null, null, null);
  808. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('460', '76', '1', '5', '109', '棉', null, null, null);
  809. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('461', '76', '1', '11', '63', '短裤', null, null, null);
  810. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('462', '76', '1', '13', '72', '中腰', null, null, null);
  811. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('463', '76', '1', '17', '92', '柔软处理,酵素洗', null, null, null);
  812. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('464', '76', '1', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  813. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('465', '76', '1', '25', '97', '休闲裤', null, null, null);
  814. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('466', '76', '1', '26', '100', '棉', null, null, null);
  815. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('467', '76', '1', '27', '102', '95(%)', null, null, null);
  816. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('468', '78', '3', '1', '1', '男', null, null, null);
  817. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('469', '78', '3', '2', '12', '韩版', null, null, null);
  818. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('470', '78', '3', '3', '15', 'B类', null, null, null);
  819. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('471', '78', '3', '4', '18', '夏季', null, null, null);
  820. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('472', '78', '3', '5', '109', '棉', null, null, null);
  821. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('473', '78', '3', '6', '31', '短袖', null, null, null);
  822. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('474', '78', '3', '7', '40', '纯色', null, null, null);
  823. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('475', '78', '3', '8', '42', '圆领', null, null, null);
  824. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('476', '78', '3', '17', '85', '柔软处理', null, null, null);
  825. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('477', '78', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  826. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('478', '78', '3', '26', '100', '棉', null, null, null);
  827. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('479', '78', '3', '27', '115', '92%', null, null, null);
  828. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('480', '79', '1', '1', '3', '中性', null, null, null);
  829. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('481', '79', '1', '2', '12', '韩版', null, null, null);
  830. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('482', '79', '1', '3', '15', 'B类', null, null, null);
  831. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('483', '79', '1', '4', '18', '夏季', null, null, null);
  832. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('484', '79', '1', '5', '109', '棉', null, null, null);
  833. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('485', '79', '1', '11', '63', '短裤', null, null, null);
  834. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('486', '79', '1', '13', '72', '中腰', null, null, null);
  835. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('487', '79', '1', '17', '92', '柔软处理,酵素洗', null, null, null);
  836. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('488', '79', '1', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  837. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('489', '79', '1', '25', '97', '休闲裤', null, null, null);
  838. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('490', '79', '1', '26', '100', '棉', null, null, null);
  839. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('491', '79', '1', '27', '116', '85(%)', null, null, null);
  840. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('492', '80', '1', '1', '2', '女', null, null, null);
  841. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('493', '80', '1', '2', '12', '韩版', null, null, null);
  842. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('494', '80', '1', '3', '15', 'B类', null, null, null);
  843. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('495', '80', '1', '4', '18', '夏季', null, null, null);
  844. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('496', '80', '1', '5', '109', '棉', null, null, null);
  845. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('497', '80', '1', '11', '66', '九分裤', null, null, null);
  846. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('498', '80', '1', '13', '72', '中腰', null, null, null);
  847. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('499', '80', '1', '17', '92', '柔软处理,酵素洗', null, null, null);
  848. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('500', '80', '1', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  849. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('501', '80', '1', '25', '97', '休闲裤', null, null, null);
  850. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('502', '80', '1', '26', '100', '棉', null, null, null);
  851. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('503', '80', '1', '27', '116', '85(%)', null, null, null);
  852. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('504', '81', '9', '1', '3', '中性', null, null, null);
  853. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('505', '81', '9', '2', '12', '韩版', null, null, null);
  854. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('506', '81', '9', '3', '15', 'B类', null, null, null);
  855. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('507', '81', '9', '4', '18', '夏季', null, null, null);
  856. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('508', '81', '9', '5', '30', '涤纶', null, null, null);
  857. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('509', '81', '9', '6', '32', '长袖', null, null, null);
  858. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('510', '81', '9', '7', '38', '卡通动漫', null, null, null);
  859. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('511', '81', '9', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  860. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('512', '81', '9', '19', '119', '连帽', null, null, null);
  861. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('513', '82', '9', '1', '3', '中性', null, null, null);
  862. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('514', '82', '9', '2', '12', '韩版', null, null, null);
  863. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('515', '82', '9', '3', '14', 'A类', null, null, null);
  864. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('516', '82', '9', '4', '18', '夏季', null, null, null);
  865. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('517', '82', '9', '5', '30', '涤纶', null, null, null);
  866. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('518', '82', '9', '6', '32', '长袖', null, null, null);
  867. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('519', '82', '9', '7', '40', '纯色', null, null, null);
  868. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('520', '82', '9', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  869. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('521', '82', '9', '19', '119', '连帽', null, null, null);
  870. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('522', '83', '3', '1', '2', '女', null, null, null);
  871. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('523', '83', '3', '2', '12', '韩版', null, null, null);
  872. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('524', '83', '3', '3', '15', 'B类', null, null, null);
  873. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('525', '83', '3', '4', '18', '夏季', null, null, null);
  874. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('526', '83', '3', '5', '109', '棉', null, null, null);
  875. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('527', '83', '3', '6', '117', '无袖', null, null, null);
  876. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('528', '83', '3', '7', '40', '纯色', null, null, null);
  877. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('529', '83', '3', '8', '42', '圆领', null, null, null);
  878. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('530', '83', '3', '17', '92', '柔软处理,酵素洗', null, null, null);
  879. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('531', '83', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  880. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('532', '83', '3', '26', '100', '棉', null, null, null);
  881. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('533', '83', '3', '27', '118', '97(%)', null, null, null);
  882. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('534', '84', '9', '1', '3', '中性', null, null, null);
  883. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('535', '84', '9', '2', '12', '韩版', null, null, null);
  884. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('536', '84', '9', '3', '14', 'A类', null, null, null);
  885. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('537', '84', '9', '4', '18', '夏季', null, null, null);
  886. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('538', '84', '9', '5', '30', '涤纶', null, null, null);
  887. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('539', '84', '9', '6', '32', '长袖', null, null, null);
  888. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('540', '84', '9', '7', '40', '纯色', null, null, null);
  889. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('541', '84', '9', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  890. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('542', '84', '9', '19', '119', '连帽', null, null, null);
  891. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('561', '87', '7', '1', '3', '中性', null, null, null);
  892. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('562', '87', '7', '2', '12', '韩版', null, null, null);
  893. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('563', '87', '7', '3', '15', 'B类', null, null, null);
  894. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('564', '87', '7', '4', '18', '夏季', null, null, null);
  895. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('565', '87', '7', '5', '109', '棉', null, null, null);
  896. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('566', '87', '7', '6', '31', '短袖', null, null, null);
  897. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('567', '87', '7', '22', '95', '家庭装', null, null, null);
  898. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('568', '87', '7', '17', '92', '柔软处理,酵素洗', null, null, null);
  899. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('569', '87', '7', '24', '94', 'T恤', null, null, null);
  900. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('570', '87', '7', '26', '100', '棉', null, null, null);
  901. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('571', '87', '7', '27', '101', '100(%)', null, null, null);
  902. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('572', '88', '7', '1', '1', '男', null, null, null);
  903. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('573', '88', '7', '2', '12', '韩版', null, null, null);
  904. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('574', '88', '7', '3', '15', 'B类', null, null, null);
  905. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('575', '88', '7', '4', '18', '夏季', null, null, null);
  906. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('576', '88', '7', '5', '109', '棉', null, null, null);
  907. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('577', '88', '7', '6', '31', '短袖', null, null, null);
  908. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('578', '88', '7', '22', '95', '家庭装', null, null, null);
  909. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('579', '88', '7', '17', '92', '柔软处理,酵素洗', null, null, null);
  910. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('580', '88', '7', '24', '94', 'T恤', null, null, null);
  911. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('581', '88', '7', '26', '100', '棉', null, null, null);
  912. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('582', '88', '7', '27', '102', '95(%)', null, null, null);
  913. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('583', '89', '8', '1', '3', '中性', null, null, null);
  914. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('584', '89', '8', '2', '12', '韩版', null, null, null);
  915. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('585', '89', '8', '3', '14', 'A类', null, null, null);
  916. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('586', '89', '8', '4', '18', '夏季', null, null, null);
  917. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('587', '89', '8', '5', '109', '棉', null, null, null);
  918. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('588', '89', '8', '6', '31', '短袖', null, null, null);
  919. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('589', '89', '8', '17', '85', '柔软处理', null, null, null);
  920. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('590', '89', '8', '19', '87', '不连帽', null, null, null);
  921. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('591', '89', '8', '27', '101', '100(%)', null, null, null);
  922. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('592', '89', '8', '30', '114', '套装', null, null, null);
  923. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('593', '90', '3', '1', '3', '中性', null, null, null);
  924. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('594', '90', '3', '2', '12', '韩版', null, null, null);
  925. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('595', '90', '3', '3', '14', 'A类', null, null, null);
  926. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('596', '90', '3', '4', '18', '夏季', null, null, null);
  927. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('597', '90', '3', '5', '109', '棉', null, null, null);
  928. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('598', '90', '3', '6', '31', '短袖', null, null, null);
  929. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('599', '90', '3', '7', '120', '植物', null, null, null);
  930. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('600', '90', '3', '8', '42', '圆领', null, null, null);
  931. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('601', '90', '3', '17', '92', '柔软处理,酵素洗', null, null, null);
  932. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('602', '90', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  933. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('603', '90', '3', '26', '100', '棉', null, null, null);
  934. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('604', '90', '3', '27', '101', '100(%)', null, null, null);
  935. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('605', '91', '8', '1', '3', '中性', null, null, null);
  936. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('606', '91', '8', '2', '12', '韩版', null, null, null);
  937. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('607', '91', '8', '3', '14', 'A类', null, null, null);
  938. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('608', '91', '8', '4', '18', '夏季', null, null, null);
  939. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('609', '91', '8', '5', '109', '棉', null, null, null);
  940. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('610', '91', '8', '6', '31', '短袖', null, null, null);
  941. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('611', '91', '8', '17', '85', '柔软处理', null, null, null);
  942. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('612', '91', '8', '19', '87', '不连帽', null, null, null);
  943. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('613', '91', '8', '27', '101', '100(%)', null, null, null);
  944. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('614', '91', '8', '30', '114', '套装', null, null, null);
  945. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('615', '92', '3', '1', '3', '中性', null, null, null);
  946. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('616', '92', '3', '2', '12', '韩版', null, null, null);
  947. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('617', '92', '3', '3', '14', 'A类', null, null, null);
  948. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('618', '92', '3', '4', '18', '夏季', null, null, null);
  949. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('619', '92', '3', '5', '109', '棉', null, null, null);
  950. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('620', '92', '3', '6', '31', '短袖', null, null, null);
  951. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('621', '92', '3', '7', '111', '卡通动物', null, null, null);
  952. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('622', '92', '3', '8', '42', '圆领', null, null, null);
  953. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('623', '92', '3', '17', '92', '柔软处理,酵素洗', null, null, null);
  954. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('624', '92', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  955. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('625', '92', '3', '26', '100', '棉', null, null, null);
  956. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('626', '92', '3', '27', '101', '100(%)', null, null, null);
  957. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('627', '93', '1', '1', '3', '中性', null, null, null);
  958. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('628', '93', '1', '2', '11', '欧美', null, null, null);
  959. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('629', '93', '1', '3', '14', 'A类', null, null, null);
  960. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('630', '93', '1', '4', '18', '夏季', null, null, null);
  961. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('631', '93', '1', '5', '109', '棉', null, null, null);
  962. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('632', '93', '1', '11', '64', '五分裤', null, null, null);
  963. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('633', '93', '1', '13', '72', '中腰', null, null, null);
  964. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('634', '93', '1', '17', '92', '柔软处理,酵素洗', null, null, null);
  965. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('635', '93', '1', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  966. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('636', '93', '1', '25', '97', '休闲裤', null, null, null);
  967. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('637', '93', '1', '26', '100', '棉', null, null, null);
  968. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('638', '93', '1', '27', '101', '100(%)', null, null, null);
  969. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('639', '94', '8', '1', '3', '中性', null, null, null);
  970. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('640', '94', '8', '2', '5', '休闲', null, null, null);
  971. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('641', '94', '8', '3', '14', 'A类', null, null, null);
  972. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('642', '94', '8', '4', '18', '夏季', null, null, null);
  973. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('643', '94', '8', '5', '109', '棉', null, null, null);
  974. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('644', '94', '8', '6', '117', '无袖', null, null, null);
  975. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('645', '94', '8', '17', '85', '柔软处理', null, null, null);
  976. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('646', '94', '8', '19', '87', '不连帽', null, null, null);
  977. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('647', '94', '8', '27', '101', '100(%)', null, null, null);
  978. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('648', '94', '8', '30', '114', '套装', null, null, null);
  979. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('649', '95', '3', '1', '1', '男', null, null, null);
  980. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('650', '95', '3', '2', '12', '韩版', null, null, null);
  981. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('651', '95', '3', '3', '15', 'B类', null, null, null);
  982. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('652', '95', '3', '4', '18', '夏季', null, null, null);
  983. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('653', '95', '3', '5', '109', '棉', null, null, null);
  984. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('654', '95', '3', '6', '31', '短袖', null, null, null);
  985. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('655', '95', '3', '7', '93', '字母', null, null, null);
  986. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('656', '95', '3', '8', '42', '圆领', null, null, null);
  987. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('657', '95', '3', '17', '92', '柔软处理,酵素洗', null, null, null);
  988. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('658', '95', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  989. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('659', '95', '3', '26', '100', '棉', null, null, null);
  990. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('660', '95', '3', '27', '101', '100(%)', null, null, null);
  991. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('661', '96', '3', '1', '1', '男', null, null, null);
  992. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('662', '96', '3', '2', '12', '韩版', null, null, null);
  993. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('663', '96', '3', '3', '15', 'B类', null, null, null);
  994. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('664', '96', '3', '4', '18', '夏季', null, null, null);
  995. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('665', '96', '3', '5', '109', '棉', null, null, null);
  996. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('666', '96', '3', '6', '31', '短袖', null, null, null);
  997. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('667', '96', '3', '7', '111', '卡通动物', null, null, null);
  998. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('668', '96', '3', '8', '42', '圆领', null, null, null);
  999. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('669', '96', '3', '17', '92', '柔软处理,酵素洗', null, null, null);
  1000. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('670', '96', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1001. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('671', '96', '3', '26', '100', '棉', null, null, null);
  1002. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('672', '96', '3', '27', '101', '100(%)', null, null, null);
  1003. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('673', '97', '1', '1', '1', '男', null, null, null);
  1004. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('674', '97', '1', '2', '12', '韩版', null, null, null);
  1005. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('675', '97', '1', '3', '15', 'B类', null, null, null);
  1006. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('676', '97', '1', '4', '18', '夏季', null, null, null);
  1007. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('677', '97', '1', '5', '109', '棉', null, null, null);
  1008. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('678', '97', '1', '11', '63', '短裤', null, null, null);
  1009. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('679', '97', '1', '13', '72', '中腰', null, null, null);
  1010. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('680', '97', '1', '17', '92', '柔软处理,酵素洗', null, null, null);
  1011. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('681', '97', '1', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1012. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('682', '97', '1', '25', '97', '休闲裤', null, null, null);
  1013. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('683', '97', '1', '26', '100', '棉', null, null, null);
  1014. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('684', '97', '1', '27', '101', '100(%)', null, null, null);
  1015. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('685', '98', '1', '1', '1', '男', null, null, null);
  1016. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('686', '98', '1', '2', '12', '韩版', null, null, null);
  1017. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('687', '98', '1', '3', '15', 'B类', null, null, null);
  1018. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('688', '98', '1', '4', '18', '夏季', null, null, null);
  1019. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('689', '98', '1', '5', '109', '棉', null, null, null);
  1020. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('690', '98', '1', '11', '63', '短裤', null, null, null);
  1021. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('691', '98', '1', '13', '72', '中腰', null, null, null);
  1022. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('692', '98', '1', '17', '92', '柔软处理,酵素洗', null, null, null);
  1023. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('693', '98', '1', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1024. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('694', '98', '1', '25', '97', '休闲裤', null, null, null);
  1025. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('695', '98', '1', '26', '100', '棉', null, null, null);
  1026. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('696', '98', '1', '27', '102', '95(%)', null, null, null);
  1027. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('697', '99', '3', '1', '1', '男', null, null, null);
  1028. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('698', '99', '3', '2', '12', '韩版', null, null, null);
  1029. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('699', '99', '3', '3', '15', 'B类', null, null, null);
  1030. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('700', '99', '3', '4', '18', '夏季', null, null, null);
  1031. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('701', '99', '3', '5', '109', '棉', null, null, null);
  1032. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('702', '99', '3', '6', '117', '无袖', null, null, null);
  1033. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('703', '99', '3', '7', '38', '卡通动漫', null, null, null);
  1034. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('704', '99', '3', '8', '42', '圆领', null, null, null);
  1035. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('705', '99', '3', '17', '92', '柔软处理,酵素洗', null, null, null);
  1036. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('706', '99', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1037. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('707', '99', '3', '26', '100', '棉', null, null, null);
  1038. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('708', '99', '3', '27', '101', '100(%)', null, null, null);
  1039. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('709', '100', '3', '1', '1', '男', null, null, null);
  1040. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('710', '100', '3', '2', '12', '韩版', null, null, null);
  1041. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('711', '100', '3', '3', '15', 'B类', null, null, null);
  1042. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('712', '100', '3', '4', '18', '夏季', null, null, null);
  1043. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('713', '100', '3', '5', '109', '棉', null, null, null);
  1044. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('714', '100', '3', '6', '117', '无袖', null, null, null);
  1045. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('715', '100', '3', '8', '42', '圆领', null, null, null);
  1046. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('716', '100', '3', '17', '92', '柔软处理,酵素洗', null, null, null);
  1047. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('717', '100', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1048. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('718', '100', '3', '26', '100', '棉', null, null, null);
  1049. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('719', '100', '3', '27', '101', '100(%)', null, null, null);
  1050. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('720', '101', '3', '1', '1', '男', null, null, null);
  1051. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('721', '101', '3', '2', '12', '韩版', null, null, null);
  1052. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('722', '101', '3', '3', '15', 'B类', null, null, null);
  1053. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('723', '101', '3', '4', '18', '夏季', null, null, null);
  1054. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('724', '101', '3', '5', '109', '棉', null, null, null);
  1055. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('725', '101', '3', '6', '117', '无袖', null, null, null);
  1056. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('726', '101', '3', '7', '38', '卡通动漫', null, null, null);
  1057. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('727', '101', '3', '8', '42', '圆领', null, null, null);
  1058. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('728', '101', '3', '17', '92', '柔软处理,酵素洗', null, null, null);
  1059. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('729', '101', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1060. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('730', '101', '3', '26', '100', '棉', null, null, null);
  1061. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('731', '101', '3', '27', '101', '100(%)', null, null, null);
  1062. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('732', '102', '3', '1', '1', '男', null, null, null);
  1063. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('733', '102', '3', '2', '12', '韩版', null, null, null);
  1064. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('734', '102', '3', '3', '15', 'B类', null, null, null);
  1065. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('735', '102', '3', '4', '18', '夏季', null, null, null);
  1066. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('736', '102', '3', '5', '109', '棉', null, null, null);
  1067. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('737', '102', '3', '6', '31', '短袖', null, null, null);
  1068. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('738', '102', '3', '7', '93', '字母', null, null, null);
  1069. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('739', '102', '3', '8', '42', '圆领', null, null, null);
  1070. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('740', '102', '3', '17', '92', '柔软处理,酵素洗', null, null, null);
  1071. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('741', '102', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1072. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('742', '102', '3', '26', '100', '棉', null, null, null);
  1073. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('743', '102', '3', '27', '99', '55(%)', null, null, null);
  1074. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('744', '103', '3', '1', '1', '男', null, null, null);
  1075. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('745', '103', '3', '2', '12', '韩版', null, null, null);
  1076. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('746', '103', '3', '3', '15', 'B类', null, null, null);
  1077. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('747', '103', '3', '4', '18', '夏季', null, null, null);
  1078. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('748', '103', '3', '5', '109', '棉', null, null, null);
  1079. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('749', '103', '3', '6', '117', '无袖', null, null, null);
  1080. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('750', '103', '3', '7', '93', '字母', null, null, null);
  1081. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('751', '103', '3', '8', '42', '圆领', null, null, null);
  1082. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('752', '103', '3', '17', '92', '柔软处理,酵素洗', null, null, null);
  1083. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('753', '103', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1084. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('754', '103', '3', '26', '100', '棉', null, null, null);
  1085. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('755', '103', '3', '27', '101', '100(%)', null, null, null);
  1086. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('756', '104', '3', '1', '1', '男', null, null, null);
  1087. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('757', '104', '3', '2', '12', '韩版', null, null, null);
  1088. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('758', '104', '3', '3', '15', 'B类', null, null, null);
  1089. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('759', '104', '3', '4', '18', '夏季', null, null, null);
  1090. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('760', '104', '3', '5', '109', '棉', null, null, null);
  1091. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('761', '104', '3', '6', '31', '短袖', null, null, null);
  1092. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('762', '104', '3', '7', '35', '条纹', null, null, null);
  1093. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('763', '104', '3', '8', '42', '圆领', null, null, null);
  1094. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('764', '104', '3', '17', '92', '柔软处理,酵素洗', null, null, null);
  1095. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('765', '104', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1096. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('766', '104', '3', '26', '100', '棉', null, null, null);
  1097. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('767', '104', '3', '27', '102', '95(%)', null, null, null);
  1098. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('768', '105', '1', '1', '1', '男', null, null, null);
  1099. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('769', '105', '1', '2', '12', '韩版', null, null, null);
  1100. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('770', '105', '1', '3', '15', 'B类', null, null, null);
  1101. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('771', '105', '1', '4', '18', '夏季', null, null, null);
  1102. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('772', '105', '1', '5', '109', '棉', null, null, null);
  1103. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('773', '105', '1', '11', '63', '短裤', null, null, null);
  1104. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('774', '105', '1', '13', '72', '中腰', null, null, null);
  1105. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('775', '105', '1', '17', '92', '柔软处理,酵素洗', null, null, null);
  1106. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('776', '105', '1', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1107. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('777', '105', '1', '25', '97', '休闲裤', null, null, null);
  1108. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('778', '105', '1', '26', '100', '棉', null, null, null);
  1109. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('779', '105', '1', '27', '101', '100(%)', null, null, null);
  1110. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('780', '106', '3', '1', '1', '男', null, null, null);
  1111. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('781', '106', '3', '2', '12', '韩版', null, null, null);
  1112. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('782', '106', '3', '3', '15', 'B类', null, null, null);
  1113. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('783', '106', '3', '4', '18', '夏季', null, null, null);
  1114. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('784', '106', '3', '5', '109', '棉', null, null, null);
  1115. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('785', '106', '3', '6', '31', '短袖', null, null, null);
  1116. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('786', '106', '3', '7', '93', '字母', null, null, null);
  1117. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('787', '106', '3', '8', '42', '圆领', null, null, null);
  1118. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('788', '106', '3', '17', '92', '柔软处理,酵素洗', null, null, null);
  1119. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('789', '106', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1120. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('790', '106', '3', '26', '100', '棉', null, null, null);
  1121. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('791', '106', '3', '27', '101', '100(%)', null, null, null);
  1122. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('792', '107', '3', '1', '1', '男', null, null, null);
  1123. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('793', '107', '3', '2', '12', '韩版', null, null, null);
  1124. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('794', '107', '3', '3', '15', 'B类', null, null, null);
  1125. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('795', '107', '3', '4', '18', '夏季', null, null, null);
  1126. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('796', '107', '3', '5', '109', '棉', null, null, null);
  1127. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('797', '107', '3', '6', '31', '短袖', null, null, null);
  1128. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('798', '107', '3', '7', '38', '卡通动漫', null, null, null);
  1129. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('799', '107', '3', '8', '42', '圆领', null, null, null);
  1130. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('800', '107', '3', '17', '92', '柔软处理,酵素洗', null, null, null);
  1131. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('801', '107', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1132. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('802', '107', '3', '26', '100', '棉', null, null, null);
  1133. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('803', '107', '3', '27', '101', '100(%)', null, null, null);
  1134. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('804', '108', '11', '31', '121', '是', null, null, null);
  1135. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('805', '108', '11', '32', '123', '日本', null, null, null);
  1136. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('806', '108', '11', '33', '124', '有', null, null, null);
  1137. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('807', '108', '11', '34', '0', '新生圩关', null, null, null);
  1138. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('809', '108', '11', '36', '0', '30个/袋', null, null, null);
  1139. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('811', '108', '11', '38', '0', '已清关-中国大陆境内', null, null, null);
  1140. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('812', '109', '8', '1', '3', '中性', null, null, null);
  1141. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('813', '109', '8', '2', '13', '日系', null, null, null);
  1142. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('814', '109', '8', '4', '18', '夏季', null, null, null);
  1143. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('815', '109', '8', '5', '109', '棉', null, null, null);
  1144. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('816', '109', '8', '36', '0', '450g', null, null, null);
  1145. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('817', '110', '11', '31', '121', '是', null, null, null);
  1146. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('818', '110', '11', '32', '126', '韩国', null, null, null);
  1147. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('819', '110', '11', '33', '124', '有', null, null, null);
  1148. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('820', '110', '11', '34', '0', '威海海关', null, null, null);
  1149. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('821', '110', '11', '35', '0', '固态', null, null, null);
  1150. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('822', '110', '11', '36', '0', '正常规格', null, null, null);
  1151. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('823', '110', '11', '37', '0', '420420151047183081', null, null, null);
  1152. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('824', '110', '11', '38', '0', '已清关-中国大陆境内', null, null, null);
  1153. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('825', '110', '11', '39', '0', '通用', null, null, null);
  1154. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('826', '110', '11', '40', '0', 'PA+++', null, null, null);
  1155. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('827', '110', '11', '41', '0', '三年', null, null, null);
  1156. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('828', '110', '11', '42', '0', 'SPF45', null, null, null);
  1157. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('829', '110', '11', '43', '0', '60(g/ml)', null, null, null);
  1158. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('830', '110', '11', '44', '0', '防晒', null, null, null);
  1159. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('831', '110', '11', '45', '0', '面部/全身皆可', null, null, null);
  1160. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('832', '111', '11', '32', '128', '中国', null, null, null);
  1161. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('833', '111', '11', '36', '0', '产品净重0.11 kg', null, null, null);
  1162. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('834', '111', '11', '44', '0', '防晒', null, null, null);
  1163. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('839', '111', '11', '47', '0', '空顶帽', null, null, null);
  1164. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('840', '112', '11', '32', '128', '中国', null, null, null);
  1165. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('841', '112', '11', '36', '0', '48-52cm', null, null, null);
  1166. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('842', '112', '11', '44', '0', '防晒', null, null, null);
  1167. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('843', '112', '11', '1', '3', '中性', null, null, null);
  1168. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('844', '112', '11', '2', '8', '百搭', null, null, null);
  1169. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('845', '112', '11', '7', '93', '字母', null, null, null);
  1170. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('846', '112', '11', '46', '0', '草编', null, null, null);
  1171. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('847', '112', '11', '47', '0', '空顶帽', null, null, null);
  1172. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('848', '113', '11', '32', '129', '美国', null, null, null);
  1173. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('849', '113', '11', '36', '0', '237ml', null, null, null);
  1174. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('850', '113', '11', '44', '0', '防晒', null, null, null);
  1175. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('851', '113', '11', '31', '121', '是', null, null, null);
  1176. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('853', '113', '11', '34', '0', '深圳海关', null, null, null);
  1177. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('854', '113', '11', '38', '0', '已清关-中国大陆境内', null, null, null);
  1178. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('855', '113', '11', '39', '0', '多种肤质', null, null, null);
  1179. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('859', '114', '11', '36', '0', '4*3.5cm', null, null, null);
  1180. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('860', '114', '11', '44', '0', '防蚊', null, null, null);
  1181. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('861', '114', '11', '31', '122', '否', null, null, null);
  1182. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('862', '114', '11', '39', '0', '多种肤质', null, null, null);
  1183. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('863', '114', '11', '4', '18', '夏季', null, null, null);
  1184. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('864', '114', '11', '35', '0', '固态', null, null, null);
  1185. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('865', '115', '8', '2', '131', '欧式', null, null, null);
  1186. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('866', '115', '8', '5', '130', '帆布', null, null, null);
  1187. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('867', '115', '8', '36', '0', ' 40*50cm', null, null, null);
  1188. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('868', '116', '8', '2', '12', '韩版', null, null, null);
  1189. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('869', '116', '8', '5', '21', '棉麻', null, null, null);
  1190. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('870', '116', '8', '36', '0', '14*12.5cm', null, null, null);
  1191. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('871', '117', '11', '36', '0', '50ml', null, null, null);
  1192. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('872', '117', '11', '44', '0', '驱蚊止痒', null, null, null);
  1193. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('873', '117', '11', '31', '121', '是', null, null, null);
  1194. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('874', '117', '11', '39', '0', '多种肤质', null, null, null);
  1195. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('875', '117', '11', '4', '18', '夏季', null, null, null);
  1196. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('876', '117', '11', '35', '0', '液态', null, null, null);
  1197. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('877', '117', '11', '32', '126', '韩国', null, null, null);
  1198. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('878', '117', '11', '34', '0', '青岛海关', null, null, null);
  1199. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('879', '117', '11', '37', '0', '420920151097014328', null, null, null);
  1200. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('880', '117', '11', '38', '0', '已清关-中国大陆境内', null, null, null);
  1201. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('881', '117', '11', '47', '0', '蚊香/蚊片/蚊香液', null, null, null);
  1202. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('882', '118', '3', '1', '3', '中性', null, null, null);
  1203. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('883', '118', '3', '2', '12', '韩版', null, null, null);
  1204. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('884', '118', '3', '3', '14', 'A类', null, null, null);
  1205. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('885', '118', '3', '4', '18', '夏季', null, null, null);
  1206. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('886', '118', '3', '5', '109', '棉', null, null, null);
  1207. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('887', '118', '3', '6', '31', '短袖', null, null, null);
  1208. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('888', '118', '3', '7', '40', '纯色', null, null, null);
  1209. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('889', '118', '3', '8', '42', '圆领', null, null, null);
  1210. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('890', '118', '3', '17', '85', '柔软处理', null, null, null);
  1211. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('891', '118', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1212. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('892', '118', '3', '26', '100', '棉', null, null, null);
  1213. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('893', '118', '3', '27', '102', '95(%)', null, null, null);
  1214. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('894', '118', '3', '20', '132', '山东', null, null, null);
  1215. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('947', '123', '3', '1', '3', '中性', null, null, null);
  1216. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('948', '123', '3', '2', '12', '韩版', null, null, null);
  1217. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('949', '123', '3', '3', '15', 'B类', null, null, null);
  1218. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('950', '123', '3', '4', '18', '夏季', null, null, null);
  1219. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('951', '123', '3', '5', '109', '棉', null, null, null);
  1220. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('952', '123', '3', '6', '117', '无袖', null, null, null);
  1221. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('953', '123', '3', '7', '40', '纯色', null, null, null);
  1222. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('954', '123', '3', '8', '42', '圆领', null, null, null);
  1223. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('955', '123', '3', '17', '85', '柔软处理', null, null, null);
  1224. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('956', '123', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1225. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('957', '123', '3', '26', '100', '棉', null, null, null);
  1226. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('958', '123', '3', '27', '102', '95(%)', null, null, null);
  1227. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('959', '123', '3', '20', '132', '山东', null, null, null);
  1228. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('960', '124', '3', '1', '2', '女', null, null, null);
  1229. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('961', '124', '3', '3', '15', 'B类', null, null, null);
  1230. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('962', '124', '3', '4', '18', '夏季', null, null, null);
  1231. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('963', '124', '3', '6', '31', '短袖', null, null, null);
  1232. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('964', '124', '3', '7', '40', '纯色', null, null, null);
  1233. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('965', '124', '3', '8', '42', '圆领', null, null, null);
  1234. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('966', '124', '3', '17', '85', '柔软处理', null, null, null);
  1235. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('967', '124', '3', '27', '102', '95(%)', null, null, null);
  1236. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('968', '124', '3', '20', '132', '山东', null, null, null);
  1237. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('969', '125', '3', '1', '2', '女', null, null, null);
  1238. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('970', '125', '3', '2', '133', 'OL通勤', null, null, null);
  1239. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('971', '125', '3', '3', '15', 'B类', null, null, null);
  1240. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('972', '125', '3', '4', '18', '夏季', null, null, null);
  1241. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('973', '125', '3', '6', '31', '短袖', null, null, null);
  1242. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('974', '125', '3', '7', '40', '纯色', null, null, null);
  1243. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('975', '125', '3', '8', '42', '圆领', null, null, null);
  1244. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('976', '125', '3', '17', '85', '柔软处理', null, null, null);
  1245. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('977', '125', '3', '27', '102', '95(%)', null, null, null);
  1246. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('978', '125', '3', '20', '132', '山东', null, null, null);
  1247. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('979', '124', '3', '2', '133', 'OL通勤', null, null, null);
  1248. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('980', '124', '3', '2', '133', 'OL通勤', null, null, null);
  1249. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('981', '125', '3', '5', '134', '粘纤', null, null, null);
  1250. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('982', '125', '3', '18', '136', '不限', null, null, null);
  1251. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('983', '125', '3', '26', '135', '粘纤', null, null, null);
  1252. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('984', '124', '3', '5', '134', '粘纤', null, null, null);
  1253. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('985', '124', '3', '18', '136', '不限', null, null, null);
  1254. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('986', '124', '3', '26', '135', '粘纤', null, null, null);
  1255. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('987', '126', '3', '1', '1', '男', null, null, null);
  1256. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('988', '126', '3', '2', '5', '休闲', null, null, null);
  1257. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('989', '126', '3', '3', '15', 'B类', null, null, null);
  1258. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('990', '126', '3', '4', '18', '夏季', null, null, null);
  1259. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('991', '126', '3', '6', '31', '短袖', null, null, null);
  1260. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('992', '126', '3', '7', '40', '纯色', null, null, null);
  1261. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('993', '126', '3', '8', '45', 'V字领', null, null, null);
  1262. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('994', '126', '3', '17', '85', '柔软处理', null, null, null);
  1263. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('995', '126', '3', '18', '136', '不限', null, null, null);
  1264. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('996', '126', '3', '27', '139', '93.7(%)', null, null, null);
  1265. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('997', '126', '3', '20', '132', '山东', null, null, null);
  1266. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('998', '126', '3', '5', '137', '莫代尔', null, null, null);
  1267. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('999', '126', '3', '26', '138', '莫代尔', null, null, null);
  1268. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1000', '127', '3', '1', '1', '男', null, null, null);
  1269. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1001', '127', '3', '2', '5', '休闲', null, null, null);
  1270. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1002', '127', '3', '3', '15', 'B类', null, null, null);
  1271. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1003', '127', '3', '4', '18', '夏季', null, null, null);
  1272. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1004', '127', '3', '5', '137', '莫代尔', null, null, null);
  1273. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1005', '127', '3', '6', '117', '无袖', null, null, null);
  1274. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1006', '127', '3', '7', '40', '纯色', null, null, null);
  1275. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1007', '127', '3', '8', '42', '圆领', null, null, null);
  1276. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1008', '127', '3', '17', '85', '柔软处理', null, null, null);
  1277. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1009', '127', '3', '18', '136', '不限', null, null, null);
  1278. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1010', '127', '3', '26', '138', '莫代尔', null, null, null);
  1279. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1011', '127', '3', '27', '139', '93.7(%)', null, null, null);
  1280. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1012', '127', '3', '20', '132', '山东', null, null, null);
  1281. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1037', '130', '3', '1', '1', '男', null, null, null);
  1282. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1038', '130', '3', '2', '5', '休闲', null, null, null);
  1283. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1039', '130', '3', '3', '15', 'B类', null, null, null);
  1284. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1040', '130', '3', '4', '18', '夏季', null, null, null);
  1285. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1041', '130', '3', '5', '137', '莫代尔', null, null, null);
  1286. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1042', '130', '3', '6', '117', '无袖', null, null, null);
  1287. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1043', '130', '3', '7', '40', '纯色', null, null, null);
  1288. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1044', '130', '3', '8', '42', '圆领', null, null, null);
  1289. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1045', '130', '3', '17', '85', '柔软处理', null, null, null);
  1290. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1046', '130', '3', '26', '138', '莫代尔', null, null, null);
  1291. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1047', '130', '3', '27', '139', '93.7(%)', null, null, null);
  1292. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1048', '130', '3', '20', '132', '山东', null, null, null);
  1293. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1049', '131', '3', '1', '1', '男', null, null, null);
  1294. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1050', '131', '3', '2', '5', '休闲', null, null, null);
  1295. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1051', '131', '3', '3', '15', 'B类', null, null, null);
  1296. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1052', '131', '3', '4', '18', '夏季', null, null, null);
  1297. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1053', '131', '3', '5', '137', '莫代尔', null, null, null);
  1298. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1054', '131', '3', '6', '31', '短袖', null, null, null);
  1299. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1055', '131', '3', '7', '40', '纯色', null, null, null);
  1300. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1056', '131', '3', '8', '45', 'V字领', null, null, null);
  1301. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1057', '131', '3', '17', '85', '柔软处理', null, null, null);
  1302. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1058', '131', '3', '26', '138', '莫代尔', null, null, null);
  1303. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1059', '131', '3', '27', '139', '93.7(%)', null, null, null);
  1304. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1060', '131', '3', '20', '132', '山东', null, null, null);
  1305. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1061', '132', '3', '1', '2', '女', null, null, null);
  1306. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1062', '132', '3', '2', '133', 'OL通勤', null, null, null);
  1307. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1063', '132', '3', '3', '15', 'B类', null, null, null);
  1308. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1064', '132', '3', '4', '18', '夏季', null, null, null);
  1309. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1065', '132', '3', '5', '134', '粘纤', null, null, null);
  1310. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1066', '132', '3', '6', '117', '无袖', null, null, null);
  1311. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1067', '132', '3', '7', '40', '纯色', null, null, null);
  1312. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1068', '132', '3', '8', '42', '圆领', null, null, null);
  1313. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1069', '132', '3', '17', '85', '柔软处理', null, null, null);
  1314. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1070', '132', '3', '26', '135', '粘纤', null, null, null);
  1315. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1071', '132', '3', '27', '102', '95(%)', null, null, null);
  1316. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1072', '132', '3', '20', '132', '山东', null, null, null);
  1317. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1073', '133', '3', '1', '2', '女', null, null, null);
  1318. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1074', '133', '3', '2', '133', 'OL通勤', null, null, null);
  1319. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1075', '133', '3', '3', '15', 'B类', null, null, null);
  1320. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1076', '133', '3', '4', '18', '夏季', null, null, null);
  1321. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1077', '133', '3', '5', '134', '粘纤', null, null, null);
  1322. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1078', '133', '3', '6', '31', '短袖', null, null, null);
  1323. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1079', '133', '3', '7', '40', '纯色', null, null, null);
  1324. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1080', '133', '3', '8', '42', '圆领', null, null, null);
  1325. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1081', '133', '3', '17', '85', '柔软处理', null, null, null);
  1326. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1082', '133', '3', '26', '135', '粘纤', null, null, null);
  1327. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1083', '133', '3', '27', '102', '95(%)', null, null, null);
  1328. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1084', '133', '3', '20', '132', '山东', null, null, null);
  1329. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1085', '134', '3', '1', '3', '中性', null, null, null);
  1330. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1086', '134', '3', '2', '12', '韩版', null, null, null);
  1331. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1087', '134', '3', '3', '15', 'B类', null, null, null);
  1332. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1088', '134', '3', '4', '17', '春秋', null, null, null);
  1333. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1089', '134', '3', '5', '21', '棉麻', null, null, null);
  1334. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1090', '134', '3', '6', '34', '五分袖', null, null, null);
  1335. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1091', '134', '3', '7', '40', '纯色', null, null, null);
  1336. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1092', '134', '3', '8', '42', '圆领', null, null, null);
  1337. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1093', '134', '3', '17', '85', '柔软处理', null, null, null);
  1338. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1094', '134', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1339. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1095', '134', '3', '26', '100', '棉', null, null, null);
  1340. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1096', '135', '1', '1', '3', '中性', null, null, null);
  1341. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1097', '135', '1', '2', '12', '韩版', null, null, null);
  1342. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1098', '135', '1', '3', '15', 'B类', null, null, null);
  1343. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1099', '135', '1', '4', '17', '春秋', null, null, null);
  1344. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1100', '135', '1', '5', '109', '棉', null, null, null);
  1345. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1101', '135', '1', '11', '66', '九分裤', null, null, null);
  1346. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1102', '135', '1', '13', '72', '中腰', null, null, null);
  1347. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1103', '135', '1', '17', '106', '酵素洗', null, null, null);
  1348. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1104', '135', '1', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1349. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1105', '135', '1', '25', '97', '休闲裤', null, null, null);
  1350. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1106', '135', '1', '26', '100', '棉', null, null, null);
  1351. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1107', '136', '1', '1', '3', '中性', null, null, null);
  1352. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1108', '136', '1', '2', '12', '韩版', null, null, null);
  1353. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1109', '136', '1', '3', '15', 'B类', null, null, null);
  1354. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1110', '136', '1', '4', '17', '春秋', null, null, null);
  1355. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1111', '136', '1', '5', '21', '棉麻', null, null, null);
  1356. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1112', '136', '1', '11', '62', '长裤', null, null, null);
  1357. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1113', '136', '1', '17', '92', '柔软处理,酵素洗', null, null, null);
  1358. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1114', '136', '1', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1359. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1115', '136', '1', '25', '97', '休闲裤', null, null, null);
  1360. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1116', '136', '1', '26', '100', '棉', null, null, null);
  1361. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1117', '137', '3', '1', '2', '女', null, null, null);
  1362. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1118', '137', '3', '2', '12', '韩版', null, null, null);
  1363. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1119', '137', '3', '3', '15', 'B类', null, null, null);
  1364. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1120', '137', '3', '4', '17', '春秋', null, null, null);
  1365. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1121', '137', '3', '5', '21', '棉麻', null, null, null);
  1366. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1122', '137', '3', '6', '32', '长袖', null, null, null);
  1367. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1123', '137', '3', '7', '35', '条纹', null, null, null);
  1368. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1124', '137', '3', '8', '42', '圆领', null, null, null);
  1369. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1125', '137', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1370. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1126', '137', '3', '26', '100', '棉', null, null, null);
  1371. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1127', '138', '3', '1', '3', '中性', null, null, null);
  1372. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1128', '138', '3', '2', '12', '韩版', null, null, null);
  1373. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1129', '138', '3', '3', '15', 'B类', null, null, null);
  1374. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1130', '138', '3', '4', '17', '春秋', null, null, null);
  1375. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1131', '138', '3', '5', '113', '竹节棉', null, null, null);
  1376. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1132', '138', '3', '6', '32', '长袖', null, null, null);
  1377. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1133', '138', '3', '7', '40', '纯色', null, null, null);
  1378. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1134', '138', '3', '8', '42', '圆领', null, null, null);
  1379. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1135', '138', '3', '17', '85', '柔软处理', null, null, null);
  1380. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1136', '138', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1381. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1137', '138', '3', '26', '100', '棉', null, null, null);
  1382. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1138', '139', '3', '1', '3', '中性', null, null, null);
  1383. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1139', '139', '3', '2', '12', '韩版', null, null, null);
  1384. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1140', '139', '3', '3', '15', 'B类', null, null, null);
  1385. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1141', '139', '3', '4', '17', '春秋', null, null, null);
  1386. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1142', '139', '3', '5', '109', '棉', null, null, null);
  1387. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1143', '139', '3', '6', '32', '长袖', null, null, null);
  1388. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1144', '139', '3', '7', '36', '格子', null, null, null);
  1389. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1145', '139', '3', '17', '85', '柔软处理', null, null, null);
  1390. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1146', '139', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1391. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1147', '139', '3', '26', '100', '棉', null, null, null);
  1392. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1148', '140', '1', '1', '3', '中性', null, null, null);
  1393. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1149', '140', '1', '2', '12', '韩版', null, null, null);
  1394. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1150', '140', '1', '3', '15', 'B类', null, null, null);
  1395. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1151', '140', '1', '4', '17', '春秋', null, null, null);
  1396. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1152', '140', '1', '5', '109', '棉', null, null, null);
  1397. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1153', '140', '1', '11', '62', '长裤', null, null, null);
  1398. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1154', '140', '1', '17', '85', '柔软处理', null, null, null);
  1399. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1155', '140', '1', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1400. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1156', '140', '1', '25', '97', '休闲裤', null, null, null);
  1401. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1157', '140', '1', '26', '100', '棉', null, null, null);
  1402. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1158', '141', '1', '1', '3', '中性', null, null, null);
  1403. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1159', '141', '1', '2', '12', '韩版', null, null, null);
  1404. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1160', '141', '1', '3', '15', 'B类', null, null, null);
  1405. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1161', '141', '1', '4', '17', '春秋', null, null, null);
  1406. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1162', '141', '1', '5', '24', '亚麻', null, null, null);
  1407. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1163', '141', '1', '11', '62', '长裤', null, null, null);
  1408. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1164', '141', '1', '17', '92', '柔软处理,酵素洗', null, null, null);
  1409. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1165', '141', '1', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1410. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1166', '141', '1', '25', '97', '休闲裤', null, null, null);
  1411. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1167', '142', '3', '1', '3', '中性', null, null, null);
  1412. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1168', '142', '3', '2', '12', '韩版', null, null, null);
  1413. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1169', '142', '3', '3', '15', 'B类', null, null, null);
  1414. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1170', '142', '3', '4', '17', '春秋', null, null, null);
  1415. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1171', '142', '3', '5', '109', '棉', null, null, null);
  1416. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1172', '142', '3', '6', '32', '长袖', null, null, null);
  1417. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1173', '142', '3', '7', '37', '圆点', null, null, null);
  1418. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1174', '142', '3', '8', '42', '圆领', null, null, null);
  1419. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1175', '142', '3', '17', '85', '柔软处理', null, null, null);
  1420. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1176', '142', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1421. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1177', '142', '3', '26', '100', '棉', null, null, null);
  1422. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1178', '143', '3', '1', '3', '中性', null, null, null);
  1423. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1179', '143', '3', '2', '12', '韩版', null, null, null);
  1424. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1180', '143', '3', '3', '15', 'B类', null, null, null);
  1425. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1181', '143', '3', '4', '17', '春秋', null, null, null);
  1426. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1182', '143', '3', '5', '109', '棉', null, null, null);
  1427. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1183', '143', '3', '6', '31', '短袖', null, null, null);
  1428. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1184', '143', '3', '7', '40', '纯色', null, null, null);
  1429. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1185', '143', '3', '17', '85', '柔软处理', null, null, null);
  1430. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1186', '143', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1431. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1187', '143', '3', '26', '100', '棉', null, null, null);
  1432. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1188', '143', '3', '27', '101', '100(%)', null, null, null);
  1433. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1189', '144', '1', '1', '3', '中性', null, null, null);
  1434. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1190', '144', '1', '2', '12', '韩版', null, null, null);
  1435. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1191', '144', '1', '3', '15', 'B类', null, null, null);
  1436. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1192', '144', '1', '4', '17', '春秋', null, null, null);
  1437. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1193', '144', '1', '5', '109', '棉', null, null, null);
  1438. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1194', '144', '1', '11', '66', '九分裤', null, null, null);
  1439. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1195', '144', '1', '17', '85', '柔软处理', null, null, null);
  1440. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1196', '144', '1', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1441. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1197', '144', '1', '25', '97', '休闲裤', null, null, null);
  1442. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1198', '144', '1', '26', '100', '棉', null, null, null);
  1443. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1199', '145', '1', '1', '3', '中性', null, null, null);
  1444. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1200', '145', '1', '2', '12', '韩版', null, null, null);
  1445. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1201', '145', '1', '4', '17', '春秋', null, null, null);
  1446. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1202', '145', '1', '5', '109', '棉', null, null, null);
  1447. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1203', '145', '1', '11', '66', '九分裤', null, null, null);
  1448. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1204', '145', '1', '17', '106', '酵素洗', null, null, null);
  1449. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1205', '145', '1', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1450. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1206', '145', '1', '26', '100', '棉', null, null, null);
  1451. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1207', '146', '3', '1', '3', '中性', null, null, null);
  1452. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1208', '146', '3', '2', '12', '韩版', null, null, null);
  1453. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1209', '146', '3', '3', '15', 'B类', null, null, null);
  1454. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1210', '146', '3', '4', '17', '春秋', null, null, null);
  1455. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1211', '146', '3', '5', '109', '棉', null, null, null);
  1456. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1212', '146', '3', '6', '32', '长袖', null, null, null);
  1457. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1213', '146', '3', '7', '40', '纯色', null, null, null);
  1458. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1214', '146', '3', '17', '85', '柔软处理', null, null, null);
  1459. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1215', '146', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1460. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1216', '146', '3', '26', '100', '棉', null, null, null);
  1461. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1217', '147', '1', '1', '3', '中性', null, null, null);
  1462. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1218', '147', '1', '2', '12', '韩版', null, null, null);
  1463. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1219', '147', '1', '3', '15', 'B类', null, null, null);
  1464. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1220', '147', '1', '4', '17', '春秋', null, null, null);
  1465. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1221', '147', '1', '5', '109', '棉', null, null, null);
  1466. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1222', '147', '1', '11', '65', '七分裤', null, null, null);
  1467. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1223', '147', '1', '17', '85', '柔软处理', null, null, null);
  1468. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1224', '147', '1', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1469. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1225', '147', '1', '25', '97', '休闲裤', null, null, null);
  1470. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1226', '147', '1', '26', '100', '棉', null, null, null);
  1471. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1227', '148', '1', '1', '3', '中性', null, null, null);
  1472. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1228', '148', '1', '2', '12', '韩版', null, null, null);
  1473. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1229', '148', '1', '3', '15', 'B类', null, null, null);
  1474. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1230', '148', '1', '4', '17', '春秋', null, null, null);
  1475. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1231', '148', '1', '5', '109', '棉', null, null, null);
  1476. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1232', '148', '1', '11', '66', '九分裤', null, null, null);
  1477. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1233', '148', '1', '17', '85', '柔软处理', null, null, null);
  1478. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1234', '148', '1', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1479. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1235', '148', '1', '25', '97', '休闲裤', null, null, null);
  1480. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1236', '148', '1', '26', '100', '棉', null, null, null);
  1481. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1237', '149', '3', '1', '3', '中性', null, null, null);
  1482. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1238', '149', '3', '2', '12', '韩版', null, null, null);
  1483. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1239', '149', '3', '3', '15', 'B类', null, null, null);
  1484. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1240', '149', '3', '4', '17', '春秋', null, null, null);
  1485. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1241', '149', '3', '5', '109', '棉', null, null, null);
  1486. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1242', '149', '3', '6', '32', '长袖', null, null, null);
  1487. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1243', '149', '3', '7', '40', '纯色', null, null, null);
  1488. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1244', '149', '3', '8', '42', '圆领', null, null, null);
  1489. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1245', '149', '3', '17', '85', '柔软处理', null, null, null);
  1490. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1246', '149', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1491. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1247', '149', '3', '26', '100', '棉', null, null, null);
  1492. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1248', '150', '1', '1', '3', '中性', null, null, null);
  1493. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1249', '150', '1', '2', '12', '韩版', null, null, null);
  1494. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1250', '150', '1', '3', '15', 'B类', null, null, null);
  1495. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1251', '150', '1', '4', '17', '春秋', null, null, null);
  1496. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1252', '150', '1', '5', '109', '棉', null, null, null);
  1497. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1253', '150', '1', '11', '66', '九分裤', null, null, null);
  1498. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1254', '150', '1', '17', '106', '酵素洗', null, null, null);
  1499. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1255', '150', '1', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1500. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1256', '150', '1', '26', '100', '棉', null, null, null);
  1501. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1257', '151', '3', '1', '3', '中性', null, null, null);
  1502. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1258', '151', '3', '2', '12', '韩版', null, null, null);
  1503. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1259', '151', '3', '3', '15', 'B类', null, null, null);
  1504. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1260', '151', '3', '4', '17', '春秋', null, null, null);
  1505. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1261', '151', '3', '5', '109', '棉', null, null, null);
  1506. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1262', '151', '3', '7', '40', '纯色', null, null, null);
  1507. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1263', '151', '3', '17', '85', '柔软处理', null, null, null);
  1508. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1264', '151', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1509. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1265', '151', '3', '26', '100', '棉', null, null, null);
  1510. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1266', '152', '1', '1', '2', '女', null, null, null);
  1511. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1267', '152', '1', '2', '12', '韩版', null, null, null);
  1512. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1268', '152', '1', '3', '15', 'B类', null, null, null);
  1513. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1269', '152', '1', '4', '17', '春秋', null, null, null);
  1514. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1270', '152', '1', '5', '109', '棉', null, null, null);
  1515. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1271', '152', '1', '11', '62', '长裤', null, null, null);
  1516. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1272', '152', '1', '17', '85', '柔软处理', null, null, null);
  1517. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1273', '152', '1', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1518. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1274', '152', '1', '26', '100', '棉', null, null, null);
  1519. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1275', '153', '3', '1', '3', '中性', null, null, null);
  1520. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1276', '153', '3', '2', '12', '韩版', null, null, null);
  1521. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1277', '153', '3', '3', '15', 'B类', null, null, null);
  1522. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1278', '153', '3', '4', '17', '春秋', null, null, null);
  1523. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1279', '153', '3', '5', '109', '棉', null, null, null);
  1524. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1280', '153', '3', '6', '32', '长袖', null, null, null);
  1525. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1281', '153', '3', '7', '35', '条纹', null, null, null);
  1526. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1282', '153', '3', '17', '85', '柔软处理', null, null, null);
  1527. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1283', '153', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1528. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1284', '153', '3', '26', '100', '棉', null, null, null);
  1529. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1285', '154', '3', '1', '3', '中性', null, null, null);
  1530. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1286', '154', '3', '2', '12', '韩版', null, null, null);
  1531. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1287', '154', '3', '3', '15', 'B类', null, null, null);
  1532. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1288', '154', '3', '4', '17', '春秋', null, null, null);
  1533. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1289', '154', '3', '5', '109', '棉', null, null, null);
  1534. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1290', '154', '3', '7', '40', '纯色', null, null, null);
  1535. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1291', '154', '3', '8', '42', '圆领', null, null, null);
  1536. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1292', '154', '3', '17', '85', '柔软处理', null, null, null);
  1537. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1293', '154', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1538. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1294', '155', '1', '1', '3', '中性', null, null, null);
  1539. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1295', '155', '1', '2', '12', '韩版', null, null, null);
  1540. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1296', '155', '1', '3', '15', 'B类', null, null, null);
  1541. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1297', '155', '1', '4', '17', '春秋', null, null, null);
  1542. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1298', '155', '1', '5', '109', '棉', null, null, null);
  1543. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1299', '155', '1', '11', '66', '九分裤', null, null, null);
  1544. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1300', '155', '1', '17', '85', '柔软处理', null, null, null);
  1545. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1301', '155', '1', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1546. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1302', '155', '1', '25', '97', '休闲裤', null, null, null);
  1547. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1303', '156', '3', '1', '3', '中性', null, null, null);
  1548. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1304', '156', '3', '2', '12', '韩版', null, null, null);
  1549. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1305', '156', '3', '3', '15', 'B类', null, null, null);
  1550. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1306', '156', '3', '4', '17', '春秋', null, null, null);
  1551. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1307', '156', '3', '5', '109', '棉', null, null, null);
  1552. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1308', '156', '3', '6', '32', '长袖', null, null, null);
  1553. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1309', '156', '3', '7', '40', '纯色', null, null, null);
  1554. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1310', '156', '3', '8', '42', '圆领', null, null, null);
  1555. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1311', '156', '3', '17', '85', '柔软处理', null, null, null);
  1556. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1312', '156', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1557. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1313', '157', '1', '1', '3', '中性', null, null, null);
  1558. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1314', '157', '1', '2', '12', '韩版', null, null, null);
  1559. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1315', '157', '1', '3', '15', 'B类', null, null, null);
  1560. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1316', '157', '1', '4', '17', '春秋', null, null, null);
  1561. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1317', '157', '1', '5', '109', '棉', null, null, null);
  1562. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1318', '157', '1', '11', '66', '九分裤', null, null, null);
  1563. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1319', '157', '1', '17', '106', '酵素洗', null, null, null);
  1564. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1320', '157', '1', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1565. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1321', '157', '1', '25', '97', '休闲裤', null, null, null);
  1566. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1322', '157', '1', '26', '100', '棉', null, null, null);
  1567. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1323', '158', '11', '4', '17', '春秋', null, null, null);
  1568. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1324', '159', '12', '1', '3', '中性', null, null, null);
  1569. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1325', '159', '12', '2', '12', '韩版', null, null, null);
  1570. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1326', '159', '12', '4', '17', '春秋', null, null, null);
  1571. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1327', '159', '12', '7', '40', '纯色', null, null, null);
  1572. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1328', '159', '12', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1573. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1329', '160', '12', '1', '3', '中性', null, null, null);
  1574. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1330', '160', '12', '2', '12', '韩版', null, null, null);
  1575. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1331', '160', '12', '4', '17', '春秋', null, null, null);
  1576. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1332', '160', '12', '7', '40', '纯色', null, null, null);
  1577. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1333', '160', '12', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1578. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1334', '161', '12', '1', '3', '中性', null, null, null);
  1579. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1335', '161', '12', '2', '12', '韩版', null, null, null);
  1580. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1336', '161', '12', '4', '17', '春秋', null, null, null);
  1581. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1337', '161', '12', '7', '40', '纯色', null, null, null);
  1582. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1338', '161', '12', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1583. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1339', '162', '12', '1', '3', '中性', null, null, null);
  1584. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1340', '162', '12', '2', '12', '韩版', null, null, null);
  1585. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1341', '162', '12', '4', '17', '春秋', null, null, null);
  1586. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1342', '162', '12', '7', '40', '纯色', null, null, null);
  1587. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1343', '162', '12', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1588. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1344', '163', '1', '1', '3', '中性', null, null, null);
  1589. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1345', '163', '1', '2', '12', '韩版', null, null, null);
  1590. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1346', '163', '1', '3', '15', 'B类', null, null, null);
  1591. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1347', '163', '1', '4', '17', '春秋', null, null, null);
  1592. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1348', '163', '1', '5', '109', '棉', null, null, null);
  1593. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1349', '163', '1', '11', '66', '九分裤', null, null, null);
  1594. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1350', '163', '1', '17', '92', '柔软处理,酵素洗', null, null, null);
  1595. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1351', '163', '1', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1596. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1352', '163', '1', '25', '97', '休闲裤', null, null, null);
  1597. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1353', '163', '1', '26', '100', '棉', null, null, null);
  1598. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1354', '164', '3', '1', '2', '女', null, null, null);
  1599. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1355', '164', '3', '2', '12', '韩版', null, null, null);
  1600. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1356', '164', '3', '3', '15', 'B类', null, null, null);
  1601. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1357', '164', '3', '4', '17', '春秋', null, null, null);
  1602. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1358', '164', '3', '5', '109', '棉', null, null, null);
  1603. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1359', '164', '3', '6', '32', '长袖', null, null, null);
  1604. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1360', '164', '3', '7', '93', '字母', null, null, null);
  1605. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1361', '164', '3', '8', '42', '圆领', null, null, null);
  1606. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1362', '164', '3', '17', '85', '柔软处理', null, null, null);
  1607. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1363', '164', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1608. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1364', '164', '3', '26', '100', '棉', null, null, null);
  1609. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1365', '165', '3', '1', '3', '中性', null, null, null);
  1610. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1366', '165', '3', '2', '12', '韩版', null, null, null);
  1611. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1367', '165', '3', '3', '15', 'B类', null, null, null);
  1612. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1368', '165', '3', '4', '17', '春秋', null, null, null);
  1613. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1369', '165', '3', '5', '109', '棉', null, null, null);
  1614. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1370', '165', '3', '6', '32', '长袖', null, null, null);
  1615. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1371', '165', '3', '7', '36', '格子', null, null, null);
  1616. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1372', '165', '3', '17', '85', '柔软处理', null, null, null);
  1617. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1373', '165', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1618. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1374', '165', '3', '26', '100', '棉', null, null, null);
  1619. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1375', '166', '13', '1', '3', '中性', null, null, null);
  1620. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1376', '166', '13', '2', '5', '休闲', null, null, null);
  1621. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1377', '166', '13', '4', '17', '春秋', null, null, null);
  1622. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1378', '166', '13', '7', '40', '纯色', null, null, null);
  1623. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1379', '166', '13', '12', '145', '普通厚', null, null, null);
  1624. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1380', '166', '13', '18', '140', '幼儿装(1-3岁),小童装(4-6岁)', null, null, null);
  1625. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1381', '166', '13', '48', '141', '橡胶', null, null, null);
  1626. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1382', '166', '13', '49', '142', '低帮', null, null, null);
  1627. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1383', '166', '13', '50', '143', '低帮', null, null, null);
  1628. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1384', '166', '13', '51', '144', '帆布', null, null, null);
  1629. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1385', '166', '13', '52', '146', '通用', null, null, null);
  1630. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1386', '166', '13', '53', '147', '透气,耐磨,防滑', null, null, null);
  1631. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1387', '166', '13', '54', '148', '车缝线', null, null, null);
  1632. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1388', '166', '13', '55', '149', '注塑鞋', null, null, null);
  1633. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1389', '166', '13', '56', '150', '棉质', null, null, null);
  1634. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1390', '167', '13', '1', '3', '中性', null, null, null);
  1635. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1391', '167', '13', '2', '5', '休闲', null, null, null);
  1636. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1392', '167', '13', '4', '17', '春秋', null, null, null);
  1637. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1393', '167', '13', '7', '40', '纯色', null, null, null);
  1638. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1394', '167', '13', '12', '145', '普通厚', null, null, null);
  1639. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1395', '167', '13', '18', '140', '幼儿装(1-3岁),小童装(4-6岁)', null, null, null);
  1640. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1396', '167', '13', '48', '141', '橡胶', null, null, null);
  1641. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1397', '167', '13', '49', '142', '低帮', null, null, null);
  1642. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1398', '167', '13', '50', '143', '低帮', null, null, null);
  1643. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1399', '167', '13', '51', '144', '帆布', null, null, null);
  1644. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1400', '167', '13', '52', '146', '通用', null, null, null);
  1645. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1401', '167', '13', '53', '147', '透气,耐磨,防滑', null, null, null);
  1646. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1402', '167', '13', '54', '148', '车缝线', null, null, null);
  1647. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1403', '167', '13', '55', '149', '注塑鞋', null, null, null);
  1648. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1404', '167', '13', '56', '150', '棉质', null, null, null);
  1649. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1405', '168', '2', '2', '12', '韩版', null, null, null);
  1650. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1406', '168', '2', '4', '19', '冬季', null, null, null);
  1651. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1407', '168', '2', '5', '109', '棉', null, null, null);
  1652. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1408', '168', '2', '7', '40', '纯色', null, null, null);
  1653. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1409', '168', '2', '9', '48', '吊带裙/背心裙', null, null, null);
  1654. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1410', '168', '2', '10', '59', 'A字裙', null, null, null);
  1655. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1411', '168', '2', '17', '104', '褶皱', null, null, null);
  1656. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1412', '168', '2', '26', '100', '棉', null, null, null);
  1657. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1413', '168', '2', '27', '102', '95(%)', null, null, null);
  1658. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1414', '169', '13', '1', '3', '中性', null, null, null);
  1659. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1415', '169', '13', '2', '12', '韩版', null, null, null);
  1660. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1416', '169', '13', '4', '17', '春秋', null, null, null);
  1661. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1417', '169', '13', '7', '40', '纯色', null, null, null);
  1662. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1418', '169', '13', '12', '145', '普通厚', null, null, null);
  1663. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1419', '169', '13', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1664. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1420', '170', '3', '1', '3', '中性', null, null, null);
  1665. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1421', '170', '3', '2', '12', '韩版', null, null, null);
  1666. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1422', '170', '3', '3', '15', 'B类', null, null, null);
  1667. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1423', '170', '3', '4', '17', '春秋', null, null, null);
  1668. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1424', '170', '3', '5', '109', '棉', null, null, null);
  1669. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1425', '170', '3', '6', '32', '长袖', null, null, null);
  1670. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1426', '170', '3', '7', '40', '纯色', null, null, null);
  1671. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1427', '170', '3', '8', '42', '圆领', null, null, null);
  1672. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1428', '170', '3', '17', '85', '柔软处理', null, null, null);
  1673. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1429', '170', '3', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1674. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1430', '170', '3', '26', '100', '棉', null, null, null);
  1675. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1431', '171', '1', '1', '3', '中性', null, null, null);
  1676. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1432', '171', '1', '2', '12', '韩版', null, null, null);
  1677. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1433', '171', '1', '3', '14', 'A类', null, null, null);
  1678. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1434', '171', '1', '5', '109', '棉', null, null, null);
  1679. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1435', '171', '1', '11', '63', '短裤', null, null, null);
  1680. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1436', '171', '1', '17', '85', '柔软处理', null, null, null);
  1681. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1437', '171', '1', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1682. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1438', '172', '13', '1', '3', '中性', null, null, null);
  1683. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1439', '172', '13', '2', '12', '韩版', null, null, null);
  1684. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1440', '172', '13', '4', '17', '春秋', null, null, null);
  1685. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1441', '172', '13', '12', '145', '普通厚', null, null, null);
  1686. INSERT INTO `ibrand_goods_attribute_relation` VALUES ('1442', '172', '13', '18', '86', '中小童(3~8岁,100~140cm)', null, null, null);
  1687. -- ----------------------------
  1688. -- Table structure for ibrand_goods_attribute_value
  1689. -- ----------------------------
  1690. DROP TABLE IF EXISTS `ibrand_goods_attribute_value`;
  1691. CREATE TABLE `ibrand_goods_attribute_value` (
  1692. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  1693. `attribute_id` int(10) unsigned NOT NULL,
  1694. `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  1695. `created_at` timestamp NULL DEFAULT NULL,
  1696. `updated_at` timestamp NULL DEFAULT NULL,
  1697. `deleted_at` timestamp NULL DEFAULT NULL,
  1698. PRIMARY KEY (`id`)
  1699. ) ENGINE=InnoDB AUTO_INCREMENT=151 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
  1700. -- ----------------------------
  1701. -- Records of ibrand_goods_attribute_value
  1702. -- ----------------------------
  1703. INSERT INTO `ibrand_goods_attribute_value` VALUES ('1', '1', '男', '2017-05-03 12:24:17', '2017-05-03 12:24:17', null);
  1704. INSERT INTO `ibrand_goods_attribute_value` VALUES ('2', '1', '女', '2017-05-03 12:24:17', '2017-05-03 12:24:17', null);
  1705. INSERT INTO `ibrand_goods_attribute_value` VALUES ('3', '1', '中性', '2017-05-03 12:24:17', '2017-05-03 12:24:17', null);
  1706. INSERT INTO `ibrand_goods_attribute_value` VALUES ('4', '2', '运动', '2017-05-03 12:25:49', '2017-05-03 12:25:49', null);
  1707. INSERT INTO `ibrand_goods_attribute_value` VALUES ('5', '2', '休闲', '2017-05-03 12:25:49', '2017-05-03 12:25:49', null);
  1708. INSERT INTO `ibrand_goods_attribute_value` VALUES ('6', '2', '学院', '2017-05-03 12:25:49', '2017-05-03 12:25:49', null);
  1709. INSERT INTO `ibrand_goods_attribute_value` VALUES ('7', '2', '名族风', '2017-05-03 12:25:49', '2017-05-03 12:25:49', null);
  1710. INSERT INTO `ibrand_goods_attribute_value` VALUES ('8', '2', '百搭', '2017-05-03 12:25:49', '2017-05-03 12:25:49', null);
  1711. INSERT INTO `ibrand_goods_attribute_value` VALUES ('9', '2', '英伦', '2017-05-03 12:25:49', '2017-05-03 12:25:49', null);
  1712. INSERT INTO `ibrand_goods_attribute_value` VALUES ('10', '2', '公主', '2017-05-03 12:25:49', '2017-05-03 12:25:49', null);
  1713. INSERT INTO `ibrand_goods_attribute_value` VALUES ('11', '2', '欧美', '2017-05-03 12:25:49', '2017-05-03 12:25:49', null);
  1714. INSERT INTO `ibrand_goods_attribute_value` VALUES ('12', '2', '韩版', '2017-05-03 12:25:49', '2017-05-03 12:25:49', null);
  1715. INSERT INTO `ibrand_goods_attribute_value` VALUES ('13', '2', '日系', '2017-05-03 12:25:49', '2017-05-03 12:25:49', null);
  1716. INSERT INTO `ibrand_goods_attribute_value` VALUES ('14', '3', 'A类', '2017-05-03 12:28:41', '2017-05-03 12:28:41', null);
  1717. INSERT INTO `ibrand_goods_attribute_value` VALUES ('15', '3', 'B类', '2017-05-03 12:28:41', '2017-05-03 12:28:41', null);
  1718. INSERT INTO `ibrand_goods_attribute_value` VALUES ('16', '3', 'C类', '2017-05-03 12:28:41', '2017-05-03 12:28:41', null);
  1719. INSERT INTO `ibrand_goods_attribute_value` VALUES ('17', '4', '春秋', '2017-05-03 12:29:17', '2017-05-03 12:29:17', null);
  1720. INSERT INTO `ibrand_goods_attribute_value` VALUES ('18', '4', '夏季', '2017-05-03 12:29:17', '2017-05-03 12:29:17', null);
  1721. INSERT INTO `ibrand_goods_attribute_value` VALUES ('19', '4', '冬季', '2017-05-03 12:29:17', '2017-05-03 12:29:17', null);
  1722. INSERT INTO `ibrand_goods_attribute_value` VALUES ('20', '5', '纯棉', '2017-05-03 12:32:45', '2017-05-03 12:32:45', null);
  1723. INSERT INTO `ibrand_goods_attribute_value` VALUES ('21', '5', '棉麻', '2017-05-03 12:32:45', '2017-05-03 12:32:45', null);
  1724. INSERT INTO `ibrand_goods_attribute_value` VALUES ('22', '5', '全棉牛仔布', '2017-05-03 12:32:45', '2017-05-03 12:32:45', null);
  1725. INSERT INTO `ibrand_goods_attribute_value` VALUES ('23', '5', '天然彩棉', '2017-05-03 12:32:45', '2017-05-03 12:32:45', null);
  1726. INSERT INTO `ibrand_goods_attribute_value` VALUES ('24', '5', '亚麻', '2017-05-03 12:32:45', '2017-05-03 12:32:45', null);
  1727. INSERT INTO `ibrand_goods_attribute_value` VALUES ('25', '5', '牛仔布', '2017-05-03 12:32:45', '2017-05-03 12:32:45', null);
  1728. INSERT INTO `ibrand_goods_attribute_value` VALUES ('26', '5', '丝绸', '2017-05-03 12:32:45', '2017-05-03 12:32:45', null);
  1729. INSERT INTO `ibrand_goods_attribute_value` VALUES ('27', '5', '化纤', '2017-05-03 12:32:45', '2017-05-03 12:32:45', null);
  1730. INSERT INTO `ibrand_goods_attribute_value` VALUES ('28', '5', '混纺', '2017-05-03 12:32:45', '2017-05-03 12:32:45', null);
  1731. INSERT INTO `ibrand_goods_attribute_value` VALUES ('29', '5', '雪纺', '2017-05-03 12:32:45', '2017-05-03 12:32:45', null);
  1732. INSERT INTO `ibrand_goods_attribute_value` VALUES ('30', '5', '涤纶', '2017-05-03 12:32:45', '2017-05-03 12:32:45', null);
  1733. INSERT INTO `ibrand_goods_attribute_value` VALUES ('31', '6', '短袖', '2017-05-03 12:33:33', '2017-05-03 12:33:33', null);
  1734. INSERT INTO `ibrand_goods_attribute_value` VALUES ('32', '6', '长袖', '2017-05-03 12:33:33', '2017-05-03 12:33:33', null);
  1735. INSERT INTO `ibrand_goods_attribute_value` VALUES ('33', '6', '七分袖', '2017-05-03 12:33:33', '2017-05-03 12:33:33', null);
  1736. INSERT INTO `ibrand_goods_attribute_value` VALUES ('34', '6', '五分袖', '2017-05-03 12:33:33', '2017-05-03 12:33:33', null);
  1737. INSERT INTO `ibrand_goods_attribute_value` VALUES ('35', '7', '条纹', '2017-05-03 12:34:20', '2017-05-03 12:34:20', null);
  1738. INSERT INTO `ibrand_goods_attribute_value` VALUES ('36', '7', '格子', '2017-05-03 12:34:20', '2017-05-03 12:34:20', null);
  1739. INSERT INTO `ibrand_goods_attribute_value` VALUES ('37', '7', '圆点', '2017-05-03 12:34:20', '2017-05-03 12:34:20', null);
  1740. INSERT INTO `ibrand_goods_attribute_value` VALUES ('38', '7', '卡通动漫', '2017-05-03 12:34:20', '2017-05-03 12:34:20', null);
  1741. INSERT INTO `ibrand_goods_attribute_value` VALUES ('39', '7', '碎花', '2017-05-03 12:34:20', '2017-05-03 12:34:20', null);
  1742. INSERT INTO `ibrand_goods_attribute_value` VALUES ('40', '7', '纯色', '2017-05-03 12:34:20', '2017-05-03 12:34:20', null);
  1743. INSERT INTO `ibrand_goods_attribute_value` VALUES ('41', '7', '其他', '2017-05-03 12:34:20', '2017-05-03 12:34:20', null);
  1744. INSERT INTO `ibrand_goods_attribute_value` VALUES ('42', '8', '圆领', '2017-05-03 12:35:16', '2017-05-03 12:35:16', null);
  1745. INSERT INTO `ibrand_goods_attribute_value` VALUES ('43', '8', '方领', '2017-05-03 12:35:16', '2017-05-03 12:35:16', null);
  1746. INSERT INTO `ibrand_goods_attribute_value` VALUES ('44', '8', '高领', '2017-05-03 12:35:16', '2017-05-03 12:35:16', null);
  1747. INSERT INTO `ibrand_goods_attribute_value` VALUES ('45', '8', 'V字领', '2017-05-03 12:35:16', '2017-05-03 12:35:16', null);
  1748. INSERT INTO `ibrand_goods_attribute_value` VALUES ('46', '8', '一字领', '2017-05-03 12:35:16', '2017-05-03 12:35:16', null);
  1749. INSERT INTO `ibrand_goods_attribute_value` VALUES ('47', '8', '其他', '2017-05-03 12:35:16', '2017-05-03 12:35:16', null);
  1750. INSERT INTO `ibrand_goods_attribute_value` VALUES ('48', '9', '吊带裙/背心裙', '2017-05-03 12:37:51', '2017-05-03 12:37:51', null);
  1751. INSERT INTO `ibrand_goods_attribute_value` VALUES ('49', '9', '短袖', '2017-05-03 12:37:51', '2017-05-03 12:37:51', null);
  1752. INSERT INTO `ibrand_goods_attribute_value` VALUES ('50', '9', '长袖', '2017-05-03 12:37:51', '2017-05-03 12:37:51', null);
  1753. INSERT INTO `ibrand_goods_attribute_value` VALUES ('51', '9', '背带', '2017-05-03 12:37:51', '2017-05-03 12:37:51', null);
  1754. INSERT INTO `ibrand_goods_attribute_value` VALUES ('52', '9', '衬裙', '2017-05-03 12:37:51', '2017-05-03 12:37:51', null);
  1755. INSERT INTO `ibrand_goods_attribute_value` VALUES ('53', '10', '蛋糕裙', '2017-05-03 12:41:33', '2017-05-03 12:41:33', null);
  1756. INSERT INTO `ibrand_goods_attribute_value` VALUES ('54', '10', '百褶裙', '2017-05-03 12:41:33', '2017-05-03 12:41:33', null);
  1757. INSERT INTO `ibrand_goods_attribute_value` VALUES ('55', '10', '西装裙', '2017-05-03 12:41:33', '2017-05-03 12:41:33', null);
  1758. INSERT INTO `ibrand_goods_attribute_value` VALUES ('56', '10', '荷叶边', '2017-05-03 12:41:33', '2017-05-03 12:41:33', null);
  1759. INSERT INTO `ibrand_goods_attribute_value` VALUES ('57', '10', '拼接款', '2017-05-03 12:41:33', '2017-05-03 12:41:33', null);
  1760. INSERT INTO `ibrand_goods_attribute_value` VALUES ('58', '10', '牛仔裙', '2017-05-03 12:41:33', '2017-05-03 12:41:33', null);
  1761. INSERT INTO `ibrand_goods_attribute_value` VALUES ('59', '10', 'A字裙', '2017-05-03 12:41:33', '2017-05-03 12:41:33', null);
  1762. INSERT INTO `ibrand_goods_attribute_value` VALUES ('60', '10', '背带款', '2017-05-03 12:41:33', '2017-05-03 12:41:33', null);
  1763. INSERT INTO `ibrand_goods_attribute_value` VALUES ('61', '10', '公主裙', '2017-05-03 12:41:33', '2017-05-11 14:59:01', null);
  1764. INSERT INTO `ibrand_goods_attribute_value` VALUES ('62', '11', '长裤', '2017-05-03 12:43:47', '2017-05-03 12:43:47', null);
  1765. INSERT INTO `ibrand_goods_attribute_value` VALUES ('63', '11', '短裤', '2017-05-03 12:43:47', '2017-05-03 12:43:47', null);
  1766. INSERT INTO `ibrand_goods_attribute_value` VALUES ('64', '11', '五分裤', '2017-05-03 12:43:47', '2017-05-03 12:43:47', null);
  1767. INSERT INTO `ibrand_goods_attribute_value` VALUES ('65', '11', '七分裤', '2017-05-03 12:43:47', '2017-05-03 12:43:47', null);
  1768. INSERT INTO `ibrand_goods_attribute_value` VALUES ('66', '11', '九分裤', '2017-05-03 12:43:47', '2017-05-03 12:43:47', null);
  1769. INSERT INTO `ibrand_goods_attribute_value` VALUES ('67', '12', '常规', '2017-05-11 11:55:01', '2017-05-11 11:55:01', null);
  1770. INSERT INTO `ibrand_goods_attribute_value` VALUES ('68', '12', '薄款', '2017-05-11 11:55:01', '2017-05-11 11:55:01', null);
  1771. INSERT INTO `ibrand_goods_attribute_value` VALUES ('69', '12', '加厚', '2017-05-11 11:55:01', '2017-05-11 11:55:01', null);
  1772. INSERT INTO `ibrand_goods_attribute_value` VALUES ('70', '12', '加绒', '2017-05-11 11:55:01', '2017-05-11 11:55:01', null);
  1773. INSERT INTO `ibrand_goods_attribute_value` VALUES ('71', '13', '高腰', '2017-05-11 12:09:04', '2017-05-11 12:09:04', null);
  1774. INSERT INTO `ibrand_goods_attribute_value` VALUES ('72', '13', '中腰', '2017-05-11 12:09:04', '2017-05-11 12:09:04', null);
  1775. INSERT INTO `ibrand_goods_attribute_value` VALUES ('73', '13', '低腰', '2017-05-11 12:09:04', '2017-05-11 12:09:04', null);
  1776. INSERT INTO `ibrand_goods_attribute_value` VALUES ('74', '13', '双裤腰', '2017-05-11 12:09:04', '2017-05-11 12:09:04', null);
  1777. INSERT INTO `ibrand_goods_attribute_value` VALUES ('75', '10', '其他', '2017-05-11 14:59:01', '2017-05-11 14:59:01', null);
  1778. INSERT INTO `ibrand_goods_attribute_value` VALUES ('76', '9', '无袖', '2017-05-11 16:06:36', '2017-05-11 16:06:36', null);
  1779. INSERT INTO `ibrand_goods_attribute_value` VALUES ('77', '14', '小型', '2017-09-22 13:15:27', '2017-09-22 13:15:27', null);
  1780. INSERT INTO `ibrand_goods_attribute_value` VALUES ('78', '14', '中型', '2017-09-22 13:15:27', '2017-09-22 13:15:27', null);
  1781. INSERT INTO `ibrand_goods_attribute_value` VALUES ('79', '14', '大型', '2017-09-22 13:15:27', '2017-09-22 13:15:27', null);
  1782. INSERT INTO `ibrand_goods_attribute_value` VALUES ('80', '15', '普通', '2017-09-22 13:15:50', '2017-09-22 13:15:50', null);
  1783. INSERT INTO `ibrand_goods_attribute_value` VALUES ('81', '15', '中等', '2017-09-22 13:15:50', '2017-09-22 13:15:50', null);
  1784. INSERT INTO `ibrand_goods_attribute_value` VALUES ('82', '15', '很强', '2017-09-22 13:15:50', '2017-09-22 13:15:50', null);
  1785. INSERT INTO `ibrand_goods_attribute_value` VALUES ('83', '16', '折叠', '2017-09-22 13:16:06', '2017-09-22 13:16:06', null);
  1786. INSERT INTO `ibrand_goods_attribute_value` VALUES ('84', '16', '长柄', '2017-09-22 13:16:06', '2017-09-22 13:16:06', null);
  1787. INSERT INTO `ibrand_goods_attribute_value` VALUES ('85', '17', '柔软处理', '2018-05-15 09:57:59', '2018-05-15 09:57:59', null);
  1788. INSERT INTO `ibrand_goods_attribute_value` VALUES ('86', '18', '中小童(3~8岁,100~140cm)', '2018-05-15 09:58:40', '2018-05-15 09:58:40', null);
  1789. INSERT INTO `ibrand_goods_attribute_value` VALUES ('87', '19', '不连帽', '2018-05-15 09:59:34', '2018-05-15 09:59:34', null);
  1790. INSERT INTO `ibrand_goods_attribute_value` VALUES ('88', '20', '广州', '2018-05-15 09:59:53', '2018-05-15 09:59:53', null);
  1791. INSERT INTO `ibrand_goods_attribute_value` VALUES ('89', '21', '母女装', '2018-05-15 10:02:05', '2018-05-15 10:02:05', null);
  1792. INSERT INTO `ibrand_goods_attribute_value` VALUES ('90', '22', '母女装', '2018-05-15 10:02:05', '2018-05-15 10:02:05', null);
  1793. INSERT INTO `ibrand_goods_attribute_value` VALUES ('91', '23', '母女装', '2018-05-15 10:02:08', '2018-05-15 10:02:08', null);
  1794. INSERT INTO `ibrand_goods_attribute_value` VALUES ('92', '17', '柔软处理,酵素洗', '2018-05-15 10:02:44', '2018-05-15 10:02:44', null);
  1795. INSERT INTO `ibrand_goods_attribute_value` VALUES ('93', '7', '字母', '2018-05-15 10:03:07', '2018-05-15 15:42:44', null);
  1796. INSERT INTO `ibrand_goods_attribute_value` VALUES ('94', '24', 'T恤', '2018-05-15 10:05:05', '2018-05-15 10:05:05', null);
  1797. INSERT INTO `ibrand_goods_attribute_value` VALUES ('95', '22', '家庭装', '2018-05-15 10:07:50', '2018-05-15 10:07:50', null);
  1798. INSERT INTO `ibrand_goods_attribute_value` VALUES ('96', '12', '普通', '2018-05-15 10:08:46', '2018-05-15 10:08:46', null);
  1799. INSERT INTO `ibrand_goods_attribute_value` VALUES ('97', '25', '休闲裤', '2018-05-15 10:10:35', '2018-05-15 10:10:35', null);
  1800. INSERT INTO `ibrand_goods_attribute_value` VALUES ('98', '26', '苎麻', '2018-05-15 10:11:59', '2018-05-15 10:11:59', null);
  1801. INSERT INTO `ibrand_goods_attribute_value` VALUES ('99', '27', '55(%)', '2018-05-15 10:12:35', '2018-05-15 10:12:35', null);
  1802. INSERT INTO `ibrand_goods_attribute_value` VALUES ('100', '26', '棉', '2018-05-15 10:13:25', '2018-05-15 10:13:25', null);
  1803. INSERT INTO `ibrand_goods_attribute_value` VALUES ('101', '27', '100(%)', '2018-05-15 10:13:41', '2018-05-15 10:13:41', null);
  1804. INSERT INTO `ibrand_goods_attribute_value` VALUES ('102', '27', '95(%)', '2018-05-15 10:17:01', '2018-05-15 10:17:01', null);
  1805. INSERT INTO `ibrand_goods_attribute_value` VALUES ('103', '25', '裙裤', '2018-05-15 10:17:45', '2018-05-15 10:17:45', null);
  1806. INSERT INTO `ibrand_goods_attribute_value` VALUES ('104', '17', '褶皱', '2018-05-15 10:20:48', '2018-05-15 10:20:48', null);
  1807. INSERT INTO `ibrand_goods_attribute_value` VALUES ('106', '17', '酵素洗', '2018-05-15 10:21:14', '2018-05-15 10:21:14', null);
  1808. INSERT INTO `ibrand_goods_attribute_value` VALUES ('107', '28', '裤套装', '2018-05-15 10:28:33', '2018-05-15 10:28:33', null);
  1809. INSERT INTO `ibrand_goods_attribute_value` VALUES ('108', '29', '两件套', '2018-05-15 10:28:54', '2018-05-15 10:28:54', null);
  1810. INSERT INTO `ibrand_goods_attribute_value` VALUES ('109', '5', '棉', '2018-05-15 15:40:01', '2018-05-15 15:40:01', null);
  1811. INSERT INTO `ibrand_goods_attribute_value` VALUES ('110', '5', '苎麻', '2018-05-15 15:40:01', '2018-05-15 15:40:01', null);
  1812. INSERT INTO `ibrand_goods_attribute_value` VALUES ('111', '7', '卡通动物', '2018-05-15 15:42:44', '2018-05-15 15:42:44', null);
  1813. INSERT INTO `ibrand_goods_attribute_value` VALUES ('112', '9', '裙裤', '2018-05-15 16:35:19', '2018-05-15 16:35:19', null);
  1814. INSERT INTO `ibrand_goods_attribute_value` VALUES ('113', '5', '竹节棉', '2018-05-21 15:18:05', '2018-05-21 15:18:05', null);
  1815. INSERT INTO `ibrand_goods_attribute_value` VALUES ('114', '30', '套装', '2018-05-21 15:18:32', '2018-05-21 15:18:32', null);
  1816. INSERT INTO `ibrand_goods_attribute_value` VALUES ('115', '27', '92%', '2018-05-21 15:35:33', '2018-05-21 15:35:33', null);
  1817. INSERT INTO `ibrand_goods_attribute_value` VALUES ('116', '27', '85(%)', '2018-05-21 15:49:37', '2018-05-21 15:49:37', null);
  1818. INSERT INTO `ibrand_goods_attribute_value` VALUES ('117', '6', '无袖', '2018-05-21 16:00:50', '2018-05-21 16:00:50', null);
  1819. INSERT INTO `ibrand_goods_attribute_value` VALUES ('118', '27', '97(%)', '2018-05-21 16:01:09', '2018-05-21 16:01:09', null);
  1820. INSERT INTO `ibrand_goods_attribute_value` VALUES ('119', '19', '连帽', '2018-05-21 16:05:22', '2018-05-21 16:05:22', null);
  1821. INSERT INTO `ibrand_goods_attribute_value` VALUES ('120', '7', '植物', '2018-05-21 16:43:35', '2018-05-21 16:43:35', null);
  1822. INSERT INTO `ibrand_goods_attribute_value` VALUES ('121', '31', '是', '2018-06-05 15:45:11', '2018-06-05 15:45:11', null);
  1823. INSERT INTO `ibrand_goods_attribute_value` VALUES ('122', '31', '否', '2018-06-05 15:45:11', '2018-06-05 15:45:11', null);
  1824. INSERT INTO `ibrand_goods_attribute_value` VALUES ('123', '32', '日本', '2018-06-05 15:45:39', '2018-06-05 15:45:39', null);
  1825. INSERT INTO `ibrand_goods_attribute_value` VALUES ('124', '33', '有', '2018-06-05 15:46:07', '2018-06-05 15:46:07', null);
  1826. INSERT INTO `ibrand_goods_attribute_value` VALUES ('125', '33', '无', '2018-06-05 15:46:07', '2018-06-05 15:46:07', null);
  1827. INSERT INTO `ibrand_goods_attribute_value` VALUES ('126', '32', '韩国', '2018-06-05 17:48:50', '2018-06-05 17:48:50', null);
  1828. INSERT INTO `ibrand_goods_attribute_value` VALUES ('127', '7', '卡通', '2018-06-06 11:52:43', '2018-06-06 11:52:43', null);
  1829. INSERT INTO `ibrand_goods_attribute_value` VALUES ('128', '32', '中国', '2018-06-06 11:53:14', '2018-06-06 11:53:14', null);
  1830. INSERT INTO `ibrand_goods_attribute_value` VALUES ('129', '32', '美国', '2018-06-07 11:01:58', '2018-06-07 11:01:58', null);
  1831. INSERT INTO `ibrand_goods_attribute_value` VALUES ('130', '5', '帆布', '2018-06-07 15:33:34', '2018-06-07 15:33:34', null);
  1832. INSERT INTO `ibrand_goods_attribute_value` VALUES ('131', '2', '欧式', '2018-06-07 15:33:55', '2018-06-07 15:33:55', null);
  1833. INSERT INTO `ibrand_goods_attribute_value` VALUES ('132', '20', '山东', '2018-06-07 17:26:17', '2018-06-07 17:26:17', null);
  1834. INSERT INTO `ibrand_goods_attribute_value` VALUES ('133', '2', 'OL通勤', '2018-06-08 14:12:32', '2018-06-08 14:12:32', null);
  1835. INSERT INTO `ibrand_goods_attribute_value` VALUES ('134', '5', '粘纤', '2018-06-08 14:12:54', '2018-06-08 14:12:54', null);
  1836. INSERT INTO `ibrand_goods_attribute_value` VALUES ('135', '26', '粘纤', '2018-06-08 14:13:55', '2018-06-08 14:13:55', null);
  1837. INSERT INTO `ibrand_goods_attribute_value` VALUES ('136', '18', '不限', '2018-06-08 14:14:39', '2018-06-08 14:14:39', null);
  1838. INSERT INTO `ibrand_goods_attribute_value` VALUES ('137', '5', '莫代尔', '2018-06-08 14:46:31', '2018-06-08 14:46:31', null);
  1839. INSERT INTO `ibrand_goods_attribute_value` VALUES ('138', '26', '莫代尔', '2018-06-08 14:46:45', '2018-06-08 14:46:45', null);
  1840. INSERT INTO `ibrand_goods_attribute_value` VALUES ('139', '27', '93.7(%)', '2018-06-08 14:47:16', '2018-06-08 14:47:16', null);
  1841. INSERT INTO `ibrand_goods_attribute_value` VALUES ('140', '18', '幼儿装(1-3岁),小童装(4-6岁)', '2018-09-03 14:42:51', '2018-09-03 14:42:51', null);
  1842. INSERT INTO `ibrand_goods_attribute_value` VALUES ('141', '48', '橡胶', '2018-09-03 14:43:17', '2018-09-03 14:43:37', null);
  1843. INSERT INTO `ibrand_goods_attribute_value` VALUES ('142', '49', '低帮', '2018-09-03 14:43:53', '2018-09-03 14:43:53', null);
  1844. INSERT INTO `ibrand_goods_attribute_value` VALUES ('143', '50', '低帮', '2018-09-03 14:43:55', '2018-09-03 14:43:55', null);
  1845. INSERT INTO `ibrand_goods_attribute_value` VALUES ('144', '51', '帆布', '2018-09-03 14:44:11', '2018-09-03 14:44:11', null);
  1846. INSERT INTO `ibrand_goods_attribute_value` VALUES ('145', '12', '普通厚', '2018-09-03 14:44:34', '2018-09-03 14:44:34', null);
  1847. INSERT INTO `ibrand_goods_attribute_value` VALUES ('146', '52', '通用', '2018-09-03 14:45:08', '2018-09-03 14:45:08', null);
  1848. INSERT INTO `ibrand_goods_attribute_value` VALUES ('147', '53', '透气,耐磨,防滑', '2018-09-03 14:45:57', '2018-09-03 14:45:57', null);
  1849. INSERT INTO `ibrand_goods_attribute_value` VALUES ('148', '54', '车缝线', '2018-09-03 14:46:43', '2018-09-03 14:46:43', null);
  1850. INSERT INTO `ibrand_goods_attribute_value` VALUES ('149', '55', '注塑鞋', '2018-09-03 14:47:08', '2018-09-03 14:47:08', null);
  1851. INSERT INTO `ibrand_goods_attribute_value` VALUES ('150', '56', '棉质', '2018-09-03 14:47:30', '2018-09-03 14:47:30', null);
  1852. -- ----------------------------
  1853. -- Table structure for ibrand_goods_brand
  1854. -- ----------------------------
  1855. DROP TABLE IF EXISTS `ibrand_goods_brand`;
  1856. CREATE TABLE `ibrand_goods_brand` (
  1857. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  1858. `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  1859. `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  1860. `is_show` int(11) NOT NULL DEFAULT '1',
  1861. `sort` int(11) NOT NULL DEFAULT '99',
  1862. `url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  1863. `logo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  1864. `created_at` timestamp NULL DEFAULT NULL,
  1865. `updated_at` timestamp NULL DEFAULT NULL,
  1866. `deleted_at` timestamp NULL DEFAULT NULL,
  1867. PRIMARY KEY (`id`)
  1868. ) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
  1869. -- ----------------------------
  1870. -- Records of ibrand_goods_brand
  1871. -- ----------------------------
  1872. INSERT INTO `ibrand_goods_brand` VALUES ('1', '丫逗', '1', '0', '0', 'https://yadoutz.1688.com', '', '2017-05-11 11:29:31', '2017-05-11 11:29:31', null);
  1873. INSERT INTO `ibrand_goods_brand` VALUES ('2', '5.11', '1', '0', '0', 'https://www.viperky.com/', '', '2017-09-22 12:56:13', '2017-09-22 12:56:13', null);
  1874. INSERT INTO `ibrand_goods_brand` VALUES ('3', '米尔积分商品', '0', '100', '0', 'http://www.viperky.com', '', '2017-10-16 14:56:58', '2017-10-16 14:56:58', null);
  1875. INSERT INTO `ibrand_goods_brand` VALUES ('4', '米尔', '1', '0', '0', 'https://www.hnmier.com', '', '2017-11-09 16:31:27', '2017-11-09 16:31:27', null);
  1876. INSERT INTO `ibrand_goods_brand` VALUES ('6', '27KIDS', '1', '0', '0', 'https://27pifa.1688.com/?spm=a261y.7663282.0.0.5c66764bvmD5nS', '', '2018-05-15 09:51:03', '2018-05-15 09:51:03', null);
  1877. INSERT INTO `ibrand_goods_brand` VALUES ('7', 'suzyskids', '1', '0', '0', 'https://suzyskids2012.1688.com/?spm=a261y.7663282.0.0.27e2509dpUa2PO', '', '2018-05-15 09:52:22', '2018-05-15 09:52:22', null);
  1878. INSERT INTO `ibrand_goods_brand` VALUES ('8', 'unifriend', '1', '0', '0', 'https://shop1427388263026.1688.com/?spm=a261y.7663282.0.0.7df1576aHTvOqy', '', '2018-05-21 14:25:24', '2018-05-21 14:25:24', null);
  1879. INSERT INTO `ibrand_goods_brand` VALUES ('9', '简槑(mei)', '1', '0', '0', 'https://jianniu.1688.com/?spm=a261y.7663282.0.0.506119626K8PBq', '', '2018-05-21 14:44:16', '2018-05-21 14:44:16', null);
  1880. INSERT INTO `ibrand_goods_brand` VALUES ('10', '本比小熊', '1', '0', '0', 'https://bbxxkids.1688.com/?spm=a2615.7691456.0.0.6ffe2bc86h0eLf', '', '2018-05-21 15:04:47', '2018-05-21 15:04:47', null);
  1881. INSERT INTO `ibrand_goods_brand` VALUES ('11', 'KINCHO日本金鸟', '1', '0', '0', 'https://kincho.1688.com/?spm=a261y.7663282.0.0.78068e0feDXiTw', '', '2018-06-05 15:58:27', '2018-06-05 15:58:27', null);
  1882. INSERT INTO `ibrand_goods_brand` VALUES ('12', 'pawpawdog', '1', '0', '0', 'https://812580.1688.com/?spm=a2615.7691456.0.0.3bf76b901d4JrT', '', '2018-06-05 16:38:35', '2018-06-05 16:38:35', null);
  1883. INSERT INTO `ibrand_goods_brand` VALUES ('13', '宝露露', '1', '0', '0', 'https://hanxiuguoji.1688.com/?spm=a2615.7691456.0.0.5e921730qOd4BO', '', '2018-06-05 17:49:21', '2018-06-05 17:49:21', null);
  1884. INSERT INTO `ibrand_goods_brand` VALUES ('14', 'kocotree', '1', '0', '0', 'https://shop1431449365668.1688.com/?spm=a261y.7663282.0.0.37a037de1a1jXO', '', '2018-06-06 11:51:53', '2018-06-06 11:51:53', null);
  1885. INSERT INTO `ibrand_goods_brand` VALUES ('15', '一潘', '1', '0', '0', 'https://wendyai8023.1688.com/?spm=a261y.7663282.0.0.6629706d32lUHm', '', '2018-06-06 14:21:16', '2018-06-06 14:21:16', null);
  1886. INSERT INTO `ibrand_goods_brand` VALUES ('16', '近江兄弟', '1', '0', '0', 'https://zhimeihui.1688.com/?spm=a261y.7663282.0.0.562834f2LtTYNj', '', '2018-06-06 15:01:31', '2018-06-06 15:01:31', null);
  1887. INSERT INTO `ibrand_goods_brand` VALUES ('17', 'Coppertone/水宝宝', '1', '0', '0', 'https://coppertone.tmall.hk/search.htm', '', '2018-06-07 11:07:52', '2018-06-07 11:07:52', null);
  1888. INSERT INTO `ibrand_goods_brand` VALUES ('18', '港升', '1', '0', '0', 'https://detail.1688.com/offer/528493118845.html?spm=b26110380.sw1688.mof001.333.33b95973lnZpvT', '', '2018-06-07 14:21:34', '2018-06-07 14:21:34', null);
  1889. INSERT INTO `ibrand_goods_brand` VALUES ('19', 'sweet', '1', '0', '0', 'https://detail.1688.com/offer/532067847336.html?spm=a2615.7691456.oldlist.30.385d707bxf5oDr', '', '2018-06-07 14:51:59', '2018-06-07 14:51:59', null);
  1890. INSERT INTO `ibrand_goods_brand` VALUES ('20', '宗允', '1', '0', '0', 'https://detail.1688.com/offer/563199134662.html?spm=b26110380.sw1688.mof001.2.6d1f7eaaF4qUKP', '', '2018-06-07 15:34:32', '2018-06-07 15:34:32', null);
  1891. INSERT INTO `ibrand_goods_brand` VALUES ('21', 'zakka', '1', '0', '0', 'https://detail.1688.com/offer/529116402217.html?spm=a2615.7691456.oldlist.22.555d58cdHAr7bp', '', '2018-06-07 16:24:56', '2018-06-07 16:24:56', null);
  1892. INSERT INTO `ibrand_goods_brand` VALUES ('22', 'always', '1', '0', '0', 'https://zgalways.1688.com/?spm=a261y.7663282.0.0.1c22286b8cX7ia', '', '2018-06-07 17:26:44', '2018-06-07 17:26:44', null);
  1893. INSERT INTO `ibrand_goods_brand` VALUES ('23', '森林地图', '1', '0', '0', 'https://detail.1688.com/offer/573489846763.html?spm=a261y.7663282.0.0.2e6034e7GEGZMD&sk=', '', '2018-08-07 21:14:28', '2018-08-07 21:14:28', null);
  1894. INSERT INTO `ibrand_goods_brand` VALUES ('24', '其他', '1', '0', '0', 'https://detail.1688.com/offer/556526177853.html', '', '2018-09-03 14:37:54', '2018-09-03 14:37:54', null);
  1895. -- ----------------------------
  1896. -- Table structure for ibrand_goods_category
  1897. -- ----------------------------
  1898. DROP TABLE IF EXISTS `ibrand_goods_category`;
  1899. CREATE TABLE `ibrand_goods_category` (
  1900. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  1901. `goods_id` int(10) unsigned NOT NULL,
  1902. `category_id` int(10) unsigned NOT NULL,
  1903. `created_at` timestamp NULL DEFAULT NULL,
  1904. `updated_at` timestamp NULL DEFAULT NULL,
  1905. PRIMARY KEY (`id`)
  1906. ) ENGINE=InnoDB AUTO_INCREMENT=619 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
  1907. -- ----------------------------
  1908. -- Records of ibrand_goods_category
  1909. -- ----------------------------
  1910. INSERT INTO `ibrand_goods_category` VALUES ('2', '1', '12', null, null);
  1911. INSERT INTO `ibrand_goods_category` VALUES ('3', '2', '7', null, null);
  1912. INSERT INTO `ibrand_goods_category` VALUES ('4', '3', '8', null, null);
  1913. INSERT INTO `ibrand_goods_category` VALUES ('5', '4', '8', null, null);
  1914. INSERT INTO `ibrand_goods_category` VALUES ('6', '5', '7', null, null);
  1915. INSERT INTO `ibrand_goods_category` VALUES ('7', '6', '7', null, null);
  1916. INSERT INTO `ibrand_goods_category` VALUES ('8', '7', '7', null, null);
  1917. INSERT INTO `ibrand_goods_category` VALUES ('9', '8', '7', null, null);
  1918. INSERT INTO `ibrand_goods_category` VALUES ('10', '9', '7', null, null);
  1919. INSERT INTO `ibrand_goods_category` VALUES ('11', '10', '7', null, null);
  1920. INSERT INTO `ibrand_goods_category` VALUES ('12', '11', '7', null, null);
  1921. INSERT INTO `ibrand_goods_category` VALUES ('13', '12', '7', null, null);
  1922. INSERT INTO `ibrand_goods_category` VALUES ('14', '13', '13', null, null);
  1923. INSERT INTO `ibrand_goods_category` VALUES ('15', '14', '14', null, null);
  1924. INSERT INTO `ibrand_goods_category` VALUES ('16', '15', '14', null, null);
  1925. INSERT INTO `ibrand_goods_category` VALUES ('17', '16', '14', null, null);
  1926. INSERT INTO `ibrand_goods_category` VALUES ('18', '17', '14', null, null);
  1927. INSERT INTO `ibrand_goods_category` VALUES ('19', '18', '14', null, null);
  1928. INSERT INTO `ibrand_goods_category` VALUES ('20', '19', '14', null, null);
  1929. INSERT INTO `ibrand_goods_category` VALUES ('21', '20', '14', null, null);
  1930. INSERT INTO `ibrand_goods_category` VALUES ('22', '21', '14', null, null);
  1931. INSERT INTO `ibrand_goods_category` VALUES ('23', '22', '14', null, null);
  1932. INSERT INTO `ibrand_goods_category` VALUES ('24', '23', '14', null, null);
  1933. INSERT INTO `ibrand_goods_category` VALUES ('25', '24', '14', null, null);
  1934. INSERT INTO `ibrand_goods_category` VALUES ('26', '25', '14', null, null);
  1935. INSERT INTO `ibrand_goods_category` VALUES ('27', '26', '14', null, null);
  1936. INSERT INTO `ibrand_goods_category` VALUES ('28', '27', '14', null, null);
  1937. INSERT INTO `ibrand_goods_category` VALUES ('29', '28', '14', null, null);
  1938. INSERT INTO `ibrand_goods_category` VALUES ('30', '29', '14', null, null);
  1939. INSERT INTO `ibrand_goods_category` VALUES ('31', '30', '14', null, null);
  1940. INSERT INTO `ibrand_goods_category` VALUES ('32', '31', '14', null, null);
  1941. INSERT INTO `ibrand_goods_category` VALUES ('33', '32', '14', null, null);
  1942. INSERT INTO `ibrand_goods_category` VALUES ('34', '33', '10', null, null);
  1943. INSERT INTO `ibrand_goods_category` VALUES ('35', '34', '10', null, null);
  1944. INSERT INTO `ibrand_goods_category` VALUES ('36', '35', '10', null, null);
  1945. INSERT INTO `ibrand_goods_category` VALUES ('37', '36', '14', null, null);
  1946. INSERT INTO `ibrand_goods_category` VALUES ('38', '37', '10', null, null);
  1947. INSERT INTO `ibrand_goods_category` VALUES ('39', '38', '10', null, null);
  1948. INSERT INTO `ibrand_goods_category` VALUES ('40', '39', '10', null, null);
  1949. INSERT INTO `ibrand_goods_category` VALUES ('41', '40', '10', null, null);
  1950. INSERT INTO `ibrand_goods_category` VALUES ('42', '41', '1', null, null);
  1951. INSERT INTO `ibrand_goods_category` VALUES ('43', '41', '3', null, null);
  1952. INSERT INTO `ibrand_goods_category` VALUES ('44', '42', '1', null, null);
  1953. INSERT INTO `ibrand_goods_category` VALUES ('45', '42', '3', null, null);
  1954. INSERT INTO `ibrand_goods_category` VALUES ('46', '43', '3', null, null);
  1955. INSERT INTO `ibrand_goods_category` VALUES ('47', '43', '11', null, null);
  1956. INSERT INTO `ibrand_goods_category` VALUES ('48', '43', '1', null, null);
  1957. INSERT INTO `ibrand_goods_category` VALUES ('49', '42', '11', null, null);
  1958. INSERT INTO `ibrand_goods_category` VALUES ('50', '41', '11', null, null);
  1959. INSERT INTO `ibrand_goods_category` VALUES ('51', '44', '11', null, null);
  1960. INSERT INTO `ibrand_goods_category` VALUES ('52', '44', '1', null, null);
  1961. INSERT INTO `ibrand_goods_category` VALUES ('53', '44', '3', null, null);
  1962. INSERT INTO `ibrand_goods_category` VALUES ('54', '45', '11', null, null);
  1963. INSERT INTO `ibrand_goods_category` VALUES ('55', '45', '1', null, null);
  1964. INSERT INTO `ibrand_goods_category` VALUES ('56', '45', '2', null, null);
  1965. INSERT INTO `ibrand_goods_category` VALUES ('57', '45', '6', null, null);
  1966. INSERT INTO `ibrand_goods_category` VALUES ('58', '46', '11', null, null);
  1967. INSERT INTO `ibrand_goods_category` VALUES ('59', '46', '1', null, null);
  1968. INSERT INTO `ibrand_goods_category` VALUES ('60', '46', '2', null, null);
  1969. INSERT INTO `ibrand_goods_category` VALUES ('61', '46', '6', null, null);
  1970. INSERT INTO `ibrand_goods_category` VALUES ('62', '47', '11', null, null);
  1971. INSERT INTO `ibrand_goods_category` VALUES ('63', '47', '2', null, null);
  1972. INSERT INTO `ibrand_goods_category` VALUES ('64', '47', '6', null, null);
  1973. INSERT INTO `ibrand_goods_category` VALUES ('65', '48', '11', null, null);
  1974. INSERT INTO `ibrand_goods_category` VALUES ('68', '48', '6', null, null);
  1975. INSERT INTO `ibrand_goods_category` VALUES ('69', '49', '11', null, null);
  1976. INSERT INTO `ibrand_goods_category` VALUES ('70', '49', '2', null, null);
  1977. INSERT INTO `ibrand_goods_category` VALUES ('71', '49', '6', null, null);
  1978. INSERT INTO `ibrand_goods_category` VALUES ('72', '50', '11', null, null);
  1979. INSERT INTO `ibrand_goods_category` VALUES ('73', '50', '1', null, null);
  1980. INSERT INTO `ibrand_goods_category` VALUES ('74', '50', '2', null, null);
  1981. INSERT INTO `ibrand_goods_category` VALUES ('75', '50', '6', null, null);
  1982. INSERT INTO `ibrand_goods_category` VALUES ('81', '52', '1', null, null);
  1983. INSERT INTO `ibrand_goods_category` VALUES ('82', '52', '3', null, null);
  1984. INSERT INTO `ibrand_goods_category` VALUES ('83', '52', '2', null, null);
  1985. INSERT INTO `ibrand_goods_category` VALUES ('84', '52', '6', null, null);
  1986. INSERT INTO `ibrand_goods_category` VALUES ('85', '52', '11', null, null);
  1987. INSERT INTO `ibrand_goods_category` VALUES ('86', '47', '15', null, null);
  1988. INSERT INTO `ibrand_goods_category` VALUES ('87', '47', '16', null, null);
  1989. INSERT INTO `ibrand_goods_category` VALUES ('88', '48', '15', null, null);
  1990. INSERT INTO `ibrand_goods_category` VALUES ('89', '48', '17', null, null);
  1991. INSERT INTO `ibrand_goods_category` VALUES ('90', '53', '11', null, null);
  1992. INSERT INTO `ibrand_goods_category` VALUES ('91', '53', '2', null, null);
  1993. INSERT INTO `ibrand_goods_category` VALUES ('92', '53', '7', null, null);
  1994. INSERT INTO `ibrand_goods_category` VALUES ('93', '54', '11', null, null);
  1995. INSERT INTO `ibrand_goods_category` VALUES ('94', '54', '15', null, null);
  1996. INSERT INTO `ibrand_goods_category` VALUES ('95', '54', '17', null, null);
  1997. INSERT INTO `ibrand_goods_category` VALUES ('96', '55', '11', null, null);
  1998. INSERT INTO `ibrand_goods_category` VALUES ('97', '55', '2', null, null);
  1999. INSERT INTO `ibrand_goods_category` VALUES ('98', '55', '7', null, null);
  2000. INSERT INTO `ibrand_goods_category` VALUES ('99', '56', '11', null, null);
  2001. INSERT INTO `ibrand_goods_category` VALUES ('100', '56', '2', null, null);
  2002. INSERT INTO `ibrand_goods_category` VALUES ('101', '56', '7', null, null);
  2003. INSERT INTO `ibrand_goods_category` VALUES ('102', '57', '11', null, null);
  2004. INSERT INTO `ibrand_goods_category` VALUES ('103', '57', '2', null, null);
  2005. INSERT INTO `ibrand_goods_category` VALUES ('104', '57', '7', null, null);
  2006. INSERT INTO `ibrand_goods_category` VALUES ('105', '58', '11', null, null);
  2007. INSERT INTO `ibrand_goods_category` VALUES ('106', '58', '15', null, null);
  2008. INSERT INTO `ibrand_goods_category` VALUES ('107', '58', '17', null, null);
  2009. INSERT INTO `ibrand_goods_category` VALUES ('108', '59', '11', null, null);
  2010. INSERT INTO `ibrand_goods_category` VALUES ('109', '59', '2', null, null);
  2011. INSERT INTO `ibrand_goods_category` VALUES ('110', '59', '7', null, null);
  2012. INSERT INTO `ibrand_goods_category` VALUES ('111', '60', '11', null, null);
  2013. INSERT INTO `ibrand_goods_category` VALUES ('112', '60', '2', null, null);
  2014. INSERT INTO `ibrand_goods_category` VALUES ('113', '60', '7', null, null);
  2015. INSERT INTO `ibrand_goods_category` VALUES ('114', '61', '11', null, null);
  2016. INSERT INTO `ibrand_goods_category` VALUES ('115', '61', '15', null, null);
  2017. INSERT INTO `ibrand_goods_category` VALUES ('116', '61', '17', null, null);
  2018. INSERT INTO `ibrand_goods_category` VALUES ('117', '62', '11', null, null);
  2019. INSERT INTO `ibrand_goods_category` VALUES ('118', '62', '2', null, null);
  2020. INSERT INTO `ibrand_goods_category` VALUES ('119', '62', '7', null, null);
  2021. INSERT INTO `ibrand_goods_category` VALUES ('120', '63', '15', null, null);
  2022. INSERT INTO `ibrand_goods_category` VALUES ('121', '63', '16', null, null);
  2023. INSERT INTO `ibrand_goods_category` VALUES ('122', '63', '11', null, null);
  2024. INSERT INTO `ibrand_goods_category` VALUES ('123', '64', '11', null, null);
  2025. INSERT INTO `ibrand_goods_category` VALUES ('124', '64', '1', null, null);
  2026. INSERT INTO `ibrand_goods_category` VALUES ('125', '64', '5', null, null);
  2027. INSERT INTO `ibrand_goods_category` VALUES ('126', '65', '15', null, null);
  2028. INSERT INTO `ibrand_goods_category` VALUES ('127', '65', '17', null, null);
  2029. INSERT INTO `ibrand_goods_category` VALUES ('128', '65', '11', null, null);
  2030. INSERT INTO `ibrand_goods_category` VALUES ('129', '66', '11', null, null);
  2031. INSERT INTO `ibrand_goods_category` VALUES ('130', '66', '2', null, null);
  2032. INSERT INTO `ibrand_goods_category` VALUES ('131', '66', '8', null, null);
  2033. INSERT INTO `ibrand_goods_category` VALUES ('132', '66', '1', null, null);
  2034. INSERT INTO `ibrand_goods_category` VALUES ('133', '66', '4', null, null);
  2035. INSERT INTO `ibrand_goods_category` VALUES ('134', '67', '15', null, null);
  2036. INSERT INTO `ibrand_goods_category` VALUES ('135', '67', '16', null, null);
  2037. INSERT INTO `ibrand_goods_category` VALUES ('136', '67', '11', null, null);
  2038. INSERT INTO `ibrand_goods_category` VALUES ('137', '67', '2', null, null);
  2039. INSERT INTO `ibrand_goods_category` VALUES ('138', '68', '11', null, null);
  2040. INSERT INTO `ibrand_goods_category` VALUES ('139', '68', '1', null, null);
  2041. INSERT INTO `ibrand_goods_category` VALUES ('140', '68', '2', null, null);
  2042. INSERT INTO `ibrand_goods_category` VALUES ('141', '68', '12', null, null);
  2043. INSERT INTO `ibrand_goods_category` VALUES ('142', '69', '11', null, null);
  2044. INSERT INTO `ibrand_goods_category` VALUES ('143', '69', '2', null, null);
  2045. INSERT INTO `ibrand_goods_category` VALUES ('144', '69', '12', null, null);
  2046. INSERT INTO `ibrand_goods_category` VALUES ('145', '69', '1', null, null);
  2047. INSERT INTO `ibrand_goods_category` VALUES ('146', '69', '5', null, null);
  2048. INSERT INTO `ibrand_goods_category` VALUES ('147', '70', '11', null, null);
  2049. INSERT INTO `ibrand_goods_category` VALUES ('148', '70', '1', null, null);
  2050. INSERT INTO `ibrand_goods_category` VALUES ('149', '70', '4', null, null);
  2051. INSERT INTO `ibrand_goods_category` VALUES ('150', '70', '2', null, null);
  2052. INSERT INTO `ibrand_goods_category` VALUES ('151', '70', '8', null, null);
  2053. INSERT INTO `ibrand_goods_category` VALUES ('157', '72', '11', null, null);
  2054. INSERT INTO `ibrand_goods_category` VALUES ('158', '72', '8', null, null);
  2055. INSERT INTO `ibrand_goods_category` VALUES ('159', '72', '2', null, null);
  2056. INSERT INTO `ibrand_goods_category` VALUES ('160', '72', '1', null, null);
  2057. INSERT INTO `ibrand_goods_category` VALUES ('161', '72', '4', null, null);
  2058. INSERT INTO `ibrand_goods_category` VALUES ('162', '73', '11', null, null);
  2059. INSERT INTO `ibrand_goods_category` VALUES ('163', '73', '1', null, null);
  2060. INSERT INTO `ibrand_goods_category` VALUES ('164', '73', '4', null, null);
  2061. INSERT INTO `ibrand_goods_category` VALUES ('165', '73', '2', null, null);
  2062. INSERT INTO `ibrand_goods_category` VALUES ('166', '73', '8', null, null);
  2063. INSERT INTO `ibrand_goods_category` VALUES ('167', '74', '11', null, null);
  2064. INSERT INTO `ibrand_goods_category` VALUES ('168', '74', '1', null, null);
  2065. INSERT INTO `ibrand_goods_category` VALUES ('169', '74', '4', null, null);
  2066. INSERT INTO `ibrand_goods_category` VALUES ('170', '74', '2', null, null);
  2067. INSERT INTO `ibrand_goods_category` VALUES ('171', '74', '8', null, null);
  2068. INSERT INTO `ibrand_goods_category` VALUES ('172', '75', '11', null, null);
  2069. INSERT INTO `ibrand_goods_category` VALUES ('173', '75', '1', null, null);
  2070. INSERT INTO `ibrand_goods_category` VALUES ('174', '75', '4', null, null);
  2071. INSERT INTO `ibrand_goods_category` VALUES ('175', '75', '2', null, null);
  2072. INSERT INTO `ibrand_goods_category` VALUES ('176', '75', '8', null, null);
  2073. INSERT INTO `ibrand_goods_category` VALUES ('177', '76', '11', null, null);
  2074. INSERT INTO `ibrand_goods_category` VALUES ('178', '76', '1', null, null);
  2075. INSERT INTO `ibrand_goods_category` VALUES ('179', '76', '4', null, null);
  2076. INSERT INTO `ibrand_goods_category` VALUES ('180', '76', '2', null, null);
  2077. INSERT INTO `ibrand_goods_category` VALUES ('181', '76', '8', null, null);
  2078. INSERT INTO `ibrand_goods_category` VALUES ('182', '77', '1', null, null);
  2079. INSERT INTO `ibrand_goods_category` VALUES ('183', '77', '3', null, null);
  2080. INSERT INTO `ibrand_goods_category` VALUES ('184', '50', '15', null, null);
  2081. INSERT INTO `ibrand_goods_category` VALUES ('185', '50', '16', null, null);
  2082. INSERT INTO `ibrand_goods_category` VALUES ('186', '50', '17', null, null);
  2083. INSERT INTO `ibrand_goods_category` VALUES ('187', '48', '16', null, null);
  2084. INSERT INTO `ibrand_goods_category` VALUES ('188', '78', '18', null, null);
  2085. INSERT INTO `ibrand_goods_category` VALUES ('189', '78', '19', null, null);
  2086. INSERT INTO `ibrand_goods_category` VALUES ('190', '78', '1', null, null);
  2087. INSERT INTO `ibrand_goods_category` VALUES ('191', '78', '3', null, null);
  2088. INSERT INTO `ibrand_goods_category` VALUES ('192', '78', '11', null, null);
  2089. INSERT INTO `ibrand_goods_category` VALUES ('193', '79', '18', null, null);
  2090. INSERT INTO `ibrand_goods_category` VALUES ('194', '79', '11', null, null);
  2091. INSERT INTO `ibrand_goods_category` VALUES ('195', '79', '4', null, null);
  2092. INSERT INTO `ibrand_goods_category` VALUES ('196', '79', '1', null, null);
  2093. INSERT INTO `ibrand_goods_category` VALUES ('197', '79', '2', null, null);
  2094. INSERT INTO `ibrand_goods_category` VALUES ('198', '80', '18', null, null);
  2095. INSERT INTO `ibrand_goods_category` VALUES ('199', '80', '19', null, null);
  2096. INSERT INTO `ibrand_goods_category` VALUES ('200', '80', '8', null, null);
  2097. INSERT INTO `ibrand_goods_category` VALUES ('201', '80', '2', null, null);
  2098. INSERT INTO `ibrand_goods_category` VALUES ('202', '80', '11', null, null);
  2099. INSERT INTO `ibrand_goods_category` VALUES ('203', '81', '18', null, null);
  2100. INSERT INTO `ibrand_goods_category` VALUES ('204', '81', '21', null, null);
  2101. INSERT INTO `ibrand_goods_category` VALUES ('205', '81', '11', null, null);
  2102. INSERT INTO `ibrand_goods_category` VALUES ('206', '82', '18', null, null);
  2103. INSERT INTO `ibrand_goods_category` VALUES ('207', '82', '19', null, null);
  2104. INSERT INTO `ibrand_goods_category` VALUES ('208', '82', '21', null, null);
  2105. INSERT INTO `ibrand_goods_category` VALUES ('209', '82', '11', null, null);
  2106. INSERT INTO `ibrand_goods_category` VALUES ('210', '83', '18', null, null);
  2107. INSERT INTO `ibrand_goods_category` VALUES ('211', '83', '19', null, null);
  2108. INSERT INTO `ibrand_goods_category` VALUES ('212', '83', '6', null, null);
  2109. INSERT INTO `ibrand_goods_category` VALUES ('213', '83', '11', null, null);
  2110. INSERT INTO `ibrand_goods_category` VALUES ('214', '83', '2', null, null);
  2111. INSERT INTO `ibrand_goods_category` VALUES ('215', '84', '18', null, null);
  2112. INSERT INTO `ibrand_goods_category` VALUES ('216', '84', '21', null, null);
  2113. INSERT INTO `ibrand_goods_category` VALUES ('221', '87', '15', null, null);
  2114. INSERT INTO `ibrand_goods_category` VALUES ('222', '87', '17', null, null);
  2115. INSERT INTO `ibrand_goods_category` VALUES ('223', '87', '18', null, null);
  2116. INSERT INTO `ibrand_goods_category` VALUES ('224', '87', '19', null, null);
  2117. INSERT INTO `ibrand_goods_category` VALUES ('225', '87', '11', null, null);
  2118. INSERT INTO `ibrand_goods_category` VALUES ('226', '88', '15', null, null);
  2119. INSERT INTO `ibrand_goods_category` VALUES ('227', '88', '17', null, null);
  2120. INSERT INTO `ibrand_goods_category` VALUES ('228', '88', '18', null, null);
  2121. INSERT INTO `ibrand_goods_category` VALUES ('229', '88', '19', null, null);
  2122. INSERT INTO `ibrand_goods_category` VALUES ('230', '88', '11', null, null);
  2123. INSERT INTO `ibrand_goods_category` VALUES ('231', '88', '1', null, null);
  2124. INSERT INTO `ibrand_goods_category` VALUES ('232', '88', '3', null, null);
  2125. INSERT INTO `ibrand_goods_category` VALUES ('233', '89', '18', null, null);
  2126. INSERT INTO `ibrand_goods_category` VALUES ('234', '89', '19', null, null);
  2127. INSERT INTO `ibrand_goods_category` VALUES ('235', '89', '20', null, null);
  2128. INSERT INTO `ibrand_goods_category` VALUES ('236', '89', '23', null, null);
  2129. INSERT INTO `ibrand_goods_category` VALUES ('237', '90', '18', null, null);
  2130. INSERT INTO `ibrand_goods_category` VALUES ('238', '90', '19', null, null);
  2131. INSERT INTO `ibrand_goods_category` VALUES ('239', '90', '11', null, null);
  2132. INSERT INTO `ibrand_goods_category` VALUES ('240', '90', '1', null, null);
  2133. INSERT INTO `ibrand_goods_category` VALUES ('241', '90', '3', null, null);
  2134. INSERT INTO `ibrand_goods_category` VALUES ('242', '90', '2', null, null);
  2135. INSERT INTO `ibrand_goods_category` VALUES ('243', '90', '6', null, null);
  2136. INSERT INTO `ibrand_goods_category` VALUES ('244', '91', '20', null, null);
  2137. INSERT INTO `ibrand_goods_category` VALUES ('245', '91', '23', null, null);
  2138. INSERT INTO `ibrand_goods_category` VALUES ('246', '91', '18', null, null);
  2139. INSERT INTO `ibrand_goods_category` VALUES ('247', '91', '19', null, null);
  2140. INSERT INTO `ibrand_goods_category` VALUES ('248', '91', '11', null, null);
  2141. INSERT INTO `ibrand_goods_category` VALUES ('249', '92', '18', null, null);
  2142. INSERT INTO `ibrand_goods_category` VALUES ('250', '92', '11', null, null);
  2143. INSERT INTO `ibrand_goods_category` VALUES ('251', '92', '1', null, null);
  2144. INSERT INTO `ibrand_goods_category` VALUES ('252', '92', '3', null, null);
  2145. INSERT INTO `ibrand_goods_category` VALUES ('253', '92', '2', null, null);
  2146. INSERT INTO `ibrand_goods_category` VALUES ('254', '92', '6', null, null);
  2147. INSERT INTO `ibrand_goods_category` VALUES ('255', '93', '18', null, null);
  2148. INSERT INTO `ibrand_goods_category` VALUES ('256', '93', '19', null, null);
  2149. INSERT INTO `ibrand_goods_category` VALUES ('257', '93', '11', null, null);
  2150. INSERT INTO `ibrand_goods_category` VALUES ('258', '93', '8', null, null);
  2151. INSERT INTO `ibrand_goods_category` VALUES ('259', '93', '1', null, null);
  2152. INSERT INTO `ibrand_goods_category` VALUES ('260', '93', '2', null, null);
  2153. INSERT INTO `ibrand_goods_category` VALUES ('261', '94', '18', null, null);
  2154. INSERT INTO `ibrand_goods_category` VALUES ('262', '94', '19', null, null);
  2155. INSERT INTO `ibrand_goods_category` VALUES ('263', '94', '20', null, null);
  2156. INSERT INTO `ibrand_goods_category` VALUES ('264', '94', '23', null, null);
  2157. INSERT INTO `ibrand_goods_category` VALUES ('265', '95', '19', null, null);
  2158. INSERT INTO `ibrand_goods_category` VALUES ('266', '95', '11', null, null);
  2159. INSERT INTO `ibrand_goods_category` VALUES ('267', '95', '1', null, null);
  2160. INSERT INTO `ibrand_goods_category` VALUES ('268', '95', '3', null, null);
  2161. INSERT INTO `ibrand_goods_category` VALUES ('269', '96', '18', null, null);
  2162. INSERT INTO `ibrand_goods_category` VALUES ('270', '96', '19', null, null);
  2163. INSERT INTO `ibrand_goods_category` VALUES ('271', '96', '11', null, null);
  2164. INSERT INTO `ibrand_goods_category` VALUES ('272', '96', '1', null, null);
  2165. INSERT INTO `ibrand_goods_category` VALUES ('273', '96', '3', null, null);
  2166. INSERT INTO `ibrand_goods_category` VALUES ('274', '97', '18', null, null);
  2167. INSERT INTO `ibrand_goods_category` VALUES ('275', '97', '19', null, null);
  2168. INSERT INTO `ibrand_goods_category` VALUES ('276', '97', '11', null, null);
  2169. INSERT INTO `ibrand_goods_category` VALUES ('277', '97', '1', null, null);
  2170. INSERT INTO `ibrand_goods_category` VALUES ('278', '97', '4', null, null);
  2171. INSERT INTO `ibrand_goods_category` VALUES ('279', '98', '18', null, null);
  2172. INSERT INTO `ibrand_goods_category` VALUES ('280', '98', '19', null, null);
  2173. INSERT INTO `ibrand_goods_category` VALUES ('281', '98', '11', null, null);
  2174. INSERT INTO `ibrand_goods_category` VALUES ('282', '98', '1', null, null);
  2175. INSERT INTO `ibrand_goods_category` VALUES ('283', '98', '4', null, null);
  2176. INSERT INTO `ibrand_goods_category` VALUES ('284', '99', '18', null, null);
  2177. INSERT INTO `ibrand_goods_category` VALUES ('285', '99', '19', null, null);
  2178. INSERT INTO `ibrand_goods_category` VALUES ('286', '99', '1', null, null);
  2179. INSERT INTO `ibrand_goods_category` VALUES ('287', '99', '25', null, null);
  2180. INSERT INTO `ibrand_goods_category` VALUES ('288', '99', '11', null, null);
  2181. INSERT INTO `ibrand_goods_category` VALUES ('289', '100', '18', null, null);
  2182. INSERT INTO `ibrand_goods_category` VALUES ('290', '100', '19', null, null);
  2183. INSERT INTO `ibrand_goods_category` VALUES ('291', '100', '1', null, null);
  2184. INSERT INTO `ibrand_goods_category` VALUES ('292', '100', '25', null, null);
  2185. INSERT INTO `ibrand_goods_category` VALUES ('293', '100', '11', null, null);
  2186. INSERT INTO `ibrand_goods_category` VALUES ('294', '101', '18', null, null);
  2187. INSERT INTO `ibrand_goods_category` VALUES ('295', '101', '19', null, null);
  2188. INSERT INTO `ibrand_goods_category` VALUES ('296', '101', '1', null, null);
  2189. INSERT INTO `ibrand_goods_category` VALUES ('297', '101', '5', null, null);
  2190. INSERT INTO `ibrand_goods_category` VALUES ('298', '101', '11', null, null);
  2191. INSERT INTO `ibrand_goods_category` VALUES ('299', '102', '18', null, null);
  2192. INSERT INTO `ibrand_goods_category` VALUES ('300', '102', '19', null, null);
  2193. INSERT INTO `ibrand_goods_category` VALUES ('301', '102', '1', null, null);
  2194. INSERT INTO `ibrand_goods_category` VALUES ('302', '102', '5', null, null);
  2195. INSERT INTO `ibrand_goods_category` VALUES ('303', '102', '11', null, null);
  2196. INSERT INTO `ibrand_goods_category` VALUES ('304', '103', '18', null, null);
  2197. INSERT INTO `ibrand_goods_category` VALUES ('305', '103', '1', null, null);
  2198. INSERT INTO `ibrand_goods_category` VALUES ('306', '103', '5', null, null);
  2199. INSERT INTO `ibrand_goods_category` VALUES ('307', '103', '11', null, null);
  2200. INSERT INTO `ibrand_goods_category` VALUES ('308', '104', '18', null, null);
  2201. INSERT INTO `ibrand_goods_category` VALUES ('309', '104', '1', null, null);
  2202. INSERT INTO `ibrand_goods_category` VALUES ('310', '104', '3', null, null);
  2203. INSERT INTO `ibrand_goods_category` VALUES ('311', '104', '11', null, null);
  2204. INSERT INTO `ibrand_goods_category` VALUES ('312', '105', '18', null, null);
  2205. INSERT INTO `ibrand_goods_category` VALUES ('313', '105', '1', null, null);
  2206. INSERT INTO `ibrand_goods_category` VALUES ('314', '105', '4', null, null);
  2207. INSERT INTO `ibrand_goods_category` VALUES ('315', '105', '11', null, null);
  2208. INSERT INTO `ibrand_goods_category` VALUES ('316', '106', '18', null, null);
  2209. INSERT INTO `ibrand_goods_category` VALUES ('317', '106', '1', null, null);
  2210. INSERT INTO `ibrand_goods_category` VALUES ('318', '106', '3', null, null);
  2211. INSERT INTO `ibrand_goods_category` VALUES ('319', '106', '11', null, null);
  2212. INSERT INTO `ibrand_goods_category` VALUES ('320', '107', '18', null, null);
  2213. INSERT INTO `ibrand_goods_category` VALUES ('321', '107', '11', null, null);
  2214. INSERT INTO `ibrand_goods_category` VALUES ('322', '107', '1', null, null);
  2215. INSERT INTO `ibrand_goods_category` VALUES ('323', '107', '3', null, null);
  2216. INSERT INTO `ibrand_goods_category` VALUES ('324', '107', '26', null, null);
  2217. INSERT INTO `ibrand_goods_category` VALUES ('325', '106', '26', null, null);
  2218. INSERT INTO `ibrand_goods_category` VALUES ('326', '105', '26', null, null);
  2219. INSERT INTO `ibrand_goods_category` VALUES ('327', '104', '26', null, null);
  2220. INSERT INTO `ibrand_goods_category` VALUES ('328', '103', '26', null, null);
  2221. INSERT INTO `ibrand_goods_category` VALUES ('329', '108', '27', null, null);
  2222. INSERT INTO `ibrand_goods_category` VALUES ('330', '109', '28', null, null);
  2223. INSERT INTO `ibrand_goods_category` VALUES ('331', '110', '27', null, null);
  2224. INSERT INTO `ibrand_goods_category` VALUES ('332', '111', '27', null, null);
  2225. INSERT INTO `ibrand_goods_category` VALUES ('333', '112', '27', null, null);
  2226. INSERT INTO `ibrand_goods_category` VALUES ('334', '113', '27', null, null);
  2227. INSERT INTO `ibrand_goods_category` VALUES ('335', '113', '31', null, null);
  2228. INSERT INTO `ibrand_goods_category` VALUES ('336', '114', '27', null, null);
  2229. INSERT INTO `ibrand_goods_category` VALUES ('337', '114', '29', null, null);
  2230. INSERT INTO `ibrand_goods_category` VALUES ('338', '115', '32', null, null);
  2231. INSERT INTO `ibrand_goods_category` VALUES ('339', '116', '32', null, null);
  2232. INSERT INTO `ibrand_goods_category` VALUES ('340', '117', '27', null, null);
  2233. INSERT INTO `ibrand_goods_category` VALUES ('341', '117', '29', null, null);
  2234. INSERT INTO `ibrand_goods_category` VALUES ('342', '118', '18', null, null);
  2235. INSERT INTO `ibrand_goods_category` VALUES ('343', '118', '20', null, null);
  2236. INSERT INTO `ibrand_goods_category` VALUES ('344', '118', '23', null, null);
  2237. INSERT INTO `ibrand_goods_category` VALUES ('345', '118', '2', null, null);
  2238. INSERT INTO `ibrand_goods_category` VALUES ('346', '118', '6', null, null);
  2239. INSERT INTO `ibrand_goods_category` VALUES ('347', '118', '1', null, null);
  2240. INSERT INTO `ibrand_goods_category` VALUES ('348', '118', '3', null, null);
  2241. INSERT INTO `ibrand_goods_category` VALUES ('349', '118', '11', null, null);
  2242. INSERT INTO `ibrand_goods_category` VALUES ('382', '123', '18', null, null);
  2243. INSERT INTO `ibrand_goods_category` VALUES ('383', '123', '2', null, null);
  2244. INSERT INTO `ibrand_goods_category` VALUES ('384', '123', '6', null, null);
  2245. INSERT INTO `ibrand_goods_category` VALUES ('385', '123', '1', null, null);
  2246. INSERT INTO `ibrand_goods_category` VALUES ('386', '123', '3', null, null);
  2247. INSERT INTO `ibrand_goods_category` VALUES ('387', '124', '33', null, null);
  2248. INSERT INTO `ibrand_goods_category` VALUES ('388', '124', '34', null, null);
  2249. INSERT INTO `ibrand_goods_category` VALUES ('389', '125', '33', null, null);
  2250. INSERT INTO `ibrand_goods_category` VALUES ('390', '125', '35', null, null);
  2251. INSERT INTO `ibrand_goods_category` VALUES ('391', '126', '36', null, null);
  2252. INSERT INTO `ibrand_goods_category` VALUES ('392', '126', '37', null, null);
  2253. INSERT INTO `ibrand_goods_category` VALUES ('394', '127', '38', null, null);
  2254. INSERT INTO `ibrand_goods_category` VALUES ('395', '62', '40', null, null);
  2255. INSERT INTO `ibrand_goods_category` VALUES ('396', '60', '39', null, null);
  2256. INSERT INTO `ibrand_goods_category` VALUES ('397', '59', '40', null, null);
  2257. INSERT INTO `ibrand_goods_category` VALUES ('398', '57', '40', null, null);
  2258. INSERT INTO `ibrand_goods_category` VALUES ('399', '56', '39', null, null);
  2259. INSERT INTO `ibrand_goods_category` VALUES ('400', '55', '40', null, null);
  2260. INSERT INTO `ibrand_goods_category` VALUES ('401', '53', '40', null, null);
  2261. INSERT INTO `ibrand_goods_category` VALUES ('402', '116', '41', null, null);
  2262. INSERT INTO `ibrand_goods_category` VALUES ('407', '130', '18', null, null);
  2263. INSERT INTO `ibrand_goods_category` VALUES ('408', '130', '42', null, null);
  2264. INSERT INTO `ibrand_goods_category` VALUES ('409', '131', '42', null, null);
  2265. INSERT INTO `ibrand_goods_category` VALUES ('410', '131', '11', null, null);
  2266. INSERT INTO `ibrand_goods_category` VALUES ('411', '131', '20', null, null);
  2267. INSERT INTO `ibrand_goods_category` VALUES ('412', '131', '23', null, null);
  2268. INSERT INTO `ibrand_goods_category` VALUES ('413', '131', '18', null, null);
  2269. INSERT INTO `ibrand_goods_category` VALUES ('414', '130', '20', null, null);
  2270. INSERT INTO `ibrand_goods_category` VALUES ('415', '130', '11', null, null);
  2271. INSERT INTO `ibrand_goods_category` VALUES ('416', '132', '18', null, null);
  2272. INSERT INTO `ibrand_goods_category` VALUES ('417', '132', '42', null, null);
  2273. INSERT INTO `ibrand_goods_category` VALUES ('418', '132', '20', null, null);
  2274. INSERT INTO `ibrand_goods_category` VALUES ('419', '132', '23', null, null);
  2275. INSERT INTO `ibrand_goods_category` VALUES ('420', '132', '11', null, null);
  2276. INSERT INTO `ibrand_goods_category` VALUES ('421', '133', '18', null, null);
  2277. INSERT INTO `ibrand_goods_category` VALUES ('422', '133', '42', null, null);
  2278. INSERT INTO `ibrand_goods_category` VALUES ('423', '133', '20', null, null);
  2279. INSERT INTO `ibrand_goods_category` VALUES ('424', '133', '11', null, null);
  2280. INSERT INTO `ibrand_goods_category` VALUES ('425', '114', '41', null, null);
  2281. INSERT INTO `ibrand_goods_category` VALUES ('427', '134', '2', null, null);
  2282. INSERT INTO `ibrand_goods_category` VALUES ('428', '134', '6', null, null);
  2283. INSERT INTO `ibrand_goods_category` VALUES ('429', '134', '1', null, null);
  2284. INSERT INTO `ibrand_goods_category` VALUES ('430', '134', '3', null, null);
  2285. INSERT INTO `ibrand_goods_category` VALUES ('431', '135', '2', null, null);
  2286. INSERT INTO `ibrand_goods_category` VALUES ('432', '135', '8', null, null);
  2287. INSERT INTO `ibrand_goods_category` VALUES ('433', '135', '1', null, null);
  2288. INSERT INTO `ibrand_goods_category` VALUES ('434', '135', '4', null, null);
  2289. INSERT INTO `ibrand_goods_category` VALUES ('435', '136', '1', null, null);
  2290. INSERT INTO `ibrand_goods_category` VALUES ('436', '136', '4', null, null);
  2291. INSERT INTO `ibrand_goods_category` VALUES ('437', '136', '2', null, null);
  2292. INSERT INTO `ibrand_goods_category` VALUES ('438', '136', '8', null, null);
  2293. INSERT INTO `ibrand_goods_category` VALUES ('439', '137', '2', null, null);
  2294. INSERT INTO `ibrand_goods_category` VALUES ('440', '137', '6', null, null);
  2295. INSERT INTO `ibrand_goods_category` VALUES ('441', '138', '1', null, null);
  2296. INSERT INTO `ibrand_goods_category` VALUES ('442', '138', '3', null, null);
  2297. INSERT INTO `ibrand_goods_category` VALUES ('443', '138', '2', null, null);
  2298. INSERT INTO `ibrand_goods_category` VALUES ('444', '138', '6', null, null);
  2299. INSERT INTO `ibrand_goods_category` VALUES ('445', '139', '2', null, null);
  2300. INSERT INTO `ibrand_goods_category` VALUES ('446', '139', '6', null, null);
  2301. INSERT INTO `ibrand_goods_category` VALUES ('447', '139', '1', null, null);
  2302. INSERT INTO `ibrand_goods_category` VALUES ('448', '139', '3', null, null);
  2303. INSERT INTO `ibrand_goods_category` VALUES ('449', '140', '1', null, null);
  2304. INSERT INTO `ibrand_goods_category` VALUES ('450', '140', '4', null, null);
  2305. INSERT INTO `ibrand_goods_category` VALUES ('451', '140', '2', null, null);
  2306. INSERT INTO `ibrand_goods_category` VALUES ('452', '140', '8', null, null);
  2307. INSERT INTO `ibrand_goods_category` VALUES ('453', '141', '1', null, null);
  2308. INSERT INTO `ibrand_goods_category` VALUES ('454', '141', '4', null, null);
  2309. INSERT INTO `ibrand_goods_category` VALUES ('455', '141', '2', null, null);
  2310. INSERT INTO `ibrand_goods_category` VALUES ('456', '141', '8', null, null);
  2311. INSERT INTO `ibrand_goods_category` VALUES ('457', '142', '1', null, null);
  2312. INSERT INTO `ibrand_goods_category` VALUES ('458', '142', '3', null, null);
  2313. INSERT INTO `ibrand_goods_category` VALUES ('459', '142', '2', null, null);
  2314. INSERT INTO `ibrand_goods_category` VALUES ('460', '142', '6', null, null);
  2315. INSERT INTO `ibrand_goods_category` VALUES ('461', '143', '18', null, null);
  2316. INSERT INTO `ibrand_goods_category` VALUES ('462', '143', '9', null, null);
  2317. INSERT INTO `ibrand_goods_category` VALUES ('463', '143', '2', null, null);
  2318. INSERT INTO `ibrand_goods_category` VALUES ('464', '143', '1', null, null);
  2319. INSERT INTO `ibrand_goods_category` VALUES ('465', '144', '18', null, null);
  2320. INSERT INTO `ibrand_goods_category` VALUES ('466', '144', '1', null, null);
  2321. INSERT INTO `ibrand_goods_category` VALUES ('467', '144', '4', null, null);
  2322. INSERT INTO `ibrand_goods_category` VALUES ('468', '144', '2', null, null);
  2323. INSERT INTO `ibrand_goods_category` VALUES ('469', '144', '8', null, null);
  2324. INSERT INTO `ibrand_goods_category` VALUES ('470', '144', '43', null, null);
  2325. INSERT INTO `ibrand_goods_category` VALUES ('471', '143', '43', null, null);
  2326. INSERT INTO `ibrand_goods_category` VALUES ('472', '142', '18', null, null);
  2327. INSERT INTO `ibrand_goods_category` VALUES ('473', '142', '43', null, null);
  2328. INSERT INTO `ibrand_goods_category` VALUES ('474', '141', '18', null, null);
  2329. INSERT INTO `ibrand_goods_category` VALUES ('475', '141', '43', null, null);
  2330. INSERT INTO `ibrand_goods_category` VALUES ('476', '140', '18', null, null);
  2331. INSERT INTO `ibrand_goods_category` VALUES ('477', '140', '43', null, null);
  2332. INSERT INTO `ibrand_goods_category` VALUES ('478', '139', '18', null, null);
  2333. INSERT INTO `ibrand_goods_category` VALUES ('479', '139', '43', null, null);
  2334. INSERT INTO `ibrand_goods_category` VALUES ('480', '138', '18', null, null);
  2335. INSERT INTO `ibrand_goods_category` VALUES ('481', '138', '43', null, null);
  2336. INSERT INTO `ibrand_goods_category` VALUES ('482', '137', '18', null, null);
  2337. INSERT INTO `ibrand_goods_category` VALUES ('483', '137', '43', null, null);
  2338. INSERT INTO `ibrand_goods_category` VALUES ('484', '136', '18', null, null);
  2339. INSERT INTO `ibrand_goods_category` VALUES ('485', '136', '43', null, null);
  2340. INSERT INTO `ibrand_goods_category` VALUES ('486', '135', '18', null, null);
  2341. INSERT INTO `ibrand_goods_category` VALUES ('487', '135', '43', null, null);
  2342. INSERT INTO `ibrand_goods_category` VALUES ('488', '134', '18', null, null);
  2343. INSERT INTO `ibrand_goods_category` VALUES ('489', '134', '43', null, null);
  2344. INSERT INTO `ibrand_goods_category` VALUES ('490', '145', '18', null, null);
  2345. INSERT INTO `ibrand_goods_category` VALUES ('491', '145', '43', null, null);
  2346. INSERT INTO `ibrand_goods_category` VALUES ('492', '145', '8', null, null);
  2347. INSERT INTO `ibrand_goods_category` VALUES ('493', '145', '2', null, null);
  2348. INSERT INTO `ibrand_goods_category` VALUES ('494', '145', '1', null, null);
  2349. INSERT INTO `ibrand_goods_category` VALUES ('495', '145', '4', null, null);
  2350. INSERT INTO `ibrand_goods_category` VALUES ('496', '146', '18', null, null);
  2351. INSERT INTO `ibrand_goods_category` VALUES ('497', '146', '43', null, null);
  2352. INSERT INTO `ibrand_goods_category` VALUES ('498', '146', '1', null, null);
  2353. INSERT INTO `ibrand_goods_category` VALUES ('499', '146', '3', null, null);
  2354. INSERT INTO `ibrand_goods_category` VALUES ('500', '146', '2', null, null);
  2355. INSERT INTO `ibrand_goods_category` VALUES ('501', '146', '6', null, null);
  2356. INSERT INTO `ibrand_goods_category` VALUES ('502', '147', '18', null, null);
  2357. INSERT INTO `ibrand_goods_category` VALUES ('503', '147', '43', null, null);
  2358. INSERT INTO `ibrand_goods_category` VALUES ('504', '147', '1', null, null);
  2359. INSERT INTO `ibrand_goods_category` VALUES ('505', '147', '4', null, null);
  2360. INSERT INTO `ibrand_goods_category` VALUES ('506', '147', '2', null, null);
  2361. INSERT INTO `ibrand_goods_category` VALUES ('507', '147', '8', null, null);
  2362. INSERT INTO `ibrand_goods_category` VALUES ('508', '148', '18', null, null);
  2363. INSERT INTO `ibrand_goods_category` VALUES ('509', '148', '43', null, null);
  2364. INSERT INTO `ibrand_goods_category` VALUES ('510', '148', '1', null, null);
  2365. INSERT INTO `ibrand_goods_category` VALUES ('511', '148', '4', null, null);
  2366. INSERT INTO `ibrand_goods_category` VALUES ('512', '148', '2', null, null);
  2367. INSERT INTO `ibrand_goods_category` VALUES ('513', '148', '8', null, null);
  2368. INSERT INTO `ibrand_goods_category` VALUES ('514', '149', '18', null, null);
  2369. INSERT INTO `ibrand_goods_category` VALUES ('515', '149', '43', null, null);
  2370. INSERT INTO `ibrand_goods_category` VALUES ('516', '149', '6', null, null);
  2371. INSERT INTO `ibrand_goods_category` VALUES ('517', '149', '2', null, null);
  2372. INSERT INTO `ibrand_goods_category` VALUES ('518', '149', '1', null, null);
  2373. INSERT INTO `ibrand_goods_category` VALUES ('519', '149', '3', null, null);
  2374. INSERT INTO `ibrand_goods_category` VALUES ('520', '150', '18', null, null);
  2375. INSERT INTO `ibrand_goods_category` VALUES ('521', '150', '43', null, null);
  2376. INSERT INTO `ibrand_goods_category` VALUES ('522', '150', '1', null, null);
  2377. INSERT INTO `ibrand_goods_category` VALUES ('523', '150', '4', null, null);
  2378. INSERT INTO `ibrand_goods_category` VALUES ('524', '150', '2', null, null);
  2379. INSERT INTO `ibrand_goods_category` VALUES ('525', '150', '8', null, null);
  2380. INSERT INTO `ibrand_goods_category` VALUES ('526', '151', '18', null, null);
  2381. INSERT INTO `ibrand_goods_category` VALUES ('527', '151', '43', null, null);
  2382. INSERT INTO `ibrand_goods_category` VALUES ('528', '151', '1', null, null);
  2383. INSERT INTO `ibrand_goods_category` VALUES ('529', '151', '3', null, null);
  2384. INSERT INTO `ibrand_goods_category` VALUES ('530', '151', '2', null, null);
  2385. INSERT INTO `ibrand_goods_category` VALUES ('531', '151', '6', null, null);
  2386. INSERT INTO `ibrand_goods_category` VALUES ('532', '152', '18', null, null);
  2387. INSERT INTO `ibrand_goods_category` VALUES ('533', '152', '43', null, null);
  2388. INSERT INTO `ibrand_goods_category` VALUES ('534', '152', '2', null, null);
  2389. INSERT INTO `ibrand_goods_category` VALUES ('535', '152', '8', null, null);
  2390. INSERT INTO `ibrand_goods_category` VALUES ('536', '153', '18', null, null);
  2391. INSERT INTO `ibrand_goods_category` VALUES ('537', '153', '43', null, null);
  2392. INSERT INTO `ibrand_goods_category` VALUES ('538', '153', '1', null, null);
  2393. INSERT INTO `ibrand_goods_category` VALUES ('539', '153', '3', null, null);
  2394. INSERT INTO `ibrand_goods_category` VALUES ('540', '153', '2', null, null);
  2395. INSERT INTO `ibrand_goods_category` VALUES ('541', '153', '6', null, null);
  2396. INSERT INTO `ibrand_goods_category` VALUES ('542', '154', '1', null, null);
  2397. INSERT INTO `ibrand_goods_category` VALUES ('543', '154', '3', null, null);
  2398. INSERT INTO `ibrand_goods_category` VALUES ('544', '154', '18', null, null);
  2399. INSERT INTO `ibrand_goods_category` VALUES ('545', '154', '43', null, null);
  2400. INSERT INTO `ibrand_goods_category` VALUES ('546', '154', '2', null, null);
  2401. INSERT INTO `ibrand_goods_category` VALUES ('547', '154', '6', null, null);
  2402. INSERT INTO `ibrand_goods_category` VALUES ('548', '155', '18', null, null);
  2403. INSERT INTO `ibrand_goods_category` VALUES ('549', '155', '43', null, null);
  2404. INSERT INTO `ibrand_goods_category` VALUES ('550', '155', '1', null, null);
  2405. INSERT INTO `ibrand_goods_category` VALUES ('551', '155', '4', null, null);
  2406. INSERT INTO `ibrand_goods_category` VALUES ('552', '155', '2', null, null);
  2407. INSERT INTO `ibrand_goods_category` VALUES ('553', '155', '8', null, null);
  2408. INSERT INTO `ibrand_goods_category` VALUES ('554', '156', '18', null, null);
  2409. INSERT INTO `ibrand_goods_category` VALUES ('555', '156', '43', null, null);
  2410. INSERT INTO `ibrand_goods_category` VALUES ('556', '156', '1', null, null);
  2411. INSERT INTO `ibrand_goods_category` VALUES ('557', '156', '3', null, null);
  2412. INSERT INTO `ibrand_goods_category` VALUES ('558', '156', '2', null, null);
  2413. INSERT INTO `ibrand_goods_category` VALUES ('559', '156', '6', null, null);
  2414. INSERT INTO `ibrand_goods_category` VALUES ('560', '157', '18', null, null);
  2415. INSERT INTO `ibrand_goods_category` VALUES ('561', '157', '43', null, null);
  2416. INSERT INTO `ibrand_goods_category` VALUES ('562', '157', '1', null, null);
  2417. INSERT INTO `ibrand_goods_category` VALUES ('563', '157', '4', null, null);
  2418. INSERT INTO `ibrand_goods_category` VALUES ('564', '157', '2', null, null);
  2419. INSERT INTO `ibrand_goods_category` VALUES ('565', '157', '8', null, null);
  2420. INSERT INTO `ibrand_goods_category` VALUES ('566', '158', '41', null, null);
  2421. INSERT INTO `ibrand_goods_category` VALUES ('567', '158', '27', null, null);
  2422. INSERT INTO `ibrand_goods_category` VALUES ('568', '158', '31', null, null);
  2423. INSERT INTO `ibrand_goods_category` VALUES ('569', '159', '45', null, null);
  2424. INSERT INTO `ibrand_goods_category` VALUES ('570', '159', '46', null, null);
  2425. INSERT INTO `ibrand_goods_category` VALUES ('571', '160', '45', null, null);
  2426. INSERT INTO `ibrand_goods_category` VALUES ('572', '160', '46', null, null);
  2427. INSERT INTO `ibrand_goods_category` VALUES ('573', '161', '45', null, null);
  2428. INSERT INTO `ibrand_goods_category` VALUES ('574', '161', '47', null, null);
  2429. INSERT INTO `ibrand_goods_category` VALUES ('575', '162', '45', null, null);
  2430. INSERT INTO `ibrand_goods_category` VALUES ('576', '162', '47', null, null);
  2431. INSERT INTO `ibrand_goods_category` VALUES ('577', '163', '11', null, null);
  2432. INSERT INTO `ibrand_goods_category` VALUES ('578', '163', '18', null, null);
  2433. INSERT INTO `ibrand_goods_category` VALUES ('579', '163', '43', null, null);
  2434. INSERT INTO `ibrand_goods_category` VALUES ('580', '163', '1', null, null);
  2435. INSERT INTO `ibrand_goods_category` VALUES ('581', '163', '4', null, null);
  2436. INSERT INTO `ibrand_goods_category` VALUES ('582', '163', '2', null, null);
  2437. INSERT INTO `ibrand_goods_category` VALUES ('583', '163', '8', null, null);
  2438. INSERT INTO `ibrand_goods_category` VALUES ('584', '164', '18', null, null);
  2439. INSERT INTO `ibrand_goods_category` VALUES ('585', '164', '43', null, null);
  2440. INSERT INTO `ibrand_goods_category` VALUES ('586', '164', '2', null, null);
  2441. INSERT INTO `ibrand_goods_category` VALUES ('587', '164', '6', null, null);
  2442. INSERT INTO `ibrand_goods_category` VALUES ('588', '165', '18', null, null);
  2443. INSERT INTO `ibrand_goods_category` VALUES ('589', '165', '43', null, null);
  2444. INSERT INTO `ibrand_goods_category` VALUES ('590', '165', '6', null, null);
  2445. INSERT INTO `ibrand_goods_category` VALUES ('591', '165', '2', null, null);
  2446. INSERT INTO `ibrand_goods_category` VALUES ('592', '165', '1', null, null);
  2447. INSERT INTO `ibrand_goods_category` VALUES ('593', '165', '3', null, null);
  2448. INSERT INTO `ibrand_goods_category` VALUES ('594', '166', '48', null, null);
  2449. INSERT INTO `ibrand_goods_category` VALUES ('595', '166', '49', null, null);
  2450. INSERT INTO `ibrand_goods_category` VALUES ('596', '167', '48', null, null);
  2451. INSERT INTO `ibrand_goods_category` VALUES ('597', '167', '49', null, null);
  2452. INSERT INTO `ibrand_goods_category` VALUES ('598', '168', '11', null, null);
  2453. INSERT INTO `ibrand_goods_category` VALUES ('599', '168', '18', null, null);
  2454. INSERT INTO `ibrand_goods_category` VALUES ('600', '168', '43', null, null);
  2455. INSERT INTO `ibrand_goods_category` VALUES ('601', '168', '2', null, null);
  2456. INSERT INTO `ibrand_goods_category` VALUES ('602', '169', '48', null, null);
  2457. INSERT INTO `ibrand_goods_category` VALUES ('603', '169', '49', null, null);
  2458. INSERT INTO `ibrand_goods_category` VALUES ('604', '170', '20', null, null);
  2459. INSERT INTO `ibrand_goods_category` VALUES ('605', '170', '24', null, null);
  2460. INSERT INTO `ibrand_goods_category` VALUES ('606', '171', '50', null, null);
  2461. INSERT INTO `ibrand_goods_category` VALUES ('607', '172', '53', null, null);
  2462. INSERT INTO `ibrand_goods_category` VALUES ('608', '170', '11', null, null);
  2463. INSERT INTO `ibrand_goods_category` VALUES ('609', '164', '11', null, null);
  2464. INSERT INTO `ibrand_goods_category` VALUES ('610', '156', '11', null, null);
  2465. INSERT INTO `ibrand_goods_category` VALUES ('611', '153', '11', null, null);
  2466. INSERT INTO `ibrand_goods_category` VALUES ('612', '148', '11', null, null);
  2467. INSERT INTO `ibrand_goods_category` VALUES ('613', '135', '11', null, null);
  2468. INSERT INTO `ibrand_goods_category` VALUES ('614', '137', '11', null, null);
  2469. INSERT INTO `ibrand_goods_category` VALUES ('615', '152', '11', null, null);
  2470. INSERT INTO `ibrand_goods_category` VALUES ('617', '152', '10', null, null);
  2471. INSERT INTO `ibrand_goods_category` VALUES ('618', '152', '54', null, null);
  2472. -- ----------------------------
  2473. -- Table structure for ibrand_goods_model
  2474. -- ----------------------------
  2475. DROP TABLE IF EXISTS `ibrand_goods_model`;
  2476. CREATE TABLE `ibrand_goods_model` (
  2477. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  2478. `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  2479. `spec_ids` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  2480. `created_at` timestamp NULL DEFAULT NULL,
  2481. `updated_at` timestamp NULL DEFAULT NULL,
  2482. `deleted_at` timestamp NULL DEFAULT NULL,
  2483. PRIMARY KEY (`id`)
  2484. ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
  2485. -- ----------------------------
  2486. -- Records of ibrand_goods_model
  2487. -- ----------------------------
  2488. INSERT INTO `ibrand_goods_model` VALUES ('1', '裤子', '1,2', '2017-05-03 12:44:33', '2017-05-03 12:44:33', null);
  2489. INSERT INTO `ibrand_goods_model` VALUES ('2', '裙装', '1,2', '2017-05-11 12:01:15', '2017-05-11 12:01:15', null);
  2490. INSERT INTO `ibrand_goods_model` VALUES ('3', '上装', '1,2', '2017-05-11 12:12:14', '2017-05-11 12:12:14', null);
  2491. INSERT INTO `ibrand_goods_model` VALUES ('4', '伞', '1,2', '2017-09-22 13:16:21', '2017-09-22 13:16:21', null);
  2492. INSERT INTO `ibrand_goods_model` VALUES ('5', '玩具', '1,2', '2017-10-16 15:02:44', '2017-10-16 15:02:44', null);
  2493. INSERT INTO `ibrand_goods_model` VALUES ('7', '亲子装', '1,2', '2018-05-15 09:54:21', '2018-05-15 09:54:21', null);
  2494. INSERT INTO `ibrand_goods_model` VALUES ('8', '家居服/毛毯', '1,2', '2018-05-21 15:19:14', '2018-06-05 16:35:14', null);
  2495. INSERT INTO `ibrand_goods_model` VALUES ('9', '防晒服', '1,2', '2018-05-21 15:20:30', '2018-05-21 15:20:30', null);
  2496. INSERT INTO `ibrand_goods_model` VALUES ('11', '防蚊防晒', '1,2', '2018-06-05 15:57:05', '2018-06-05 15:57:05', null);
  2497. INSERT INTO `ibrand_goods_model` VALUES ('12', '帽子', '1,2', '2018-08-16 16:11:39', '2018-08-16 16:11:39', null);
  2498. INSERT INTO `ibrand_goods_model` VALUES ('13', '童鞋', '1,2', '2018-09-03 14:41:57', '2018-09-03 14:41:57', null);
  2499. -- ----------------------------
  2500. -- Table structure for ibrand_goods_model_attribute_relation
  2501. -- ----------------------------
  2502. DROP TABLE IF EXISTS `ibrand_goods_model_attribute_relation`;
  2503. CREATE TABLE `ibrand_goods_model_attribute_relation` (
  2504. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  2505. `model_id` int(10) unsigned NOT NULL,
  2506. `attribute_id` int(10) unsigned NOT NULL,
  2507. `created_at` timestamp NULL DEFAULT NULL,
  2508. `updated_at` timestamp NULL DEFAULT NULL,
  2509. `deleted_at` timestamp NULL DEFAULT NULL,
  2510. PRIMARY KEY (`id`)
  2511. ) ENGINE=InnoDB AUTO_INCREMENT=143 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
  2512. -- ----------------------------
  2513. -- Records of ibrand_goods_model_attribute_relation
  2514. -- ----------------------------
  2515. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('1', '1', '1', null, null, null);
  2516. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('2', '1', '2', null, null, null);
  2517. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('3', '1', '3', null, null, null);
  2518. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('4', '1', '4', null, null, null);
  2519. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('5', '1', '5', null, null, null);
  2520. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('6', '1', '11', null, null, null);
  2521. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('7', '2', '2', null, null, null);
  2522. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('8', '2', '3', null, null, null);
  2523. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('9', '2', '4', null, null, null);
  2524. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('10', '2', '5', null, null, null);
  2525. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('12', '2', '7', null, null, null);
  2526. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('13', '2', '9', null, null, null);
  2527. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('14', '2', '10', null, null, null);
  2528. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('15', '1', '13', null, null, null);
  2529. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('16', '3', '1', null, null, null);
  2530. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('17', '3', '2', null, null, null);
  2531. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('18', '3', '3', null, null, null);
  2532. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('19', '3', '4', null, null, null);
  2533. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('20', '3', '5', null, null, null);
  2534. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('21', '3', '6', null, null, null);
  2535. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('22', '3', '7', null, null, null);
  2536. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('23', '3', '8', null, null, null);
  2537. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('24', '4', '14', null, null, null);
  2538. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('25', '4', '15', null, null, null);
  2539. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('26', '4', '16', null, null, null);
  2540. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('27', '7', '1', null, null, null);
  2541. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('28', '7', '2', null, null, null);
  2542. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('29', '7', '3', null, null, null);
  2543. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('30', '7', '4', null, null, null);
  2544. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('31', '7', '5', null, null, null);
  2545. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('32', '7', '6', null, null, null);
  2546. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('33', '7', '22', null, null, null);
  2547. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('35', '1', '17', null, null, null);
  2548. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('36', '1', '18', null, null, null);
  2549. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('38', '1', '25', null, null, null);
  2550. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('39', '1', '26', null, null, null);
  2551. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('40', '1', '27', null, null, null);
  2552. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('41', '2', '17', null, null, null);
  2553. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('43', '2', '26', null, null, null);
  2554. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('44', '2', '27', null, null, null);
  2555. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('45', '7', '17', null, null, null);
  2556. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('46', '7', '24', null, null, null);
  2557. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('47', '7', '26', null, null, null);
  2558. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('48', '7', '27', null, null, null);
  2559. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('49', '3', '17', null, null, null);
  2560. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('50', '3', '18', null, null, null);
  2561. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('51', '3', '26', null, null, null);
  2562. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('52', '3', '27', null, null, null);
  2563. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('54', '8', '2', null, null, null);
  2564. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('57', '8', '5', null, null, null);
  2565. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('63', '9', '1', null, null, null);
  2566. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('64', '9', '2', null, null, null);
  2567. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('65', '9', '3', null, null, null);
  2568. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('66', '9', '4', null, null, null);
  2569. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('67', '9', '5', null, null, null);
  2570. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('68', '9', '6', null, null, null);
  2571. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('69', '9', '7', null, null, null);
  2572. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('70', '9', '18', null, null, null);
  2573. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('71', '9', '19', null, null, null);
  2574. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('72', '10', '1', null, null, null);
  2575. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('73', '10', '2', null, null, null);
  2576. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('74', '10', '3', null, null, null);
  2577. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('75', '10', '4', null, null, null);
  2578. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('76', '10', '5', null, null, null);
  2579. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('77', '10', '6', null, null, null);
  2580. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('78', '10', '7', null, null, null);
  2581. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('79', '10', '8', null, null, null);
  2582. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('80', '10', '17', null, null, null);
  2583. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('81', '10', '18', null, null, null);
  2584. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('82', '10', '26', null, null, null);
  2585. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('83', '10', '27', null, null, null);
  2586. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('89', '11', '36', null, null, null);
  2587. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('92', '8', '36', null, null, null);
  2588. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('98', '11', '44', null, null, null);
  2589. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('105', '11', '31', null, null, null);
  2590. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('109', '11', '39', null, null, null);
  2591. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('113', '11', '4', null, null, null);
  2592. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('114', '11', '35', null, null, null);
  2593. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('115', '11', '32', null, null, null);
  2594. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('116', '11', '34', null, null, null);
  2595. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('117', '11', '37', null, null, null);
  2596. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('118', '11', '38', null, null, null);
  2597. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('119', '11', '47', null, null, null);
  2598. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('120', '3', '20', null, null, null);
  2599. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('121', '12', '1', null, null, null);
  2600. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('122', '12', '2', null, null, null);
  2601. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('123', '12', '4', null, null, null);
  2602. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('124', '12', '7', null, null, null);
  2603. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('125', '12', '18', null, null, null);
  2604. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('126', '12', '26', null, null, null);
  2605. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('127', '13', '1', null, null, null);
  2606. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('128', '13', '2', null, null, null);
  2607. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('129', '13', '4', null, null, null);
  2608. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('130', '13', '7', null, null, null);
  2609. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('131', '13', '12', null, null, null);
  2610. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('132', '13', '20', null, null, null);
  2611. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('133', '13', '18', null, null, null);
  2612. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('134', '13', '48', null, null, null);
  2613. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('135', '13', '49', null, null, null);
  2614. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('136', '13', '50', null, null, null);
  2615. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('137', '13', '51', null, null, null);
  2616. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('138', '13', '52', null, null, null);
  2617. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('139', '13', '53', null, null, null);
  2618. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('140', '13', '54', null, null, null);
  2619. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('141', '13', '55', null, null, null);
  2620. INSERT INTO `ibrand_goods_model_attribute_relation` VALUES ('142', '13', '56', null, null, null);
  2621. -- ----------------------------
  2622. -- Table structure for ibrand_goods_photo
  2623. -- ----------------------------
  2624. DROP TABLE IF EXISTS `ibrand_goods_photo`;
  2625. CREATE TABLE `ibrand_goods_photo` (
  2626. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  2627. `goods_id` int(10) unsigned NOT NULL,
  2628. `url` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  2629. `sort` int(11) NOT NULL DEFAULT '0',
  2630. `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  2631. `is_default` tinyint(4) NOT NULL DEFAULT '1',
  2632. `flag` tinyint(4) NOT NULL DEFAULT '1',
  2633. `created_at` timestamp NULL DEFAULT NULL,
  2634. `updated_at` timestamp NULL DEFAULT NULL,
  2635. `deleted_at` timestamp NULL DEFAULT NULL,
  2636. PRIMARY KEY (`id`)
  2637. ) ENGINE=InnoDB AUTO_INCREMENT=2000 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
  2638. -- ----------------------------
  2639. -- Records of ibrand_goods_photo
  2640. -- ----------------------------
  2641. INSERT INTO `ibrand_goods_photo` VALUES ('6', '1', 'http://admin.viperky.com/uploads/Mur0T1aUCV.jpg', '9', 'bcb61de75e8c12f3f23f', '1', '1', '2017-05-11 11:51:10', '2017-05-11 11:51:10', null);
  2642. INSERT INTO `ibrand_goods_photo` VALUES ('7', '1', 'http://admin.viperky.com/uploads/ChTkDZFxbC.jpg', '9', '6da9db542f0d53c79ccf', '0', '1', '2017-05-11 11:51:10', '2017-05-11 11:51:10', null);
  2643. INSERT INTO `ibrand_goods_photo` VALUES ('8', '1', 'http://admin.viperky.com/uploads/pfATUqoXwb.jpg', '9', 'ec4ad01b5e2f5d880820', '0', '1', '2017-05-11 11:51:10', '2017-05-11 11:51:10', null);
  2644. INSERT INTO `ibrand_goods_photo` VALUES ('9', '1', 'http://admin.viperky.com/uploads/xqoTuDdveo.jpg', '9', 'f01fe06349d586322366', '0', '1', '2017-05-11 11:51:10', '2017-05-11 11:51:10', null);
  2645. INSERT INTO `ibrand_goods_photo` VALUES ('10', '1', 'http://admin.viperky.com/uploads/7Psinwp0XL.jpg', '9', 'fa7b17f8f39459070cc1', '0', '1', '2017-05-11 11:51:10', '2017-05-11 11:51:10', null);
  2646. INSERT INTO `ibrand_goods_photo` VALUES ('23', '2', 'http://admin.viperky.com/uploads/fHKf65Xc6F.jpg', '9', 'f88c6538816faad91c3a', '1', '1', '2017-05-15 11:58:17', '2017-05-15 11:58:17', null);
  2647. INSERT INTO `ibrand_goods_photo` VALUES ('24', '2', 'http://admin.viperky.com/uploads/FkYYhvrCPJ.jpg', '9', '2fdd0c026cce4c34ff79', '0', '1', '2017-05-15 11:58:17', '2017-05-15 11:58:17', null);
  2648. INSERT INTO `ibrand_goods_photo` VALUES ('25', '2', 'http://admin.viperky.com/uploads/qPdTsRHz9C.jpg', '9', '41892b58e0705c14161a', '0', '1', '2017-05-15 11:58:17', '2017-05-15 11:58:17', null);
  2649. INSERT INTO `ibrand_goods_photo` VALUES ('26', '2', 'http://admin.viperky.com/uploads/eBIrlWyd8X.jpg', '9', 'c18a9e587853853faae3', '0', '1', '2017-05-15 11:58:17', '2017-05-15 11:58:17', null);
  2650. INSERT INTO `ibrand_goods_photo` VALUES ('27', '2', 'http://admin.viperky.com/uploads/L9EQO1Ujo3.jpg', '9', 'a6ca6e279f0cd21ccfab', '0', '1', '2017-05-15 11:58:17', '2017-05-15 11:58:17', null);
  2651. INSERT INTO `ibrand_goods_photo` VALUES ('28', '2', 'http://admin.viperky.com/uploads/K87sF9bBT9.jpg', '9', 'b1f57ddbf310f2ca695a', '0', '1', '2017-05-15 11:58:17', '2017-05-15 11:58:17', null);
  2652. INSERT INTO `ibrand_goods_photo` VALUES ('29', '3', 'http://admin.viperky.com/uploads/WW5Ye37FvP.jpg', '9', '6b21d9739ef2badddb7f', '1', '1', '2017-05-15 15:22:03', '2017-05-15 15:22:03', null);
  2653. INSERT INTO `ibrand_goods_photo` VALUES ('30', '3', 'http://admin.viperky.com/uploads/NgVHH9Ikat.jpg', '9', 'e23d6555ed96e7874612', '0', '1', '2017-05-15 15:22:03', '2017-05-15 15:22:03', null);
  2654. INSERT INTO `ibrand_goods_photo` VALUES ('31', '3', 'http://admin.viperky.com/uploads/gCLYFgy5KK.jpg', '9', 'b11f0dbd019989f12d4c', '0', '1', '2017-05-15 15:22:03', '2017-05-15 15:22:03', null);
  2655. INSERT INTO `ibrand_goods_photo` VALUES ('32', '3', 'http://admin.viperky.com/uploads/Y9uz2MVelv.jpg', '9', '4a48079a58df54deb9b0', '0', '1', '2017-05-15 15:22:03', '2017-05-15 15:22:03', null);
  2656. INSERT INTO `ibrand_goods_photo` VALUES ('33', '3', 'http://admin.viperky.com/uploads/mULbx4vTKU.jpg', '9', 'cf95c019ead412e7d8ad', '0', '1', '2017-05-15 15:22:03', '2017-05-15 15:22:03', null);
  2657. INSERT INTO `ibrand_goods_photo` VALUES ('34', '4', 'http://admin.viperky.com/uploads/kvcOIzDzVA.jpg', '9', '6b52873b52d9c1eb2a6c', '1', '1', '2017-05-15 15:29:10', '2017-05-15 15:29:10', null);
  2658. INSERT INTO `ibrand_goods_photo` VALUES ('35', '4', 'http://admin.viperky.com/uploads/GL6q8WX2I5.jpg', '9', '17fb0123b5f49f08ba03', '0', '1', '2017-05-15 15:29:10', '2017-05-15 15:29:10', null);
  2659. INSERT INTO `ibrand_goods_photo` VALUES ('36', '4', 'http://admin.viperky.com/uploads/zWL2yUXkrm.jpg', '9', '9011f1965b86c6a0998f', '0', '1', '2017-05-15 15:29:10', '2017-05-15 15:29:10', null);
  2660. INSERT INTO `ibrand_goods_photo` VALUES ('37', '4', 'http://admin.viperky.com/uploads/UEAXfAJo0I.jpg', '9', '5cbca9c381f3dd483d1d', '0', '1', '2017-05-15 15:29:10', '2017-05-15 15:29:10', null);
  2661. INSERT INTO `ibrand_goods_photo` VALUES ('38', '4', 'http://admin.viperky.com/uploads/G5ZOLXPUhQ.jpg', '9', 'edefdc17751ce0bbbb73', '0', '1', '2017-05-15 15:29:10', '2017-05-15 15:29:10', null);
  2662. INSERT INTO `ibrand_goods_photo` VALUES ('39', '5', 'http://admin.viperky.com/uploads/AXRYRIOOgt.jpg', '9', '2682c2c88040a710dc46', '1', '1', '2017-05-15 15:36:23', '2017-05-15 15:36:23', null);
  2663. INSERT INTO `ibrand_goods_photo` VALUES ('40', '5', 'http://admin.viperky.com/uploads/x6cYAOzxeq.jpg', '9', 'fbfc42cf1e7a389b6467', '0', '1', '2017-05-15 15:36:23', '2017-05-15 15:36:23', null);
  2664. INSERT INTO `ibrand_goods_photo` VALUES ('41', '5', 'http://admin.viperky.com/uploads/CW2qKExeUu.jpg', '9', '5ce8b5846b6c14e22c65', '0', '1', '2017-05-15 15:36:23', '2017-05-15 15:36:23', null);
  2665. INSERT INTO `ibrand_goods_photo` VALUES ('42', '5', 'http://admin.viperky.com/uploads/9h3wOBZ4Jd.jpg', '9', '6189d4230a25c0ee81b0', '0', '1', '2017-05-15 15:36:23', '2017-05-15 15:36:23', null);
  2666. INSERT INTO `ibrand_goods_photo` VALUES ('43', '5', 'http://admin.viperky.com/uploads/6rSxd9MjEZ.jpg', '9', '8f5c70a3453003d5b4c0', '0', '1', '2017-05-15 15:36:23', '2017-05-15 15:36:23', null);
  2667. INSERT INTO `ibrand_goods_photo` VALUES ('44', '6', 'http://admin.viperky.com/uploads/rGP6aqDWdc.jpg', '9', 'a413cba72c50645ade14', '1', '1', '2017-05-15 15:45:37', '2017-05-15 15:45:37', null);
  2668. INSERT INTO `ibrand_goods_photo` VALUES ('45', '6', 'http://admin.viperky.com/uploads/nWZlYpBOEU.jpg', '9', 'd8b164e3c11f45c6a009', '0', '1', '2017-05-15 15:45:37', '2017-05-15 15:45:37', null);
  2669. INSERT INTO `ibrand_goods_photo` VALUES ('46', '6', 'http://admin.viperky.com/uploads/xF8dL6gGqI.jpg', '9', 'f807963c446dc7ba284c', '0', '1', '2017-05-15 15:45:37', '2017-05-15 15:45:37', null);
  2670. INSERT INTO `ibrand_goods_photo` VALUES ('47', '6', 'http://admin.viperky.com/uploads/nrljcXjlrR.jpg', '9', 'e17e466ec300716f4623', '0', '1', '2017-05-15 15:45:37', '2017-05-15 15:45:37', null);
  2671. INSERT INTO `ibrand_goods_photo` VALUES ('48', '6', 'http://admin.viperky.com/uploads/ytVKOHADRT.jpg', '9', '1d924efb34235e89599f', '0', '1', '2017-05-15 15:45:37', '2017-05-15 15:45:37', null);
  2672. INSERT INTO `ibrand_goods_photo` VALUES ('49', '7', 'http://admin.viperky.com/uploads/pd8GFZNwWK.jpg', '9', 'e3e95a31e3f0ac72b4bf', '1', '1', '2017-05-15 16:00:55', '2017-05-15 16:00:55', null);
  2673. INSERT INTO `ibrand_goods_photo` VALUES ('50', '7', 'http://admin.viperky.com/uploads/FbKx5NfvwG.jpg', '9', '36c084aec9e48f46187a', '0', '1', '2017-05-15 16:00:55', '2017-05-15 16:00:55', null);
  2674. INSERT INTO `ibrand_goods_photo` VALUES ('51', '7', 'http://admin.viperky.com/uploads/tByOeYbKpe.jpg', '9', 'c691b4105c5989083d98', '0', '1', '2017-05-15 16:00:55', '2017-05-15 16:00:55', null);
  2675. INSERT INTO `ibrand_goods_photo` VALUES ('52', '7', 'http://admin.viperky.com/uploads/zxIgFuPo1h.jpg', '9', '8faf6df36de88cb64acf', '0', '1', '2017-05-15 16:00:55', '2017-05-15 16:00:55', null);
  2676. INSERT INTO `ibrand_goods_photo` VALUES ('53', '7', 'http://admin.viperky.com/uploads/0MNI7yA1VR.jpg', '9', '7bd0dfc1bd338aeaf83b', '0', '1', '2017-05-15 16:00:55', '2017-05-15 16:00:55', null);
  2677. INSERT INTO `ibrand_goods_photo` VALUES ('54', '8', 'http://admin.viperky.com/uploads/rDJ3wYd7qK.jpg', '9', '0d9d0a2480e530468707', '1', '1', '2017-05-15 16:07:31', '2017-05-15 16:07:31', null);
  2678. INSERT INTO `ibrand_goods_photo` VALUES ('55', '8', 'http://admin.viperky.com/uploads/NGSAGIo4s8.jpg', '9', 'dc4cb6603cdf9ea4bd6d', '0', '1', '2017-05-15 16:07:31', '2017-05-15 16:07:31', null);
  2679. INSERT INTO `ibrand_goods_photo` VALUES ('56', '8', 'http://admin.viperky.com/uploads/pm0XUebpjB.jpg', '9', 'f5f27cf3966928d08e31', '0', '1', '2017-05-15 16:07:31', '2017-05-15 16:07:31', null);
  2680. INSERT INTO `ibrand_goods_photo` VALUES ('57', '8', 'http://admin.viperky.com/uploads/QRKVPWookn.jpg', '9', 'e35d564f34086bd72f0c', '0', '1', '2017-05-15 16:07:31', '2017-05-15 16:07:31', null);
  2681. INSERT INTO `ibrand_goods_photo` VALUES ('58', '8', 'http://admin.viperky.com/uploads/zR2CuTQQz0.jpg', '9', '3e3b18cb51e050aee8ef', '0', '1', '2017-05-15 16:07:31', '2017-05-15 16:07:31', null);
  2682. INSERT INTO `ibrand_goods_photo` VALUES ('59', '9', 'http://admin.viperky.com/uploads/ZHujwnos8f.jpg', '9', 'eeced9884355882874bd', '1', '1', '2017-05-15 16:13:34', '2017-05-15 16:13:34', null);
  2683. INSERT INTO `ibrand_goods_photo` VALUES ('60', '9', 'http://admin.viperky.com/uploads/aNwsRj47yM.jpg', '9', 'a86f06c51f642bcd62c6', '0', '1', '2017-05-15 16:13:34', '2017-05-15 16:13:34', null);
  2684. INSERT INTO `ibrand_goods_photo` VALUES ('61', '9', 'http://admin.viperky.com/uploads/70ttB2lIzf.jpg', '9', '296a84fa107caea08787', '0', '1', '2017-05-15 16:13:34', '2017-05-15 16:13:34', null);
  2685. INSERT INTO `ibrand_goods_photo` VALUES ('62', '9', 'http://admin.viperky.com/uploads/mgPW4tldrz.jpg', '9', '664812a6c80a9ede1ad9', '0', '1', '2017-05-15 16:13:34', '2017-05-15 16:13:34', null);
  2686. INSERT INTO `ibrand_goods_photo` VALUES ('63', '9', 'http://admin.viperky.com/uploads/SMlzsE6fhj.jpg', '9', 'd134fe8a391fa9e5061f', '0', '1', '2017-05-15 16:13:34', '2017-05-15 16:13:34', null);
  2687. INSERT INTO `ibrand_goods_photo` VALUES ('64', '10', 'http://admin.viperky.com/uploads/uCXuuuBI4U.jpg', '9', '46b195f25414c3bdda92', '1', '1', '2017-05-15 16:41:51', '2017-05-15 16:41:51', null);
  2688. INSERT INTO `ibrand_goods_photo` VALUES ('65', '10', 'http://admin.viperky.com/uploads/SX9wMfnz1A.jpg', '9', '1e6a2afa40f9ccce9e99', '0', '1', '2017-05-15 16:41:51', '2017-05-15 16:41:51', null);
  2689. INSERT INTO `ibrand_goods_photo` VALUES ('66', '10', 'http://admin.viperky.com/uploads/pXLJrnqdvN.jpg', '9', '37abf103da8c05fecab7', '0', '1', '2017-05-15 16:41:51', '2017-05-15 16:41:51', null);
  2690. INSERT INTO `ibrand_goods_photo` VALUES ('67', '10', 'http://admin.viperky.com/uploads/dHkKr7MsKx.jpg', '9', 'a25c80fa601a2103b575', '0', '1', '2017-05-15 16:41:51', '2017-05-15 16:41:51', null);
  2691. INSERT INTO `ibrand_goods_photo` VALUES ('68', '10', 'http://admin.viperky.com/uploads/hwEjDc7lKn.jpg', '9', '2483231b430e56afb642', '0', '1', '2017-05-15 16:41:51', '2017-05-15 16:41:51', null);
  2692. INSERT INTO `ibrand_goods_photo` VALUES ('69', '11', 'http://admin.viperky.com/uploads/hUcpOHtNJ8.jpg', '9', '28f75a9b14f4715c44f2', '1', '1', '2017-05-15 16:52:45', '2017-05-15 16:52:45', null);
  2693. INSERT INTO `ibrand_goods_photo` VALUES ('70', '11', 'http://admin.viperky.com/uploads/8fIumXpKYN.jpg', '9', 'd50e9c36b7b08d8329a4', '0', '1', '2017-05-15 16:52:45', '2017-05-15 16:52:45', null);
  2694. INSERT INTO `ibrand_goods_photo` VALUES ('71', '11', 'http://admin.viperky.com/uploads/Lq3ztyxLZX.jpg', '9', 'b73a13aa4930be5d3554', '0', '1', '2017-05-15 16:52:45', '2017-05-15 16:52:45', null);
  2695. INSERT INTO `ibrand_goods_photo` VALUES ('72', '11', 'http://admin.viperky.com/uploads/rKGLscss1J.jpg', '9', 'b95c5009cfface6bbaa6', '0', '1', '2017-05-15 16:52:45', '2017-05-15 16:52:45', null);
  2696. INSERT INTO `ibrand_goods_photo` VALUES ('73', '11', 'http://admin.viperky.com/uploads/IRUFgexMF4.jpg', '9', 'cb8ce54844fc4922c14f', '0', '1', '2017-05-15 16:52:45', '2017-05-15 16:52:45', null);
  2697. INSERT INTO `ibrand_goods_photo` VALUES ('74', '11', 'http://admin.viperky.com/uploads/ic83UGu9zM.jpg', '9', '4f936f1d41d598938f33', '0', '1', '2017-05-15 16:52:45', '2017-05-15 16:52:45', null);
  2698. INSERT INTO `ibrand_goods_photo` VALUES ('75', '11', 'http://admin.viperky.com/uploads/l45Ys8CMTk.jpg', '9', '7f41c21d25f1ebd8c3ea', '0', '1', '2017-05-15 16:52:45', '2017-05-15 16:52:45', null);
  2699. INSERT INTO `ibrand_goods_photo` VALUES ('76', '12', 'http://admin.viperky.com/uploads/k8OKH0uDdh.jpg', '9', '595b0884eadb89646edf', '1', '1', '2017-05-15 17:24:01', '2017-05-15 17:24:01', null);
  2700. INSERT INTO `ibrand_goods_photo` VALUES ('77', '12', 'http://admin.viperky.com/uploads/M0zDBjY2Bm.jpg', '9', 'b51654340e6aa9a7c977', '0', '1', '2017-05-15 17:24:01', '2017-05-15 17:24:01', null);
  2701. INSERT INTO `ibrand_goods_photo` VALUES ('78', '12', 'http://admin.viperky.com/uploads/NPv60EOknX.jpg', '9', '0f16fd646f777458aacb', '0', '1', '2017-05-15 17:24:01', '2017-05-15 17:24:01', null);
  2702. INSERT INTO `ibrand_goods_photo` VALUES ('79', '12', 'http://admin.viperky.com/uploads/LyRFRC8vFe.jpg', '9', '63d888de8174530adfb8', '0', '1', '2017-05-15 17:24:01', '2017-05-15 17:24:01', null);
  2703. INSERT INTO `ibrand_goods_photo` VALUES ('80', '12', 'http://admin.viperky.com/uploads/Vji4Vziu0v.jpg', '9', '2c4d590a532b993ff65c', '0', '1', '2017-05-15 17:24:01', '2017-05-15 17:24:01', null);
  2704. INSERT INTO `ibrand_goods_photo` VALUES ('87', '15', 'https://cdn.viperky.com/storage/images/20171018/gH5sCVVrYc.jpg', '9', '348929efdbd06892549f', '0', '1', '2017-10-18 22:12:12', '2017-10-18 22:12:12', null);
  2705. INSERT INTO `ibrand_goods_photo` VALUES ('88', '15', 'https://cdn.viperky.com/storage/images/20171018/NI1ntdNlKz.jpg', '9', 'dfbebf85d72de68df1d5', '0', '1', '2017-10-18 22:12:12', '2017-10-18 22:12:12', null);
  2706. INSERT INTO `ibrand_goods_photo` VALUES ('89', '15', 'https://cdn.viperky.com/storage/images/20171018/TPNPxi1IAQ.jpg', '9', '6d4878255ee3c344b37e', '1', '1', '2017-10-18 22:12:12', '2017-10-18 22:12:12', null);
  2707. INSERT INTO `ibrand_goods_photo` VALUES ('90', '16', 'https://cdn.viperky.com/storage/images/20171018/2HSs7xcIuS.jpg', '9', 'de9135a0cc0747692acc', '1', '1', '2017-10-18 22:22:04', '2017-10-18 22:22:04', null);
  2708. INSERT INTO `ibrand_goods_photo` VALUES ('91', '16', 'https://cdn.viperky.com/storage/images/20171018/nkyP7Xw38l.jpg', '9', '029cfb1b9a0e6429bcd3', '0', '1', '2017-10-18 22:22:04', '2017-10-18 22:22:04', null);
  2709. INSERT INTO `ibrand_goods_photo` VALUES ('92', '16', 'https://cdn.viperky.com/storage/images/20171018/OniCmuIXby.jpg', '9', '9bbdc3a3f67061276f58', '0', '1', '2017-10-18 22:22:04', '2017-10-18 22:22:04', null);
  2710. INSERT INTO `ibrand_goods_photo` VALUES ('93', '17', 'https://cdn.viperky.com/storage/images/20171018/xZdEpyQyfi.jpg', '9', '37db71ce9175dd865c4f', '0', '1', '2017-10-18 22:46:49', '2017-10-18 22:46:49', null);
  2711. INSERT INTO `ibrand_goods_photo` VALUES ('94', '17', 'https://cdn.viperky.com/storage/images/20171018/FwYqfxzjAQ.jpg', '9', '6e5a3a2f211a4a485c30', '0', '1', '2017-10-18 22:46:49', '2017-10-18 22:46:49', null);
  2712. INSERT INTO `ibrand_goods_photo` VALUES ('95', '17', 'https://cdn.viperky.com/storage/images/20171018/QRikr21Ozc.jpg', '9', '1c3d053825d176dd0c00', '1', '1', '2017-10-18 22:46:49', '2017-10-18 22:46:49', null);
  2713. INSERT INTO `ibrand_goods_photo` VALUES ('96', '18', 'https://cdn.viperky.com/storage/images/20171018/w0gVpGtQL2.jpg', '9', '66c9b8399bdb5ed4546b', '1', '1', '2017-10-18 22:52:47', '2017-10-18 22:52:47', null);
  2714. INSERT INTO `ibrand_goods_photo` VALUES ('97', '18', 'https://cdn.viperky.com/storage/images/20171018/xKq8l3ApUk.jpg', '9', '77ae31cb001c1c3b8dc1', '0', '1', '2017-10-18 22:52:47', '2017-10-18 22:52:47', null);
  2715. INSERT INTO `ibrand_goods_photo` VALUES ('98', '18', 'https://cdn.viperky.com/storage/images/20171018/1EMcfR9Qdb.jpg', '9', '9b2a08f6e812bd87accf', '0', '1', '2017-10-18 22:52:47', '2017-10-18 22:52:47', null);
  2716. INSERT INTO `ibrand_goods_photo` VALUES ('99', '19', 'https://cdn.viperky.com/storage/images/20171018/ilPacpXOTu.jpg', '9', '8c9ecb5ff9f45d7f3318', '1', '1', '2017-10-18 22:57:27', '2017-10-18 22:57:27', null);
  2717. INSERT INTO `ibrand_goods_photo` VALUES ('100', '19', 'https://cdn.viperky.com/storage/images/20171018/kE0dI5Jj6I.jpg', '9', 'e94505854e03b1102937', '0', '1', '2017-10-18 22:57:27', '2017-10-18 22:57:27', null);
  2718. INSERT INTO `ibrand_goods_photo` VALUES ('101', '20', 'https://cdn.viperky.com/storage/images/20171018/zVj1XjxeRP.jpg', '9', 'a12c5b0d33f4578b7736', '1', '1', '2017-10-18 22:59:15', '2017-10-18 22:59:15', null);
  2719. INSERT INTO `ibrand_goods_photo` VALUES ('102', '21', 'https://cdn.viperky.com/storage/images/20171018/xHFmGwCdvZ.jpg', '9', 'e0d3560bae0fa55e1930', '1', '1', '2017-10-18 23:04:10', '2017-10-18 23:04:10', null);
  2720. INSERT INTO `ibrand_goods_photo` VALUES ('103', '21', 'https://cdn.viperky.com/storage/images/20171018/s4K79I5sh9.jpg', '9', '728e8ed881b64a9c9c15', '0', '1', '2017-10-18 23:04:10', '2017-10-18 23:04:10', null);
  2721. INSERT INTO `ibrand_goods_photo` VALUES ('104', '21', 'https://cdn.viperky.com/storage/images/20171018/kovuaEL5LB.jpg', '9', 'cfbf389f559f70265414', '0', '1', '2017-10-18 23:04:10', '2017-10-18 23:04:10', null);
  2722. INSERT INTO `ibrand_goods_photo` VALUES ('105', '22', 'https://cdn.viperky.com/storage/images/20171018/mL9DUMJGGv.jpg', '9', 'c7baaf23fbb6e9608312', '1', '1', '2017-10-18 23:07:04', '2017-10-18 23:07:04', null);
  2723. INSERT INTO `ibrand_goods_photo` VALUES ('106', '22', 'https://cdn.viperky.com/storage/images/20171018/SG39xl8pUS.jpg', '9', 'de8d7eeea55033b4434c', '0', '1', '2017-10-18 23:07:04', '2017-10-18 23:07:04', null);
  2724. INSERT INTO `ibrand_goods_photo` VALUES ('107', '23', 'https://cdn.viperky.com/storage/images/20171018/BGoJeQObMz.jpg', '9', 'c7081337af1730bd93d8', '0', '1', '2017-10-18 23:08:06', '2017-10-18 23:08:06', null);
  2725. INSERT INTO `ibrand_goods_photo` VALUES ('108', '23', 'https://cdn.viperky.com/storage/images/20171018/9OWRlsgO37.jpg', '9', 'be510a4b926086636a99', '0', '1', '2017-10-18 23:08:06', '2017-10-18 23:08:06', null);
  2726. INSERT INTO `ibrand_goods_photo` VALUES ('109', '23', 'https://cdn.viperky.com/storage/images/20171018/CKkCuuLJZc.jpg', '9', '2ff45b8065043739be9b', '1', '1', '2017-10-18 23:08:06', '2017-10-18 23:08:06', null);
  2727. INSERT INTO `ibrand_goods_photo` VALUES ('110', '24', 'https://cdn.viperky.com/storage/images/20171018/ByvnR9pZcf.jpg', '9', '2a98c490845533955157', '1', '1', '2017-10-18 23:11:32', '2017-10-18 23:11:32', null);
  2728. INSERT INTO `ibrand_goods_photo` VALUES ('111', '24', 'https://cdn.viperky.com/storage/images/20171018/2kTHRyYAT8.jpg', '9', '3bfe042be87a3d0ef11b', '0', '1', '2017-10-18 23:11:32', '2017-10-18 23:11:32', null);
  2729. INSERT INTO `ibrand_goods_photo` VALUES ('112', '25', 'https://cdn.viperky.com/storage/images/20171018/01mSvGj5jD.jpg', '9', '13d220c75c211036168c', '0', '1', '2017-10-18 23:11:54', '2017-10-18 23:11:54', null);
  2730. INSERT INTO `ibrand_goods_photo` VALUES ('113', '25', 'https://cdn.viperky.com/storage/images/20171018/VYnD5WaK1Y.jpg', '9', 'e98e3254892c5abf0acd', '1', '1', '2017-10-18 23:11:54', '2017-10-18 23:11:54', null);
  2731. INSERT INTO `ibrand_goods_photo` VALUES ('114', '26', 'https://cdn.viperky.com/storage/images/20171018/CnMiKyuRUF.jpg', '9', 'ba13b1e85eb9d3b02dd4', '1', '1', '2017-10-18 23:16:04', '2017-10-18 23:16:04', null);
  2732. INSERT INTO `ibrand_goods_photo` VALUES ('115', '27', 'https://cdn.viperky.com/storage/images/20171018/86j9I2u3AU.jpg', '9', 'b55bbcf09a1a26c7c739', '1', '1', '2017-10-18 23:16:49', '2017-10-18 23:16:49', null);
  2733. INSERT INTO `ibrand_goods_photo` VALUES ('116', '28', 'https://cdn.viperky.com/storage/images/20171018/9MnoG0V4aJ.jpg', '9', 'd2554d643c0fc89910f3', '1', '1', '2017-10-18 23:18:53', '2017-10-18 23:18:53', null);
  2734. INSERT INTO `ibrand_goods_photo` VALUES ('119', '29', 'https://cdn.viperky.com/storage/images/20171018/qD7B2cr1m0.jpg', '9', 'bb8b38f69bc354c44a30', '1', '1', '2017-10-18 23:21:48', '2017-10-18 23:21:48', null);
  2735. INSERT INTO `ibrand_goods_photo` VALUES ('120', '29', 'https://cdn.viperky.com/storage/images/20171018/DYE2yM0gvX.jpg', '9', '3850aebba60eced09d56', '0', '1', '2017-10-18 23:21:48', '2017-10-18 23:21:48', null);
  2736. INSERT INTO `ibrand_goods_photo` VALUES ('121', '30', 'https://cdn.viperky.com/storage/images/20171018/I9DTSELLnn.jpg', '9', '6a2577521696506271d1', '1', '1', '2017-10-18 23:25:57', '2017-10-18 23:25:57', null);
  2737. INSERT INTO `ibrand_goods_photo` VALUES ('122', '30', 'https://cdn.viperky.com/storage/images/20171018/eLzgzLb1Pn.jpg', '9', '4faf4aa2894771f6a9c4', '0', '1', '2017-10-18 23:25:57', '2017-10-18 23:25:57', null);
  2738. INSERT INTO `ibrand_goods_photo` VALUES ('123', '31', 'https://cdn.viperky.com/storage/images/20171018/7pvIhHhle9.jpg', '9', '64228183c69dbcc91a18', '1', '1', '2017-10-18 23:32:08', '2017-10-18 23:32:08', null);
  2739. INSERT INTO `ibrand_goods_photo` VALUES ('124', '31', 'https://cdn.viperky.com/storage/images/20171018/D9WaWmnewo.jpg', '9', '54fad67d2dc56d9e478c', '0', '1', '2017-10-18 23:32:08', '2017-10-18 23:32:08', null);
  2740. INSERT INTO `ibrand_goods_photo` VALUES ('125', '31', 'https://cdn.viperky.com/storage/images/20171018/tg2oXRdJ07.jpg', '9', 'c3424b46952bf5369cee', '0', '1', '2017-10-18 23:32:08', '2017-10-18 23:32:08', null);
  2741. INSERT INTO `ibrand_goods_photo` VALUES ('126', '32', 'https://cdn.viperky.com/storage/images/20171018/5zAmDVa5he.jpg', '9', '530796da5abf8206d5c1', '1', '1', '2017-10-18 23:36:24', '2017-10-18 23:36:24', null);
  2742. INSERT INTO `ibrand_goods_photo` VALUES ('127', '32', 'https://cdn.viperky.com/storage/images/20171018/U3Fmb6nr1q.jpg', '9', 'fa8f44b7f5af2411684d', '0', '1', '2017-10-18 23:36:24', '2017-10-18 23:36:24', null);
  2743. INSERT INTO `ibrand_goods_photo` VALUES ('128', '32', 'https://cdn.viperky.com/storage/images/20171018/LrQWP2gOI7.jpg', '9', '667e7af3fb8b8b38eeda', '0', '1', '2017-10-18 23:36:24', '2017-10-18 23:36:24', null);
  2744. INSERT INTO `ibrand_goods_photo` VALUES ('132', '14', 'https://cdn.viperky.com/storage/images/20171016/16KrfmUqvK.jpg', '9', '6253a6f378d040b0d14a', '1', '1', '2017-10-19 23:18:03', '2017-10-19 23:18:03', null);
  2745. INSERT INTO `ibrand_goods_photo` VALUES ('133', '14', 'https://cdn.viperky.com/storage/images/20171019/7k2h1N0c9U.jpg', '2', 'eacf5263ada6a0489426', '0', '1', '2017-10-19 23:18:03', '2017-10-19 23:18:03', null);
  2746. INSERT INTO `ibrand_goods_photo` VALUES ('134', '14', 'https://cdn.viperky.com/storage/images/20171016/WLYJhKZBVQ.jpg', '8', '624c933261ecc3860eda', '0', '1', '2017-10-19 23:18:03', '2017-10-19 23:18:03', null);
  2747. INSERT INTO `ibrand_goods_photo` VALUES ('141', '34', 'https://cdn.viperky.com/storage/images/20171109/eeRMsXwZ5q.jpg', '9', 'f3c71b0320b3786bb067', '1', '1', '2017-11-09 17:38:05', '2017-11-09 17:38:05', null);
  2748. INSERT INTO `ibrand_goods_photo` VALUES ('142', '34', 'https://cdn.viperky.com/storage/images/20171109/PHbNwDa1LV.jpg', '9', 'd8eccf1d693b55ae0d31', '0', '1', '2017-11-09 17:38:05', '2017-11-09 17:38:05', null);
  2749. INSERT INTO `ibrand_goods_photo` VALUES ('143', '35', 'https://cdn.viperky.com/storage/images/20171109/JmZuys1UCw.jpg', '9', '48472f7627aa89242056', '1', '1', '2017-11-09 17:40:33', '2017-11-09 17:40:33', null);
  2750. INSERT INTO `ibrand_goods_photo` VALUES ('144', '36', 'https://cdn.viperky.com/storage/images/20171213/Tw89NLzAYY.jpg', '9', '0cbe4e05b04fd249df35', '1', '1', '2017-12-13 17:43:51', '2017-12-13 17:43:51', null);
  2751. INSERT INTO `ibrand_goods_photo` VALUES ('145', '36', 'https://cdn.viperky.com/storage/images/20171213/8dRMzAMgnd.jpg', '9', '181460241a9fcda680b2', '0', '1', '2017-12-13 17:43:51', '2017-12-13 17:43:51', null);
  2752. INSERT INTO `ibrand_goods_photo` VALUES ('146', '36', 'https://cdn.viperky.com/storage/images/20171213/FCSlVzjYGD.jpg', '9', '8f866a3babd16b9ad428', '0', '1', '2017-12-13 17:43:51', '2017-12-13 17:43:51', null);
  2753. INSERT INTO `ibrand_goods_photo` VALUES ('147', '37', 'https://cdn.viperky.com/storage/images/20171215/51pjpQSEi2.jpg', '9', '083d23a6694b78dd961a', '1', '1', '2017-12-15 12:40:38', '2017-12-15 12:40:38', null);
  2754. INSERT INTO `ibrand_goods_photo` VALUES ('148', '37', 'https://cdn.viperky.com/storage/images/20171215/kQRjgqNZND.jpg', '9', '849b8e2863aa885f4206', '0', '1', '2017-12-15 12:40:38', '2017-12-15 12:40:38', null);
  2755. INSERT INTO `ibrand_goods_photo` VALUES ('152', '39', 'https://cdn.viperky.com/storage/images/20171215/kNYJhuJvWQ.jpg', '9', 'a2a3b5ec2cb1f2ee9515', '1', '1', '2017-12-15 14:01:39', '2017-12-15 14:01:39', null);
  2756. INSERT INTO `ibrand_goods_photo` VALUES ('153', '39', 'https://cdn.viperky.com/storage/images/20171215/ZqyBacLCLD.jpg', '9', '3cd068f65aa17a002e0a', '0', '1', '2017-12-15 14:01:39', '2017-12-15 14:01:39', null);
  2757. INSERT INTO `ibrand_goods_photo` VALUES ('154', '39', 'https://cdn.viperky.com/storage/images/20171215/loKYi32MIj.jpg', '9', 'cc1b36c91d3a3e080702', '0', '1', '2017-12-15 14:01:39', '2017-12-15 14:01:39', null);
  2758. INSERT INTO `ibrand_goods_photo` VALUES ('158', '38', 'https://cdn.viperky.com/storage/images/20171215/P9lqHL8zlE.jpg', '9', '05a75f7316664f27fefe', '1', '1', '2017-12-15 14:09:36', '2017-12-15 14:09:36', null);
  2759. INSERT INTO `ibrand_goods_photo` VALUES ('159', '38', 'https://cdn.viperky.com/storage/images/20171215/PpShgL5lP9.jpg', '9', '5b28731cd630886e8789', '0', '1', '2017-12-15 14:09:36', '2017-12-15 14:09:36', null);
  2760. INSERT INTO `ibrand_goods_photo` VALUES ('160', '38', 'https://cdn.viperky.com/storage/images/20171215/pMGYCjxNYz.jpg', '9', '19aae65c1a12ec273604', '0', '1', '2017-12-15 14:09:36', '2017-12-15 14:09:36', null);
  2761. INSERT INTO `ibrand_goods_photo` VALUES ('167', '33', 'https://cdn.viperky.com/storage/images/20171109/GsGOskbHQB.jpg', '9', '62b591d778bfdbdd7f6d', '1', '1', '2017-12-27 15:57:48', '2017-12-27 15:57:48', null);
  2762. INSERT INTO `ibrand_goods_photo` VALUES ('168', '33', 'https://cdn.viperky.com/storage/images/20171109/5dePESGi4G.jpg', '9', '1692d09d34ce3aa53763', '0', '1', '2017-12-27 15:57:48', '2017-12-27 15:57:48', null);
  2763. INSERT INTO `ibrand_goods_photo` VALUES ('169', '33', 'https://cdn.viperky.com/storage/images/20171109/G9w0V5rcUG.jpg', '9', 'c2be67c97b2c230a444d', '0', '1', '2017-12-27 15:57:48', '2017-12-27 15:57:48', null);
  2764. INSERT INTO `ibrand_goods_photo` VALUES ('176', '40', 'https://cdn.viperky.com/storage/images/20171215/XMly6hP24W.jpg', '9', '5c00d9de5dc3ade15270', '1', '1', '2017-12-27 16:01:58', '2017-12-27 16:01:58', null);
  2765. INSERT INTO `ibrand_goods_photo` VALUES ('177', '40', 'https://cdn.viperky.com/storage/images/20171215/wt4mJAHXhr.jpg', '9', 'c4b517e7941ff9ab69e7', '0', '1', '2017-12-27 16:01:58', '2017-12-27 16:01:58', null);
  2766. INSERT INTO `ibrand_goods_photo` VALUES ('178', '40', 'https://cdn.viperky.com/storage/images/20171215/DkZtBkgyr3.jpg', '9', '4ff1d40e393f54033e83', '0', '1', '2017-12-27 16:01:58', '2017-12-27 16:01:58', null);
  2767. INSERT INTO `ibrand_goods_photo` VALUES ('193', '43', 'https://cdn.viperky.com/storage/images/20180515/ZEOlMlqqmp.png', '9', '20d873e943ad8b33b08a', '0', '1', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  2768. INSERT INTO `ibrand_goods_photo` VALUES ('194', '43', 'https://cdn.viperky.com/storage/images/20180515/YRyrDtSZao.png', '9', '819c87c14ec6189ce1dd', '0', '1', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  2769. INSERT INTO `ibrand_goods_photo` VALUES ('195', '43', 'https://cdn.viperky.com/storage/images/20180515/uKBvg2clQ0.png', '9', '769c5a143e6cb276c5cc', '0', '1', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  2770. INSERT INTO `ibrand_goods_photo` VALUES ('196', '43', 'https://cdn.viperky.com/storage/images/20180515/IWJVuSIh2H.png', '9', '7697d324ee5c927694d0', '1', '1', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  2771. INSERT INTO `ibrand_goods_photo` VALUES ('197', '43', 'https://cdn.viperky.com/storage/images/20180515/5rfSYm5Q3W.png', '9', '1d3ffae436c4f8bc92af', '0', '1', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  2772. INSERT INTO `ibrand_goods_photo` VALUES ('198', '42', 'https://cdn.viperky.com/storage/images/20180515/2rhsyEGDp7.png', '9', 'd9bb6754d11407fa1d8b', '1', '1', '2018-05-15 11:59:21', '2018-05-15 11:59:21', null);
  2773. INSERT INTO `ibrand_goods_photo` VALUES ('199', '42', 'https://cdn.viperky.com/storage/images/20180515/thuxwk6bdy.png', '9', '5160a6c8da92caeedf95', '0', '1', '2018-05-15 11:59:21', '2018-05-15 11:59:21', null);
  2774. INSERT INTO `ibrand_goods_photo` VALUES ('200', '42', 'https://cdn.viperky.com/storage/images/20180515/jj8C2OWBQq.png', '9', '11b0afa17de705ae562b', '0', '1', '2018-05-15 11:59:21', '2018-05-15 11:59:21', null);
  2775. INSERT INTO `ibrand_goods_photo` VALUES ('201', '42', 'https://cdn.viperky.com/storage/images/20180515/HQZci7E3Rz.png', '9', 'd0bde5b333711ba430c2', '0', '1', '2018-05-15 11:59:21', '2018-05-15 11:59:21', null);
  2776. INSERT INTO `ibrand_goods_photo` VALUES ('202', '41', 'https://cdn.viperky.com/storage/images/20180515/cKtqQhE6Y8.png', '9', 'fe0b7c2a1951335570d6', '0', '1', '2018-05-15 11:59:35', '2018-05-15 11:59:35', null);
  2777. INSERT INTO `ibrand_goods_photo` VALUES ('203', '41', 'https://cdn.viperky.com/storage/images/20180515/3k6or0s3OK.png', '9', 'c87319f47749d934f798', '0', '1', '2018-05-15 11:59:35', '2018-05-15 11:59:35', null);
  2778. INSERT INTO `ibrand_goods_photo` VALUES ('204', '41', 'https://cdn.viperky.com/storage/images/20180515/tpsyZSz7T3.png', '9', 'b09b64974dfa4644951e', '0', '1', '2018-05-15 11:59:35', '2018-05-15 11:59:35', null);
  2779. INSERT INTO `ibrand_goods_photo` VALUES ('205', '41', 'https://cdn.viperky.com/storage/images/20180515/06U5YKLgVa.png', '9', 'c08b5452376170b32dae', '1', '1', '2018-05-15 11:59:35', '2018-05-15 11:59:35', null);
  2780. INSERT INTO `ibrand_goods_photo` VALUES ('206', '41', 'https://cdn.viperky.com/storage/images/20180515/ROzhF1MQF4.png', '9', '5a0c7d2fd3b474ad2a79', '0', '1', '2018-05-15 11:59:35', '2018-05-15 11:59:35', null);
  2781. INSERT INTO `ibrand_goods_photo` VALUES ('207', '44', 'https://cdn.viperky.com/storage/images/20180515/f3IQAITVcu.png', '9', 'fc364a66556e2ef4d5f4', '1', '1', '2018-05-15 12:21:59', '2018-05-15 12:21:59', null);
  2782. INSERT INTO `ibrand_goods_photo` VALUES ('208', '44', 'https://cdn.viperky.com/storage/images/20180515/I28aE9VURP.png', '9', '5f31be22c614e9a2a842', '0', '1', '2018-05-15 12:21:59', '2018-05-15 12:21:59', null);
  2783. INSERT INTO `ibrand_goods_photo` VALUES ('209', '44', 'https://cdn.viperky.com/storage/images/20180515/pDQI1PHFWq.png', '9', '0eab28d46d93ad56fa62', '0', '1', '2018-05-15 12:21:59', '2018-05-15 12:21:59', null);
  2784. INSERT INTO `ibrand_goods_photo` VALUES ('210', '44', 'https://cdn.viperky.com/storage/images/20180515/744oLRc7az.png', '9', '0cae833d57f1db1d1626', '0', '1', '2018-05-15 12:21:59', '2018-05-15 12:21:59', null);
  2785. INSERT INTO `ibrand_goods_photo` VALUES ('211', '44', 'https://cdn.viperky.com/storage/images/20180515/92MqhH1SAW.png', '9', '856c392dc1830ddcc6b1', '0', '1', '2018-05-15 12:21:59', '2018-05-15 12:21:59', null);
  2786. INSERT INTO `ibrand_goods_photo` VALUES ('212', '44', 'https://cdn.viperky.com/storage/images/20180515/GEkgemTO1W.png', '9', 'e16802162ea4602ba0a8', '0', '1', '2018-05-15 12:21:59', '2018-05-15 12:21:59', null);
  2787. INSERT INTO `ibrand_goods_photo` VALUES ('213', '44', 'https://cdn.viperky.com/storage/images/20180515/1iEL5bIioN.png', '9', '38d21b6e0341f05d0f3f', '0', '1', '2018-05-15 12:21:59', '2018-05-15 12:21:59', null);
  2788. INSERT INTO `ibrand_goods_photo` VALUES ('219', '46', 'https://cdn.viperky.com/storage/images/20180515/Dxjc9SuHEz.png', '9', '8084f2784d15498a5683', '1', '1', '2018-05-15 14:41:16', '2018-05-15 14:41:16', null);
  2789. INSERT INTO `ibrand_goods_photo` VALUES ('220', '46', 'https://cdn.viperky.com/storage/images/20180515/D8fhRi4DPA.png', '9', '5351000d2c0071da4e35', '0', '1', '2018-05-15 14:41:16', '2018-05-15 14:41:16', null);
  2790. INSERT INTO `ibrand_goods_photo` VALUES ('221', '46', 'https://cdn.viperky.com/storage/images/20180515/OPARShpmsZ.png', '9', '288441f758c460530f06', '0', '1', '2018-05-15 14:41:16', '2018-05-15 14:41:16', null);
  2791. INSERT INTO `ibrand_goods_photo` VALUES ('222', '46', 'https://cdn.viperky.com/storage/images/20180515/TV6tetcHTC.png', '9', '74afc32eefcaf1af76ad', '0', '1', '2018-05-15 14:41:16', '2018-05-15 14:41:16', null);
  2792. INSERT INTO `ibrand_goods_photo` VALUES ('368', '64', 'https://cdn.viperky.com/storage/images/20180516/eqidChC3fw.png', '7', '303c7a14fdb646de3bd6', '0', '1', '2018-05-16 09:50:25', '2018-05-16 09:50:25', null);
  2793. INSERT INTO `ibrand_goods_photo` VALUES ('369', '64', 'https://cdn.viperky.com/storage/images/20180516/HU3jWIl7Vv.png', '9', '7d55e81062527c4966ac', '1', '1', '2018-05-16 09:50:25', '2018-05-16 09:50:25', null);
  2794. INSERT INTO `ibrand_goods_photo` VALUES ('370', '64', 'https://cdn.viperky.com/storage/images/20180516/nGi3xqWWUA.png', '8', 'd3cf04a6f6d40a1c7753', '0', '1', '2018-05-16 09:50:25', '2018-05-16 09:50:25', null);
  2795. INSERT INTO `ibrand_goods_photo` VALUES ('409', '69', 'https://cdn.viperky.com/storage/images/20180516/zhGQHz4Mbu.png', '4', '669469495f98d0ab3a85', '0', '1', '2018-05-16 10:38:51', '2018-05-16 10:38:51', null);
  2796. INSERT INTO `ibrand_goods_photo` VALUES ('410', '69', 'https://cdn.viperky.com/storage/images/20180516/LH7ZnCJREZ.png', '5', '0db0de15f1ac8898b7bd', '0', '1', '2018-05-16 10:38:51', '2018-05-16 10:38:51', null);
  2797. INSERT INTO `ibrand_goods_photo` VALUES ('411', '69', 'https://cdn.viperky.com/storage/images/20180516/oQTVTTHQpU.png', '6', '2dd78454db2d94ad4fbf', '0', '1', '2018-05-16 10:38:51', '2018-05-16 10:38:51', null);
  2798. INSERT INTO `ibrand_goods_photo` VALUES ('412', '69', 'https://cdn.viperky.com/storage/images/20180516/fBKrFVHtu3.png', '7', 'e2fd9ffb39b41b43e304', '0', '1', '2018-05-16 10:38:51', '2018-05-16 10:38:51', null);
  2799. INSERT INTO `ibrand_goods_photo` VALUES ('413', '69', 'https://cdn.viperky.com/storage/images/20180516/RyU85q8ZiW.png', '8', 'b77c639da931b21a1413', '0', '1', '2018-05-16 10:38:51', '2018-05-16 10:38:51', null);
  2800. INSERT INTO `ibrand_goods_photo` VALUES ('414', '69', 'https://cdn.viperky.com/storage/images/20180516/xDgHzuODM5.png', '9', '6f20fd2253b3db401151', '1', '1', '2018-05-16 10:38:51', '2018-05-16 10:38:51', null);
  2801. INSERT INTO `ibrand_goods_photo` VALUES ('431', '72', 'https://cdn.viperky.com/storage/images/20180516/njWY5v0Wv0.png', '6', '2f458be5ce4ca8c1c335', '0', '1', '2018-05-16 11:55:32', '2018-05-16 11:55:32', null);
  2802. INSERT INTO `ibrand_goods_photo` VALUES ('432', '72', 'https://cdn.viperky.com/storage/images/20180516/fY4pK8sA8N.png', '9', 'ee5f37cd04fc763dc9ef', '1', '1', '2018-05-16 11:55:32', '2018-05-16 11:55:32', null);
  2803. INSERT INTO `ibrand_goods_photo` VALUES ('433', '72', 'https://cdn.viperky.com/storage/images/20180516/poJoyauILR.png', '5', 'ba8ed53f936c5874bb4a', '0', '1', '2018-05-16 11:55:32', '2018-05-16 11:55:32', null);
  2804. INSERT INTO `ibrand_goods_photo` VALUES ('434', '72', 'https://cdn.viperky.com/storage/images/20180516/RckoknHFeZ.png', '8', 'ed2c7a41e92f2fb9cdeb', '0', '1', '2018-05-16 11:55:32', '2018-05-16 11:55:32', null);
  2805. INSERT INTO `ibrand_goods_photo` VALUES ('435', '72', 'https://cdn.viperky.com/storage/images/20180516/wAnSCXVMpW.png', '7', 'a6347c51548ec0b98897', '0', '1', '2018-05-16 11:55:32', '2018-05-16 11:55:32', null);
  2806. INSERT INTO `ibrand_goods_photo` VALUES ('436', '72', 'https://cdn.viperky.com/storage/images/20180516/nAMYytwyBB.png', '4', 'e3bccde698f54ee30025', '0', '1', '2018-05-16 11:55:32', '2018-05-16 11:55:32', null);
  2807. INSERT INTO `ibrand_goods_photo` VALUES ('437', '72', 'https://cdn.viperky.com/storage/images/20180516/DharDbs0z3.png', '3', '3337db3e2494ab8e5129', '0', '1', '2018-05-16 11:55:32', '2018-05-16 11:55:32', null);
  2808. INSERT INTO `ibrand_goods_photo` VALUES ('438', '72', 'https://cdn.viperky.com/storage/images/20180516/8pvIGLTN6Y.png', '2', '9f09e5d941f0064b9ea0', '0', '1', '2018-05-16 11:55:32', '2018-05-16 11:55:32', null);
  2809. INSERT INTO `ibrand_goods_photo` VALUES ('439', '73', 'https://cdn.viperky.com/storage/images/20180516/vyQnB0DOga.png', '7', '836335fe98df4c2235e0', '0', '1', '2018-05-16 12:11:46', '2018-05-16 12:11:46', null);
  2810. INSERT INTO `ibrand_goods_photo` VALUES ('440', '73', 'https://cdn.viperky.com/storage/images/20180516/fPS15EPFmZ.png', '8', '401f45cc2157a6eea9f2', '0', '1', '2018-05-16 12:11:46', '2018-05-16 12:11:46', null);
  2811. INSERT INTO `ibrand_goods_photo` VALUES ('441', '73', 'https://cdn.viperky.com/storage/images/20180516/prLOpI6GEe.png', '9', '880f7aab1b071d72a13b', '1', '1', '2018-05-16 12:11:46', '2018-05-16 12:11:46', null);
  2812. INSERT INTO `ibrand_goods_photo` VALUES ('442', '73', 'https://cdn.viperky.com/storage/images/20180516/js4UQdiEFK.png', '6', 'b64d9a2e8f4b558429bd', '0', '1', '2018-05-16 12:11:46', '2018-05-16 12:11:46', null);
  2813. INSERT INTO `ibrand_goods_photo` VALUES ('443', '73', 'https://cdn.viperky.com/storage/images/20180516/bckZnCy6to.png', '5', 'a5cd3043359d116bd25a', '0', '1', '2018-05-16 12:11:46', '2018-05-16 12:11:46', null);
  2814. INSERT INTO `ibrand_goods_photo` VALUES ('444', '73', 'https://cdn.viperky.com/storage/images/20180516/UXCc4E2CuN.png', '4', '5080a5f3dc10f35d85b0', '0', '1', '2018-05-16 12:11:46', '2018-05-16 12:11:46', null);
  2815. INSERT INTO `ibrand_goods_photo` VALUES ('476', '77', 'https://cdn.viperky.com/storage/images/20180516/26dpZEjppG.jpg', '9', '265700669bbf0fec215c', '1', '1', '2018-05-16 17:12:57', '2018-05-16 17:12:57', null);
  2816. INSERT INTO `ibrand_goods_photo` VALUES ('482', '45', 'https://cdn.viperky.com/storage/images/20180515/yZ2Sq0MUpo.png', '9', '68b18d55832a559ea15e', '0', '1', '2018-05-18 17:57:03', '2018-05-18 17:57:03', null);
  2817. INSERT INTO `ibrand_goods_photo` VALUES ('483', '45', 'https://cdn.viperky.com/storage/images/20180515/TFSugfseeD.png', '9', '53df1017351c29b9dcd6', '1', '1', '2018-05-18 17:57:03', '2018-05-18 17:57:03', null);
  2818. INSERT INTO `ibrand_goods_photo` VALUES ('484', '45', 'https://cdn.viperky.com/storage/images/20180515/U2XCwF9bub.png', '9', '3c0b00e39e692d0a32d9', '0', '1', '2018-05-18 17:57:03', '2018-05-18 17:57:03', null);
  2819. INSERT INTO `ibrand_goods_photo` VALUES ('485', '45', 'https://cdn.viperky.com/storage/images/20180515/qbYE7bPLVN.png', '9', '826f2066f0be32988334', '0', '1', '2018-05-18 17:57:03', '2018-05-18 17:57:03', null);
  2820. INSERT INTO `ibrand_goods_photo` VALUES ('486', '45', 'https://cdn.viperky.com/storage/images/20180515/o5udmTcns7.png', '9', 'cd5309a079b4308640a9', '0', '1', '2018-05-18 17:57:03', '2018-05-18 17:57:03', null);
  2821. INSERT INTO `ibrand_goods_photo` VALUES ('551', '79', 'https://cdn.viperky.com/storage/images/20180521/qIfCDx36Su.jpg', '9', '758cd264e06d0fdf6095', '0', '1', '2018-05-21 15:53:40', '2018-05-21 15:53:40', null);
  2822. INSERT INTO `ibrand_goods_photo` VALUES ('552', '79', 'https://cdn.viperky.com/storage/images/20180521/sxxLniiPL5.png', '9', 'bcd7d62bd7234bac5a48', '0', '1', '2018-05-21 15:53:40', '2018-05-21 15:53:40', null);
  2823. INSERT INTO `ibrand_goods_photo` VALUES ('553', '79', 'https://cdn.viperky.com/storage/images/20180521/UKEAjlCBA7.png', '8', '093a44a64a86fb3b3256', '1', '1', '2018-05-21 15:53:40', '2018-05-21 15:53:40', null);
  2824. INSERT INTO `ibrand_goods_photo` VALUES ('554', '79', 'https://cdn.viperky.com/storage/images/20180521/X7bUHlh08L.png', '9', 'ee0b9dfe09bbf51cfdd0', '0', '1', '2018-05-21 15:53:40', '2018-05-21 15:53:40', null);
  2825. INSERT INTO `ibrand_goods_photo` VALUES ('555', '79', 'https://cdn.viperky.com/storage/images/20180521/GOjf2522zr.png', '9', '5a525e938cff4fe4f520', '0', '1', '2018-05-21 15:53:40', '2018-05-21 15:53:40', null);
  2826. INSERT INTO `ibrand_goods_photo` VALUES ('556', '80', 'https://cdn.viperky.com/storage/images/20180521/cOfdWvmNDe.png', '9', '2cccba156453ac39023c', '0', '1', '2018-05-21 15:53:55', '2018-05-21 15:53:55', null);
  2827. INSERT INTO `ibrand_goods_photo` VALUES ('557', '80', 'https://cdn.viperky.com/storage/images/20180521/4yxNr0Z2wQ.png', '9', '293bd6b2ac8526e8ce8d', '1', '1', '2018-05-21 15:53:55', '2018-05-21 15:53:55', null);
  2828. INSERT INTO `ibrand_goods_photo` VALUES ('558', '80', 'https://cdn.viperky.com/storage/images/20180521/s6DQr3vfmf.png', '9', '69609ed8821f59218286', '0', '1', '2018-05-21 15:53:55', '2018-05-21 15:53:55', null);
  2829. INSERT INTO `ibrand_goods_photo` VALUES ('559', '80', 'https://cdn.viperky.com/storage/images/20180521/OHGqzRhpkX.png', '9', '8752bc5b8bee4f83706a', '0', '1', '2018-05-21 15:53:55', '2018-05-21 15:53:55', null);
  2830. INSERT INTO `ibrand_goods_photo` VALUES ('560', '80', 'https://cdn.viperky.com/storage/images/20180521/NOVKjKgC0S.png', '9', 'ab373e61b6842741b6ab', '0', '1', '2018-05-21 15:53:55', '2018-05-21 15:53:55', null);
  2831. INSERT INTO `ibrand_goods_photo` VALUES ('578', '81', 'https://cdn.viperky.com/storage/images/20180521/xYFWSXF9DI.png', '9', 'a2eda03e11ad745a49db', '1', '1', '2018-05-21 16:05:50', '2018-05-21 16:05:50', null);
  2832. INSERT INTO `ibrand_goods_photo` VALUES ('579', '81', 'https://cdn.viperky.com/storage/images/20180521/aREnQfs2T7.png', '9', '26afa485d146c8779f2b', '0', '1', '2018-05-21 16:05:50', '2018-05-21 16:05:50', null);
  2833. INSERT INTO `ibrand_goods_photo` VALUES ('580', '81', 'https://cdn.viperky.com/storage/images/20180521/8tpSEL2GIm.png', '9', '43454ac707c72ecc8f30', '0', '1', '2018-05-21 16:05:50', '2018-05-21 16:05:50', null);
  2834. INSERT INTO `ibrand_goods_photo` VALUES ('581', '81', 'https://cdn.viperky.com/storage/images/20180521/bmV6a5yO6I.png', '9', 'e2ea80976d81abfefb6c', '0', '1', '2018-05-21 16:05:50', '2018-05-21 16:05:50', null);
  2835. INSERT INTO `ibrand_goods_photo` VALUES ('582', '81', 'https://cdn.viperky.com/storage/images/20180521/hegCq0xaFF.png', '9', 'bef4c856bf398c41b7fc', '0', '1', '2018-05-21 16:05:50', '2018-05-21 16:05:50', null);
  2836. INSERT INTO `ibrand_goods_photo` VALUES ('583', '81', 'https://cdn.viperky.com/storage/images/20180521/gP5Hx4v9K8.png', '9', 'eb6ade26ddb97fb9315c', '0', '1', '2018-05-21 16:05:50', '2018-05-21 16:05:50', null);
  2837. INSERT INTO `ibrand_goods_photo` VALUES ('584', '81', 'https://cdn.viperky.com/storage/images/20180521/xQRxcYdWIJ.png', '9', '1cdb0314f10b6faf13b9', '0', '1', '2018-05-21 16:05:50', '2018-05-21 16:05:50', null);
  2838. INSERT INTO `ibrand_goods_photo` VALUES ('585', '78', 'https://cdn.viperky.com/storage/images/20180521/HhEC8vy8QO.png', '9', '3bab8b4b1861c2fb7338', '0', '1', '2018-05-21 16:06:05', '2018-05-21 16:06:05', null);
  2839. INSERT INTO `ibrand_goods_photo` VALUES ('586', '78', 'https://cdn.viperky.com/storage/images/20180521/o2qmvMe3Re.png', '9', '7eb4e1c430ebd28e4668', '0', '1', '2018-05-21 16:06:05', '2018-05-21 16:06:05', null);
  2840. INSERT INTO `ibrand_goods_photo` VALUES ('587', '78', 'https://cdn.viperky.com/storage/images/20180521/4pjdI5JrCY.png', '9', '23429b0356657a83f307', '1', '1', '2018-05-21 16:06:05', '2018-05-21 16:06:05', null);
  2841. INSERT INTO `ibrand_goods_photo` VALUES ('588', '78', 'https://cdn.viperky.com/storage/images/20180521/1H4oPRXvr6.png', '9', '92ab1600ce8ad00978e6', '0', '1', '2018-05-21 16:06:05', '2018-05-21 16:06:05', null);
  2842. INSERT INTO `ibrand_goods_photo` VALUES ('589', '78', 'https://cdn.viperky.com/storage/images/20180521/IjpnMmCTjD.png', '9', '397ef620ff2603cb717c', '0', '1', '2018-05-21 16:06:05', '2018-05-21 16:06:05', null);
  2843. INSERT INTO `ibrand_goods_photo` VALUES ('590', '83', 'https://cdn.viperky.com/storage/images/20180521/l1cMiDYS0h.png', '9', '80599b473389ab67c4c6', '1', '1', '2018-05-21 16:06:29', '2018-05-21 16:06:29', null);
  2844. INSERT INTO `ibrand_goods_photo` VALUES ('591', '83', 'https://cdn.viperky.com/storage/images/20180521/oACx3deMG7.png', '9', '1c6b2a8c494718b7cf9f', '0', '1', '2018-05-21 16:06:29', '2018-05-21 16:06:29', null);
  2845. INSERT INTO `ibrand_goods_photo` VALUES ('592', '83', 'https://cdn.viperky.com/storage/images/20180521/RUvfjiDQK6.png', '9', '3559b0ed85a4bea505fb', '0', '1', '2018-05-21 16:06:29', '2018-05-21 16:06:29', null);
  2846. INSERT INTO `ibrand_goods_photo` VALUES ('593', '83', 'https://cdn.viperky.com/storage/images/20180521/6cWf3QngF7.png', '9', 'be7ea5a138b990702807', '0', '1', '2018-05-21 16:06:29', '2018-05-21 16:06:29', null);
  2847. INSERT INTO `ibrand_goods_photo` VALUES ('594', '83', 'https://cdn.viperky.com/storage/images/20180521/G5S346crK2.png', '9', '784fdbb6f69aa81f6d5e', '0', '1', '2018-05-21 16:06:29', '2018-05-21 16:06:29', null);
  2848. INSERT INTO `ibrand_goods_photo` VALUES ('595', '83', 'https://cdn.viperky.com/storage/images/20180521/2HWRLjXWBm.png', '9', '48e6985fa7debeefd2e7', '0', '1', '2018-05-21 16:06:29', '2018-05-21 16:06:29', null);
  2849. INSERT INTO `ibrand_goods_photo` VALUES ('620', '87', 'https://cdn.viperky.com/storage/images/20180521/fg6XhS0P3a.png', '9', 'c0ed63e39c90b106a2e3', '1', '1', '2018-05-21 16:20:47', '2018-05-21 16:20:47', null);
  2850. INSERT INTO `ibrand_goods_photo` VALUES ('621', '87', 'https://cdn.viperky.com/storage/images/20180521/EzlKP7EiGv.png', '9', '2b6ae10996bb1cd0c9c2', '0', '1', '2018-05-21 16:20:47', '2018-05-21 16:20:47', null);
  2851. INSERT INTO `ibrand_goods_photo` VALUES ('622', '87', 'https://cdn.viperky.com/storage/images/20180521/FI8xEFKPVA.png', '9', 'cf5981de63b43920707a', '0', '1', '2018-05-21 16:20:47', '2018-05-21 16:20:47', null);
  2852. INSERT INTO `ibrand_goods_photo` VALUES ('623', '87', 'https://cdn.viperky.com/storage/images/20180521/ki5fP0dieG.png', '9', '55509bc28e02a085978a', '0', '1', '2018-05-21 16:20:47', '2018-05-21 16:20:47', null);
  2853. INSERT INTO `ibrand_goods_photo` VALUES ('624', '87', 'https://cdn.viperky.com/storage/images/20180521/HDEmFQEod3.png', '9', '4a46d2a794f5f7785439', '0', '1', '2018-05-21 16:20:47', '2018-05-21 16:20:47', null);
  2854. INSERT INTO `ibrand_goods_photo` VALUES ('625', '87', 'https://cdn.viperky.com/storage/images/20180521/CnjKq714xG.png', '9', 'aad2f596c4ff2b9c75e0', '0', '1', '2018-05-21 16:20:47', '2018-05-21 16:20:47', null);
  2855. INSERT INTO `ibrand_goods_photo` VALUES ('626', '88', 'https://cdn.viperky.com/storage/images/20180521/cIeZFGdeVl.png', '9', '76fe4fd3e56fe29c45de', '0', '1', '2018-05-21 16:33:39', '2018-05-21 16:33:39', null);
  2856. INSERT INTO `ibrand_goods_photo` VALUES ('627', '88', 'https://cdn.viperky.com/storage/images/20180521/71rSP1dVo6.png', '9', '3cb7ed2cda398f6e051a', '0', '1', '2018-05-21 16:33:39', '2018-05-21 16:33:39', null);
  2857. INSERT INTO `ibrand_goods_photo` VALUES ('628', '88', 'https://cdn.viperky.com/storage/images/20180521/q5ODSPWjoE.png', '9', 'a33226a24604a739ef23', '0', '1', '2018-05-21 16:33:39', '2018-05-21 16:33:39', null);
  2858. INSERT INTO `ibrand_goods_photo` VALUES ('629', '88', 'https://cdn.viperky.com/storage/images/20180521/0vPCfgHqU0.png', '9', '02ff92aa3f40f8932b3b', '1', '1', '2018-05-21 16:33:39', '2018-05-21 16:33:39', null);
  2859. INSERT INTO `ibrand_goods_photo` VALUES ('630', '88', 'https://cdn.viperky.com/storage/images/20180521/dIXlZ5DHqx.png', '9', '3843982ac239e5f768f9', '0', '1', '2018-05-21 16:33:39', '2018-05-21 16:33:39', null);
  2860. INSERT INTO `ibrand_goods_photo` VALUES ('631', '88', 'https://cdn.viperky.com/storage/images/20180521/BLpYS9JVlN.png', '9', '707567477d6effe4b59d', '0', '1', '2018-05-21 16:33:39', '2018-05-21 16:33:39', null);
  2861. INSERT INTO `ibrand_goods_photo` VALUES ('646', '89', 'https://cdn.viperky.com/storage/images/20180521/MJwUG2sFsI.png', '8', '5e80911c6c0d2f4eb8df', '0', '1', '2018-05-21 16:41:08', '2018-05-21 16:41:08', null);
  2862. INSERT INTO `ibrand_goods_photo` VALUES ('647', '89', 'https://cdn.viperky.com/storage/images/20180521/4nQfMRWc97.png', '7', '005731ca7cc16c3ebb1a', '0', '1', '2018-05-21 16:41:08', '2018-05-21 16:41:08', null);
  2863. INSERT INTO `ibrand_goods_photo` VALUES ('648', '89', 'https://cdn.viperky.com/storage/images/20180521/zXDF4eClEh.png', '6', '98255d2d7fd3268c6567', '0', '1', '2018-05-21 16:41:08', '2018-05-21 16:41:08', null);
  2864. INSERT INTO `ibrand_goods_photo` VALUES ('649', '89', 'https://cdn.viperky.com/storage/images/20180521/dVPjzeaj1L.png', '5', '9ff1c4947e517f51280e', '0', '1', '2018-05-21 16:41:08', '2018-05-21 16:41:08', null);
  2865. INSERT INTO `ibrand_goods_photo` VALUES ('650', '89', 'https://cdn.viperky.com/storage/images/20180521/toq7Uq3HA1.png', '9', 'd11234d5afdd36382e19', '1', '1', '2018-05-21 16:41:08', '2018-05-21 16:41:08', null);
  2866. INSERT INTO `ibrand_goods_photo` VALUES ('651', '89', 'https://cdn.viperky.com/storage/images/20180521/oaQ5lAHl6w.png', '4', '10a847b32e0a2639aa0b', '0', '1', '2018-05-21 16:41:08', '2018-05-21 16:41:08', null);
  2867. INSERT INTO `ibrand_goods_photo` VALUES ('652', '89', 'https://cdn.viperky.com/storage/images/20180521/DDeH3649gB.png', '3', '2b083b6dd32a70969095', '0', '1', '2018-05-21 16:41:08', '2018-05-21 16:41:08', null);
  2868. INSERT INTO `ibrand_goods_photo` VALUES ('653', '90', 'https://cdn.viperky.com/storage/images/20180521/1SKwXtshhX.png', '9', '4bc7cfdb0b20e551d861', '1', '1', '2018-05-21 16:49:44', '2018-05-21 16:49:44', null);
  2869. INSERT INTO `ibrand_goods_photo` VALUES ('654', '90', 'https://cdn.viperky.com/storage/images/20180521/EvyGt87LDP.png', '9', '0fa5f08c45e1b20f6d96', '0', '1', '2018-05-21 16:49:44', '2018-05-21 16:49:44', null);
  2870. INSERT INTO `ibrand_goods_photo` VALUES ('655', '90', 'https://cdn.viperky.com/storage/images/20180521/7HZElaXJ7b.png', '9', 'e77c268efa8bfee108a2', '0', '1', '2018-05-21 16:49:44', '2018-05-21 16:49:44', null);
  2871. INSERT INTO `ibrand_goods_photo` VALUES ('656', '90', 'https://cdn.viperky.com/storage/images/20180521/qUB2VPcNZZ.png', '9', '354e7b15fc4b4ed5f3b4', '0', '1', '2018-05-21 16:49:44', '2018-05-21 16:49:44', null);
  2872. INSERT INTO `ibrand_goods_photo` VALUES ('657', '90', 'https://cdn.viperky.com/storage/images/20180521/CUchlTAoAl.png', '9', '591d5408c5dce2ab101a', '0', '1', '2018-05-21 16:49:44', '2018-05-21 16:49:44', null);
  2873. INSERT INTO `ibrand_goods_photo` VALUES ('658', '91', 'https://cdn.viperky.com/storage/images/20180521/z6Gz0H9Hzp.png', '9', '583874c556904632b162', '1', '1', '2018-05-21 17:03:06', '2018-05-21 17:03:06', null);
  2874. INSERT INTO `ibrand_goods_photo` VALUES ('659', '91', 'https://cdn.viperky.com/storage/images/20180521/FXZtyHtZCl.png', '9', 'cd9bb7ea24e8c76b93f5', '0', '1', '2018-05-21 17:03:06', '2018-05-21 17:03:06', null);
  2875. INSERT INTO `ibrand_goods_photo` VALUES ('660', '92', 'https://cdn.viperky.com/storage/images/20180521/pRsx9lCEhv.png', '9', 'd68ac81f75eec1caf8d1', '0', '1', '2018-05-21 17:03:15', '2018-05-21 17:03:15', null);
  2876. INSERT INTO `ibrand_goods_photo` VALUES ('661', '92', 'https://cdn.viperky.com/storage/images/20180521/Wl3BMd2mQR.png', '9', 'b92064920fc091b1ff21', '1', '1', '2018-05-21 17:03:15', '2018-05-21 17:03:15', null);
  2877. INSERT INTO `ibrand_goods_photo` VALUES ('662', '92', 'https://cdn.viperky.com/storage/images/20180521/TYeWqi5iPZ.png', '9', '03421096a29edce2048f', '0', '1', '2018-05-21 17:03:15', '2018-05-21 17:03:15', null);
  2878. INSERT INTO `ibrand_goods_photo` VALUES ('663', '92', 'https://cdn.viperky.com/storage/images/20180521/oUPo3o0n1M.png', '9', '2998751c3cd7fc29036e', '0', '1', '2018-05-21 17:03:15', '2018-05-21 17:03:15', null);
  2879. INSERT INTO `ibrand_goods_photo` VALUES ('664', '92', 'https://cdn.viperky.com/storage/images/20180521/kM791l5qFN.png', '9', '82c1024a9e9819d4884b', '0', '1', '2018-05-21 17:03:15', '2018-05-21 17:03:15', null);
  2880. INSERT INTO `ibrand_goods_photo` VALUES ('670', '93', 'https://cdn.viperky.com/storage/images/20180521/8YFEp3Q6Uo.png', '9', '69295b290f42990ca3de', '1', '1', '2018-05-21 17:18:12', '2018-05-21 17:18:12', null);
  2881. INSERT INTO `ibrand_goods_photo` VALUES ('671', '93', 'https://cdn.viperky.com/storage/images/20180521/XgHFa4nlnR.png', '9', '6b9a55f06243b24ce156', '0', '1', '2018-05-21 17:18:12', '2018-05-21 17:18:12', null);
  2882. INSERT INTO `ibrand_goods_photo` VALUES ('672', '93', 'https://cdn.viperky.com/storage/images/20180521/1FQyOvkZI4.png', '9', 'd4a2c8a00a211cafc7ce', '0', '1', '2018-05-21 17:18:12', '2018-05-21 17:18:12', null);
  2883. INSERT INTO `ibrand_goods_photo` VALUES ('673', '93', 'https://cdn.viperky.com/storage/images/20180521/hLFLwjdIr6.png', '9', 'a8955f6125c9bf5b0568', '0', '1', '2018-05-21 17:18:12', '2018-05-21 17:18:12', null);
  2884. INSERT INTO `ibrand_goods_photo` VALUES ('674', '94', 'https://cdn.viperky.com/storage/images/20180521/YcaHDdoPaN.png', '5', 'e749dcdbd0b141617de0', '0', '1', '2018-05-21 17:20:47', '2018-05-21 17:20:47', null);
  2885. INSERT INTO `ibrand_goods_photo` VALUES ('675', '94', 'https://cdn.viperky.com/storage/images/20180521/q6VlUhRnet.png', '6', '76672779163f8fb8a0e1', '0', '1', '2018-05-21 17:20:47', '2018-05-21 17:20:47', null);
  2886. INSERT INTO `ibrand_goods_photo` VALUES ('676', '94', 'https://cdn.viperky.com/storage/images/20180521/pe8QDkWLtS.png', '7', '2ae15a998a1988af4273', '0', '1', '2018-05-21 17:20:47', '2018-05-21 17:20:47', null);
  2887. INSERT INTO `ibrand_goods_photo` VALUES ('677', '94', 'https://cdn.viperky.com/storage/images/20180521/Y8C3DX6RNy.png', '8', '4a9445d95110553d7bb4', '0', '1', '2018-05-21 17:20:47', '2018-05-21 17:20:47', null);
  2888. INSERT INTO `ibrand_goods_photo` VALUES ('678', '94', 'https://cdn.viperky.com/storage/images/20180521/Tv7mOtqpk5.png', '9', '78d66a8f2897d9be27d0', '1', '1', '2018-05-21 17:20:47', '2018-05-21 17:20:47', null);
  2889. INSERT INTO `ibrand_goods_photo` VALUES ('679', '48', 'https://cdn.viperky.com/storage/images/20180515/j9Bhz4nNM9.png', '9', '23ab01234bfb7767d933', '1', '1', '2018-05-23 14:16:58', '2018-05-23 14:16:58', null);
  2890. INSERT INTO `ibrand_goods_photo` VALUES ('680', '48', 'https://cdn.viperky.com/storage/images/20180515/lhilFSPeF1.png', '9', 'd359a7017f54c0e20d39', '0', '1', '2018-05-23 14:16:58', '2018-05-23 14:16:58', null);
  2891. INSERT INTO `ibrand_goods_photo` VALUES ('681', '48', 'https://cdn.viperky.com/storage/images/20180515/OAqEAHZ6BC.png', '9', 'cf421de5ef8a0577dfca', '0', '1', '2018-05-23 14:16:58', '2018-05-23 14:16:58', null);
  2892. INSERT INTO `ibrand_goods_photo` VALUES ('682', '48', 'https://cdn.viperky.com/storage/images/20180515/z2STOZj9e7.png', '9', '7c6f599c9de9a3eb56b3', '0', '1', '2018-05-23 14:16:58', '2018-05-23 14:16:58', null);
  2893. INSERT INTO `ibrand_goods_photo` VALUES ('683', '48', 'https://cdn.viperky.com/storage/images/20180515/dZe0fwm6Jc.png', '9', '025a6802682a7ea50ff5', '0', '1', '2018-05-23 14:16:58', '2018-05-23 14:16:58', null);
  2894. INSERT INTO `ibrand_goods_photo` VALUES ('684', '48', 'https://cdn.viperky.com/storage/images/20180515/F3Y6f1IftU.png', '9', '1078a0ee279d6184f615', '0', '1', '2018-05-23 14:16:58', '2018-05-23 14:16:58', null);
  2895. INSERT INTO `ibrand_goods_photo` VALUES ('685', '49', 'https://cdn.viperky.com/storage/images/20180515/WKwfj8STI9.png', '9', '98e320e6dc5ed4d566e6', '0', '1', '2018-05-23 14:18:39', '2018-05-23 14:18:39', null);
  2896. INSERT INTO `ibrand_goods_photo` VALUES ('686', '49', 'https://cdn.viperky.com/storage/images/20180515/VwxPV2leXu.png', '9', 'a50be25929a4f356a43a', '1', '1', '2018-05-23 14:18:39', '2018-05-23 14:18:39', null);
  2897. INSERT INTO `ibrand_goods_photo` VALUES ('687', '49', 'https://cdn.viperky.com/storage/images/20180515/zWJqgRhWMS.png', '9', 'eabc80f8ec4ce789079c', '0', '1', '2018-05-23 14:18:39', '2018-05-23 14:18:39', null);
  2898. INSERT INTO `ibrand_goods_photo` VALUES ('688', '49', 'https://cdn.viperky.com/storage/images/20180515/x7PvuQYR2Z.png', '9', '816887015d6f7754e18b', '0', '1', '2018-05-23 14:18:39', '2018-05-23 14:18:39', null);
  2899. INSERT INTO `ibrand_goods_photo` VALUES ('689', '49', 'https://cdn.viperky.com/storage/images/20180515/hHj3S1QoIh.png', '9', '059b7a48e8650335c354', '0', '1', '2018-05-23 14:18:39', '2018-05-23 14:18:39', null);
  2900. INSERT INTO `ibrand_goods_photo` VALUES ('690', '49', 'https://cdn.viperky.com/storage/images/20180515/tVKRBoEmwH.png', '9', '283671c2abcc28ff5221', '0', '1', '2018-05-23 14:18:39', '2018-05-23 14:18:39', null);
  2901. INSERT INTO `ibrand_goods_photo` VALUES ('691', '50', 'https://cdn.viperky.com/storage/images/20180515/z8byHqu8pJ.png', '4', '5b41965911059928f169', '0', '1', '2018-05-23 14:21:17', '2018-05-23 14:21:17', null);
  2902. INSERT INTO `ibrand_goods_photo` VALUES ('692', '50', 'https://cdn.viperky.com/storage/images/20180515/hp9nlB0uWc.png', '5', 'd90c2e2ebf2b4fa2ed12', '0', '1', '2018-05-23 14:21:17', '2018-05-23 14:21:17', null);
  2903. INSERT INTO `ibrand_goods_photo` VALUES ('693', '50', 'https://cdn.viperky.com/storage/images/20180515/bhZFajohpO.png', '7', '7ef2302ab3a5ecb6d0b5', '0', '1', '2018-05-23 14:21:17', '2018-05-23 14:21:17', null);
  2904. INSERT INTO `ibrand_goods_photo` VALUES ('694', '50', 'https://cdn.viperky.com/storage/images/20180515/Id71G91QWv.png', '6', '226a04646371bfdda39e', '0', '1', '2018-05-23 14:21:17', '2018-05-23 14:21:17', null);
  2905. INSERT INTO `ibrand_goods_photo` VALUES ('695', '50', 'https://cdn.viperky.com/storage/images/20180515/XUTaKafW3Y.png', '9', 'fec2f99cec9227398038', '1', '1', '2018-05-23 14:21:17', '2018-05-23 14:21:17', null);
  2906. INSERT INTO `ibrand_goods_photo` VALUES ('696', '50', 'https://cdn.viperky.com/storage/images/20180515/Nid6xF5DQd.png', '8', 'dd070abc65c0e31f92f3', '0', '1', '2018-05-23 14:21:17', '2018-05-23 14:21:17', null);
  2907. INSERT INTO `ibrand_goods_photo` VALUES ('701', '54', 'https://cdn.viperky.com/storage/images/20180515/lQxXEZJaD1.png', '9', 'b27048112ddf65553196', '1', '1', '2018-05-23 14:23:49', '2018-05-23 14:23:49', null);
  2908. INSERT INTO `ibrand_goods_photo` VALUES ('702', '54', 'https://cdn.viperky.com/storage/images/20180515/Du3ESMOsv1.png', '9', '925a5f08d8290f473d47', '0', '1', '2018-05-23 14:23:49', '2018-05-23 14:23:49', null);
  2909. INSERT INTO `ibrand_goods_photo` VALUES ('703', '54', 'https://cdn.viperky.com/storage/images/20180515/9GfXkH7ATb.png', '9', '4d20ade0e3226e9f1c52', '0', '1', '2018-05-23 14:23:49', '2018-05-23 14:23:49', null);
  2910. INSERT INTO `ibrand_goods_photo` VALUES ('704', '54', 'https://cdn.viperky.com/storage/images/20180515/zdfx7Zf9sb.png', '9', '2bcbf641d4ad21ba3474', '0', '1', '2018-05-23 14:23:49', '2018-05-23 14:23:49', null);
  2911. INSERT INTO `ibrand_goods_photo` VALUES ('705', '54', 'https://cdn.viperky.com/storage/images/20180515/00Q05khGuz.png', '9', '34d4b5c787764a90bfcf', '0', '1', '2018-05-23 14:23:49', '2018-05-23 14:23:49', null);
  2912. INSERT INTO `ibrand_goods_photo` VALUES ('706', '54', 'https://cdn.viperky.com/storage/images/20180515/XFKmEku1u3.png', '9', 'd6163eab3a46f8311aa7', '0', '1', '2018-05-23 14:23:49', '2018-05-23 14:23:49', null);
  2913. INSERT INTO `ibrand_goods_photo` VALUES ('727', '61', 'https://cdn.viperky.com/storage/images/20180515/jZk6aIWHAQ.png', '9', 'c98e41db41c1913041cc', '0', '1', '2018-05-23 14:27:34', '2018-05-23 14:27:34', null);
  2914. INSERT INTO `ibrand_goods_photo` VALUES ('728', '61', 'https://cdn.viperky.com/storage/images/20180515/J2rK6H1FB3.png', '9', '93297f1e90c5d3cb9ab1', '0', '1', '2018-05-23 14:27:34', '2018-05-23 14:27:34', null);
  2915. INSERT INTO `ibrand_goods_photo` VALUES ('729', '61', 'https://cdn.viperky.com/storage/images/20180515/KGNtNdkYbb.png', '9', '9b6f7a97b17d155e8459', '0', '1', '2018-05-23 14:27:34', '2018-05-23 14:27:34', null);
  2916. INSERT INTO `ibrand_goods_photo` VALUES ('730', '61', 'https://cdn.viperky.com/storage/images/20180515/EZflFfJVb7.png', '9', '82a33b664d8ab33f5c2f', '0', '1', '2018-05-23 14:27:34', '2018-05-23 14:27:34', null);
  2917. INSERT INTO `ibrand_goods_photo` VALUES ('731', '61', 'https://cdn.viperky.com/storage/images/20180515/3aeigfciq6.png', '9', '0d4dd25c817aa14fb459', '1', '1', '2018-05-23 14:27:34', '2018-05-23 14:27:34', null);
  2918. INSERT INTO `ibrand_goods_photo` VALUES ('739', '63', 'https://cdn.viperky.com/storage/images/20180516/9CH0ykc9Pv.png', '9', '25ab81756a501f5d21cb', '1', '1', '2018-05-23 14:28:40', '2018-05-23 14:28:40', null);
  2919. INSERT INTO `ibrand_goods_photo` VALUES ('740', '63', 'https://cdn.viperky.com/storage/images/20180516/CmkSbz0ewz.png', '9', '68e5bdf39bb72e434a68', '0', '1', '2018-05-23 14:28:40', '2018-05-23 14:28:40', null);
  2920. INSERT INTO `ibrand_goods_photo` VALUES ('741', '63', 'https://cdn.viperky.com/storage/images/20180516/XUsGxWlbwa.png', '9', '1335ea8b07691510044f', '0', '1', '2018-05-23 14:28:40', '2018-05-23 14:28:40', null);
  2921. INSERT INTO `ibrand_goods_photo` VALUES ('742', '63', 'https://cdn.viperky.com/storage/images/20180516/MfJocG7z3i.png', '9', 'af5353c0ad55e1d9814d', '0', '1', '2018-05-23 14:28:40', '2018-05-23 14:28:40', null);
  2922. INSERT INTO `ibrand_goods_photo` VALUES ('743', '65', 'https://cdn.viperky.com/storage/images/20180516/rtKPDHPXgX.png', '9', 'e90cd0d7cd61feb93c6b', '1', '1', '2018-05-23 14:31:19', '2018-05-23 14:31:19', null);
  2923. INSERT INTO `ibrand_goods_photo` VALUES ('744', '65', 'https://cdn.viperky.com/storage/images/20180516/3sk8tgbRcs.png', '9', 'a3cf228b9a62bc0790c5', '0', '1', '2018-05-23 14:31:19', '2018-05-23 14:31:19', null);
  2924. INSERT INTO `ibrand_goods_photo` VALUES ('745', '65', 'https://cdn.viperky.com/storage/images/20180516/3icpfEmo3N.png', '9', 'b2bf7acad9820aeb30e4', '0', '1', '2018-05-23 14:31:19', '2018-05-23 14:31:19', null);
  2925. INSERT INTO `ibrand_goods_photo` VALUES ('746', '65', 'https://cdn.viperky.com/storage/images/20180516/sZlkA7TOAS.png', '9', 'dd376837dbfbfd0692cb', '0', '1', '2018-05-23 14:31:19', '2018-05-23 14:31:19', null);
  2926. INSERT INTO `ibrand_goods_photo` VALUES ('747', '65', 'https://cdn.viperky.com/storage/images/20180516/F5BneaXyhi.png', '9', '5a21339cccc62903548d', '0', '1', '2018-05-23 14:31:19', '2018-05-23 14:31:19', null);
  2927. INSERT INTO `ibrand_goods_photo` VALUES ('748', '65', 'https://cdn.viperky.com/storage/images/20180516/au3tCfOIeN.png', '9', 'e9088bc32e009dbc438e', '0', '1', '2018-05-23 14:31:19', '2018-05-23 14:31:19', null);
  2928. INSERT INTO `ibrand_goods_photo` VALUES ('749', '65', 'https://cdn.viperky.com/storage/images/20180516/yC8L6LmoSB.png', '9', '0e1818ff9fc9d001b462', '0', '1', '2018-05-23 14:31:19', '2018-05-23 14:31:19', null);
  2929. INSERT INTO `ibrand_goods_photo` VALUES ('750', '65', 'https://cdn.viperky.com/storage/images/20180516/XiL08GtgpH.png', '9', '3c69e08d516a79f05246', '0', '1', '2018-05-23 14:31:19', '2018-05-23 14:31:19', null);
  2930. INSERT INTO `ibrand_goods_photo` VALUES ('751', '66', 'https://cdn.viperky.com/storage/images/20180516/wbJDwcf7X8.png', '8', '23307275dd48d08ecbc1', '0', '1', '2018-05-23 14:32:06', '2018-05-23 14:32:06', null);
  2931. INSERT INTO `ibrand_goods_photo` VALUES ('752', '66', 'https://cdn.viperky.com/storage/images/20180516/5qeqUlrb8C.png', '9', '5a40a1667ba67f713329', '1', '1', '2018-05-23 14:32:06', '2018-05-23 14:32:06', null);
  2932. INSERT INTO `ibrand_goods_photo` VALUES ('753', '66', 'https://cdn.viperky.com/storage/images/20180516/NSKmL2JHte.png', '5', '3b58027ee1ee832f92a9', '0', '1', '2018-05-23 14:32:06', '2018-05-23 14:32:06', null);
  2933. INSERT INTO `ibrand_goods_photo` VALUES ('754', '66', 'https://cdn.viperky.com/storage/images/20180516/kxRTHrkcNx.png', '6', '34cb3bebfee233659b38', '0', '1', '2018-05-23 14:32:06', '2018-05-23 14:32:06', null);
  2934. INSERT INTO `ibrand_goods_photo` VALUES ('755', '66', 'https://cdn.viperky.com/storage/images/20180516/2kJuoHRKfP.png', '7', 'a96eb930438ca5482963', '0', '1', '2018-05-23 14:32:06', '2018-05-23 14:32:06', null);
  2935. INSERT INTO `ibrand_goods_photo` VALUES ('756', '66', 'https://cdn.viperky.com/storage/images/20180516/7JzQFNNOpM.png', '4', '63c227d5c317186fb3b3', '0', '1', '2018-05-23 14:32:06', '2018-05-23 14:32:06', null);
  2936. INSERT INTO `ibrand_goods_photo` VALUES ('757', '67', 'https://cdn.viperky.com/storage/images/20180516/15fX573g5k.png', '9', '193796313ecfa7d987b0', '1', '1', '2018-05-23 14:32:29', '2018-05-23 14:32:29', null);
  2937. INSERT INTO `ibrand_goods_photo` VALUES ('758', '67', 'https://cdn.viperky.com/storage/images/20180516/wbJDwcf7X8.png', '9', '1b0598d43d2b5c3e6b9a', '0', '1', '2018-05-23 14:32:29', '2018-05-23 14:32:29', null);
  2938. INSERT INTO `ibrand_goods_photo` VALUES ('759', '67', 'https://cdn.viperky.com/storage/images/20180516/Z7V5zHv2GD.png', '9', '990b5efe8c12b47b9077', '0', '1', '2018-05-23 14:32:29', '2018-05-23 14:32:29', null);
  2939. INSERT INTO `ibrand_goods_photo` VALUES ('760', '67', 'https://cdn.viperky.com/storage/images/20180516/5qeqUlrb8C.png', '9', '8a71c337b176d74bb44d', '0', '1', '2018-05-23 14:32:29', '2018-05-23 14:32:29', null);
  2940. INSERT INTO `ibrand_goods_photo` VALUES ('761', '67', 'https://cdn.viperky.com/storage/images/20180516/R32uQvWl8c.png', '9', 'b98079b077183bc2f9d0', '0', '1', '2018-05-23 14:32:29', '2018-05-23 14:32:29', null);
  2941. INSERT INTO `ibrand_goods_photo` VALUES ('762', '67', 'https://cdn.viperky.com/storage/images/20180516/jHIO6mskgW.png', '9', '03eeb796976ca2713f6b', '0', '1', '2018-05-23 14:32:29', '2018-05-23 14:32:29', null);
  2942. INSERT INTO `ibrand_goods_photo` VALUES ('763', '67', 'https://cdn.viperky.com/storage/images/20180516/c9jlCTtNWV.png', '9', 'c470a2fd74f9fed1dd89', '0', '1', '2018-05-23 14:32:29', '2018-05-23 14:32:29', null);
  2943. INSERT INTO `ibrand_goods_photo` VALUES ('764', '76', 'https://cdn.viperky.com/storage/images/20180516/CsyN8UYzov.png', '6', 'ba37279e75fd37d63c47', '0', '1', '2018-05-23 14:35:55', '2018-05-23 14:35:55', null);
  2944. INSERT INTO `ibrand_goods_photo` VALUES ('765', '76', 'https://cdn.viperky.com/storage/images/20180516/yCKKnaesUe.png', '9', '493b7856293eb2da75ec', '1', '1', '2018-05-23 14:35:55', '2018-05-23 14:35:55', null);
  2945. INSERT INTO `ibrand_goods_photo` VALUES ('766', '76', 'https://cdn.viperky.com/storage/images/20180516/zXpiLIFq17.png', '8', '693d99bad24923eb96e5', '0', '1', '2018-05-23 14:35:55', '2018-05-23 14:35:55', null);
  2946. INSERT INTO `ibrand_goods_photo` VALUES ('767', '76', 'https://cdn.viperky.com/storage/images/20180516/MWAuwIN1He.png', '7', 'f9292a71491f2bb568d3', '0', '1', '2018-05-23 14:35:55', '2018-05-23 14:35:55', null);
  2947. INSERT INTO `ibrand_goods_photo` VALUES ('768', '75', 'https://cdn.viperky.com/storage/images/20180516/qcXyyqxBwS.png', '5', '984cef1123f481278227', '0', '1', '2018-05-23 14:36:30', '2018-05-23 14:36:30', null);
  2948. INSERT INTO `ibrand_goods_photo` VALUES ('769', '75', 'https://cdn.viperky.com/storage/images/20180516/A5fJXdPrxF.png', '9', '8add26b33ee538d3e6b8', '1', '1', '2018-05-23 14:36:30', '2018-05-23 14:36:30', null);
  2949. INSERT INTO `ibrand_goods_photo` VALUES ('770', '75', 'https://cdn.viperky.com/storage/images/20180516/USJY5vTutG.png', '8', '9177c832374fe2e98c4d', '0', '1', '2018-05-23 14:36:30', '2018-05-23 14:36:30', null);
  2950. INSERT INTO `ibrand_goods_photo` VALUES ('771', '75', 'https://cdn.viperky.com/storage/images/20180516/0Ja7JDjDIb.png', '7', 'f26e9268124e83068437', '0', '1', '2018-05-23 14:36:30', '2018-05-23 14:36:30', null);
  2951. INSERT INTO `ibrand_goods_photo` VALUES ('772', '75', 'https://cdn.viperky.com/storage/images/20180516/MyCbvlEmqV.png', '6', 'a04ea46dad5facdfa0d3', '0', '1', '2018-05-23 14:36:30', '2018-05-23 14:36:30', null);
  2952. INSERT INTO `ibrand_goods_photo` VALUES ('773', '74', 'https://cdn.viperky.com/storage/images/20180516/qtKaaKumQQ.png', '9', '4262b236862619b402b6', '0', '1', '2018-05-23 14:37:11', '2018-05-23 14:37:11', null);
  2953. INSERT INTO `ibrand_goods_photo` VALUES ('774', '74', 'https://cdn.viperky.com/storage/images/20180516/j0HM97EZF6.png', '9', 'b5e0f3f0bc657579924f', '0', '1', '2018-05-23 14:37:11', '2018-05-23 14:37:11', null);
  2954. INSERT INTO `ibrand_goods_photo` VALUES ('775', '74', 'https://cdn.viperky.com/storage/images/20180516/I24BM7tYBo.png', '9', 'a753237aa97f62ae769e', '0', '1', '2018-05-23 14:37:11', '2018-05-23 14:37:11', null);
  2955. INSERT INTO `ibrand_goods_photo` VALUES ('776', '74', 'https://cdn.viperky.com/storage/images/20180516/A23SDWQ53v.png', '9', '692cc378e9a3329b1644', '0', '1', '2018-05-23 14:37:11', '2018-05-23 14:37:11', null);
  2956. INSERT INTO `ibrand_goods_photo` VALUES ('777', '74', 'https://cdn.viperky.com/storage/images/20180516/IoUN42GjmS.png', '9', 'c984e25f695ba4c99fd8', '0', '1', '2018-05-23 14:37:11', '2018-05-23 14:37:11', null);
  2957. INSERT INTO `ibrand_goods_photo` VALUES ('778', '74', 'https://cdn.viperky.com/storage/images/20180516/oSmerYZcLg.png', '9', '0d35453bc6cbad8f380f', '1', '1', '2018-05-23 14:37:11', '2018-05-23 14:37:11', null);
  2958. INSERT INTO `ibrand_goods_photo` VALUES ('779', '70', 'https://cdn.viperky.com/storage/images/20180516/lVEavSIkNw.png', '9', '18ee45dc58f5223d356e', '0', '1', '2018-05-23 14:38:02', '2018-05-23 14:38:02', null);
  2959. INSERT INTO `ibrand_goods_photo` VALUES ('780', '70', 'https://cdn.viperky.com/storage/images/20180516/gnh2LyQm46.png', '9', '7c5558eba2f0ce3d0196', '1', '1', '2018-05-23 14:38:02', '2018-05-23 14:38:02', null);
  2960. INSERT INTO `ibrand_goods_photo` VALUES ('781', '70', 'https://cdn.viperky.com/storage/images/20180516/k1fiwe7n9R.png', '9', '79b984f79c2fc4b1406b', '0', '1', '2018-05-23 14:38:02', '2018-05-23 14:38:02', null);
  2961. INSERT INTO `ibrand_goods_photo` VALUES ('782', '70', 'https://cdn.viperky.com/storage/images/20180516/jNpaCZ69mm.png', '9', '9ce106b748dbb1855b9d', '0', '1', '2018-05-23 14:38:02', '2018-05-23 14:38:02', null);
  2962. INSERT INTO `ibrand_goods_photo` VALUES ('783', '70', 'https://cdn.viperky.com/storage/images/20180516/Op6uJzeWA2.png', '9', '81cb3ca62e378eecef37', '0', '1', '2018-05-23 14:38:02', '2018-05-23 14:38:02', null);
  2963. INSERT INTO `ibrand_goods_photo` VALUES ('784', '70', 'https://cdn.viperky.com/storage/images/20180516/aVe4cPDjPb.png', '9', '5a9623185b6ce7f37417', '0', '1', '2018-05-23 14:38:02', '2018-05-23 14:38:02', null);
  2964. INSERT INTO `ibrand_goods_photo` VALUES ('785', '70', 'https://cdn.viperky.com/storage/images/20180516/17ypXoieje.png', '9', '39d598ab9437a112f06a', '0', '1', '2018-05-23 14:38:02', '2018-05-23 14:38:02', null);
  2965. INSERT INTO `ibrand_goods_photo` VALUES ('786', '70', 'https://cdn.viperky.com/storage/images/20180516/YkrbLh20A9.png', '9', '6f4e428d85cae40633da', '0', '1', '2018-05-23 14:38:02', '2018-05-23 14:38:02', null);
  2966. INSERT INTO `ibrand_goods_photo` VALUES ('787', '68', 'https://cdn.viperky.com/storage/images/20180516/COMgwbINCI.png', '5', '0f0b3243dc57f09aca36', '0', '1', '2018-05-23 14:38:41', '2018-05-23 14:38:41', null);
  2967. INSERT INTO `ibrand_goods_photo` VALUES ('788', '68', 'https://cdn.viperky.com/storage/images/20180516/w8rNUlXH45.png', '6', '55cd69e84e51adba028d', '0', '1', '2018-05-23 14:38:41', '2018-05-23 14:38:41', null);
  2968. INSERT INTO `ibrand_goods_photo` VALUES ('789', '68', 'https://cdn.viperky.com/storage/images/20180516/PC00HvwETk.png', '9', '3acda143b0321422c8bb', '1', '1', '2018-05-23 14:38:41', '2018-05-23 14:38:41', null);
  2969. INSERT INTO `ibrand_goods_photo` VALUES ('790', '68', 'https://cdn.viperky.com/storage/images/20180516/ZzrWZk8FXO.png', '8', 'c5248a03d1cbd638745f', '0', '1', '2018-05-23 14:38:41', '2018-05-23 14:38:41', null);
  2970. INSERT INTO `ibrand_goods_photo` VALUES ('791', '68', 'https://cdn.viperky.com/storage/images/20180516/4rcgc1fFYv.png', '7', '6d471afef4fc062581be', '0', '1', '2018-05-23 14:38:41', '2018-05-23 14:38:41', null);
  2971. INSERT INTO `ibrand_goods_photo` VALUES ('799', '82', 'https://cdn.viperky.com/storage/images/20180525/OwUQuZk6W8.png', '9', 'cf18cb0dafdb4a53911b', '1', '1', '2018-05-25 10:00:35', '2018-05-25 10:00:35', null);
  2972. INSERT INTO `ibrand_goods_photo` VALUES ('800', '82', 'https://cdn.viperky.com/storage/images/20180525/4N2cioMDSs.png', '8', 'f31fd382bbfa7ec59d16', '0', '1', '2018-05-25 10:00:35', '2018-05-25 10:00:35', null);
  2973. INSERT INTO `ibrand_goods_photo` VALUES ('801', '82', 'https://cdn.viperky.com/storage/images/20180525/GpItIHiI9t.png', '7', '061c1c05417f5de5b6b0', '0', '1', '2018-05-25 10:00:35', '2018-05-25 10:00:35', null);
  2974. INSERT INTO `ibrand_goods_photo` VALUES ('802', '82', 'https://cdn.viperky.com/storage/images/20180525/3P9a1RzVGQ.png', '4', 'a63cc223723c754d1915', '0', '1', '2018-05-25 10:00:35', '2018-05-25 10:00:35', null);
  2975. INSERT INTO `ibrand_goods_photo` VALUES ('803', '82', 'https://cdn.viperky.com/storage/images/20180525/tcSLZSLQLW.png', '6', 'df8c01759e3dabe6ab4c', '0', '1', '2018-05-25 10:00:35', '2018-05-25 10:00:35', null);
  2976. INSERT INTO `ibrand_goods_photo` VALUES ('804', '82', 'https://cdn.viperky.com/storage/images/20180525/Py15g4WGY3.png', '5', 'fd1f2fb0d900e15e7a83', '0', '1', '2018-05-25 10:00:35', '2018-05-25 10:00:35', null);
  2977. INSERT INTO `ibrand_goods_photo` VALUES ('805', '95', 'https://cdn.viperky.com/storage/images/20180525/Xsoj2c7PDx.png', '9', '500c4a4ced4e7775feba', '1', '1', '2018-05-25 13:03:57', '2018-05-25 13:03:57', null);
  2978. INSERT INTO `ibrand_goods_photo` VALUES ('806', '95', 'https://cdn.viperky.com/storage/images/20180525/GDw6zPH56L.png', '9', '20e3b1baab2289b1e7cb', '0', '1', '2018-05-25 13:03:57', '2018-05-25 13:03:57', null);
  2979. INSERT INTO `ibrand_goods_photo` VALUES ('807', '95', 'https://cdn.viperky.com/storage/images/20180525/I68KMynJ8U.png', '9', '02892ac99d04d832f0db', '0', '1', '2018-05-25 13:03:57', '2018-05-25 13:03:57', null);
  2980. INSERT INTO `ibrand_goods_photo` VALUES ('808', '95', 'https://cdn.viperky.com/storage/images/20180525/vobh3rklTK.png', '9', '63d3d55d5ec91de9c800', '0', '1', '2018-05-25 13:03:57', '2018-05-25 13:03:57', null);
  2981. INSERT INTO `ibrand_goods_photo` VALUES ('809', '95', 'https://cdn.viperky.com/storage/images/20180525/5LRp01Ytkr.png', '9', 'cff9a15cae6d3c8e04a2', '0', '1', '2018-05-25 13:03:57', '2018-05-25 13:03:57', null);
  2982. INSERT INTO `ibrand_goods_photo` VALUES ('810', '96', 'https://cdn.viperky.com/storage/images/20180525/ybwWBiIgtk.png', '9', '8b7c1abcbed240090722', '0', '1', '2018-05-25 13:12:50', '2018-05-25 13:12:50', null);
  2983. INSERT INTO `ibrand_goods_photo` VALUES ('811', '96', 'https://cdn.viperky.com/storage/images/20180525/p70wPeToIb.png', '9', 'bfb05f343452d9e80dd1', '1', '1', '2018-05-25 13:12:50', '2018-05-25 13:12:50', null);
  2984. INSERT INTO `ibrand_goods_photo` VALUES ('812', '96', 'https://cdn.viperky.com/storage/images/20180525/HurXEguiRX.png', '9', '45ca8cc7bcc18ef49bb2', '0', '1', '2018-05-25 13:12:50', '2018-05-25 13:12:50', null);
  2985. INSERT INTO `ibrand_goods_photo` VALUES ('813', '96', 'https://cdn.viperky.com/storage/images/20180525/LXKjj6frFv.png', '9', 'e6313d41f9c4ada9fcb9', '0', '1', '2018-05-25 13:12:50', '2018-05-25 13:12:50', null);
  2986. INSERT INTO `ibrand_goods_photo` VALUES ('814', '96', 'https://cdn.viperky.com/storage/images/20180525/rCd6rjj7Ks.png', '9', '71241e467c0be9a3e7a9', '0', '1', '2018-05-25 13:12:50', '2018-05-25 13:12:50', null);
  2987. INSERT INTO `ibrand_goods_photo` VALUES ('815', '52', 'https://cdn.viperky.com/storage/images/20180515/BTU3qg1nB6.png', '9', '2d630c7fe697ab574adf', '1', '1', '2018-05-25 13:46:01', '2018-05-25 13:46:01', null);
  2988. INSERT INTO `ibrand_goods_photo` VALUES ('816', '52', 'https://cdn.viperky.com/storage/images/20180515/wXL8xvA3Be.png', '8', 'f14ba0bad5a761f6da81', '0', '1', '2018-05-25 13:46:01', '2018-05-25 13:46:01', null);
  2989. INSERT INTO `ibrand_goods_photo` VALUES ('817', '52', 'https://cdn.viperky.com/storage/images/20180515/p7H05iyFZ7.png', '7', 'a16d2b292b2378e2a903', '0', '1', '2018-05-25 13:46:01', '2018-05-25 13:46:01', null);
  2990. INSERT INTO `ibrand_goods_photo` VALUES ('818', '52', 'https://cdn.viperky.com/storage/images/20180515/9eH8YeWzax.png', '6', '853176e208897ef305df', '0', '1', '2018-05-25 13:46:01', '2018-05-25 13:46:01', null);
  2991. INSERT INTO `ibrand_goods_photo` VALUES ('819', '52', 'https://cdn.viperky.com/storage/images/20180515/N5kxjyjUmz.png', '5', 'e83af5531029bd16b97b', '0', '1', '2018-05-25 13:46:01', '2018-05-25 13:46:01', null);
  2992. INSERT INTO `ibrand_goods_photo` VALUES ('820', '97', 'https://cdn.viperky.com/storage/images/20180525/w9YOk1KX3W.png', '9', '1db07f5120c3964b751b', '1', '1', '2018-05-25 13:46:10', '2018-05-25 13:46:10', null);
  2993. INSERT INTO `ibrand_goods_photo` VALUES ('821', '97', 'https://cdn.viperky.com/storage/images/20180525/FnepEU4cco.png', '9', 'a4f4d3682ae0ea80ff83', '0', '1', '2018-05-25 13:46:10', '2018-05-25 13:46:10', null);
  2994. INSERT INTO `ibrand_goods_photo` VALUES ('822', '97', 'https://cdn.viperky.com/storage/images/20180525/GQqeRNpcmK.png', '9', 'c4328ecbb0b4656b37e7', '0', '1', '2018-05-25 13:46:10', '2018-05-25 13:46:10', null);
  2995. INSERT INTO `ibrand_goods_photo` VALUES ('823', '97', 'https://cdn.viperky.com/storage/images/20180525/2QR88bAiI4.png', '9', '3d070f1df6971183625d', '0', '1', '2018-05-25 13:46:10', '2018-05-25 13:46:10', null);
  2996. INSERT INTO `ibrand_goods_photo` VALUES ('824', '97', 'https://cdn.viperky.com/storage/images/20180525/33T9bbL6Ms.png', '9', '2c31cb58648185f49b73', '0', '1', '2018-05-25 13:46:10', '2018-05-25 13:46:10', null);
  2997. INSERT INTO `ibrand_goods_photo` VALUES ('835', '13', 'https://cdn.viperky.com/storage/images/20170922/zkxPM8kQP5.jpg', '9', 'c3f2d6b9d78afa020da4', '1', '1', '2018-05-25 14:08:34', '2018-05-25 14:08:34', null);
  2998. INSERT INTO `ibrand_goods_photo` VALUES ('836', '13', 'https://cdn.viperky.com/storage/images/20170922/pfXMvd6bCV.jpg', '9', '098fe17c68fac50e2d8e', '0', '1', '2018-05-25 14:08:34', '2018-05-25 14:08:34', null);
  2999. INSERT INTO `ibrand_goods_photo` VALUES ('842', '99', 'https://cdn.viperky.com/storage/images/20180525/UlcXjFBp6R.png', '9', '2ae108deaa1178dc121c', '1', '1', '2018-05-25 14:29:11', '2018-05-25 14:29:11', null);
  3000. INSERT INTO `ibrand_goods_photo` VALUES ('843', '99', 'https://cdn.viperky.com/storage/images/20180525/ImsYFEe8uz.png', '9', '86036e21c2988cc3702f', '0', '1', '2018-05-25 14:29:11', '2018-05-25 14:29:11', null);
  3001. INSERT INTO `ibrand_goods_photo` VALUES ('844', '99', 'https://cdn.viperky.com/storage/images/20180525/sM60CSAJ34.png', '9', '2a3eabf1b29e9fbf36cc', '0', '1', '2018-05-25 14:29:11', '2018-05-25 14:29:11', null);
  3002. INSERT INTO `ibrand_goods_photo` VALUES ('845', '99', 'https://cdn.viperky.com/storage/images/20180525/lWKfSKkk2q.png', '9', '3d23ddda671814c6f4c1', '0', '1', '2018-05-25 14:29:11', '2018-05-25 14:29:11', null);
  3003. INSERT INTO `ibrand_goods_photo` VALUES ('846', '99', 'https://cdn.viperky.com/storage/images/20180525/Ht8Rb04RXS.png', '9', '769dafe1bb3aeb57c004', '0', '1', '2018-05-25 14:29:11', '2018-05-25 14:29:11', null);
  3004. INSERT INTO `ibrand_goods_photo` VALUES ('852', '101', 'https://cdn.viperky.com/storage/images/20180525/bqA0rkDnxp.png', '9', '2f0f158163fe1d4eb552', '1', '1', '2018-05-25 14:57:20', '2018-05-25 14:57:20', null);
  3005. INSERT INTO `ibrand_goods_photo` VALUES ('853', '101', 'https://cdn.viperky.com/storage/images/20180525/yBRLW2LaqL.png', '9', '1810678ad4cf8c6eff5b', '0', '1', '2018-05-25 14:57:20', '2018-05-25 14:57:20', null);
  3006. INSERT INTO `ibrand_goods_photo` VALUES ('854', '101', 'https://cdn.viperky.com/storage/images/20180525/EmsYI0B8xr.png', '9', '5d42eb915ff704452a70', '0', '1', '2018-05-25 14:57:20', '2018-05-25 14:57:20', null);
  3007. INSERT INTO `ibrand_goods_photo` VALUES ('855', '101', 'https://cdn.viperky.com/storage/images/20180525/b4R9GUWK6R.png', '9', 'b43e77d93ccf5d8d311e', '0', '1', '2018-05-25 14:57:20', '2018-05-25 14:57:20', null);
  3008. INSERT INTO `ibrand_goods_photo` VALUES ('856', '101', 'https://cdn.viperky.com/storage/images/20180525/6nePhNN1Wi.png', '9', 'ec1d843ce7dbbdfa949d', '0', '1', '2018-05-25 14:57:20', '2018-05-25 14:57:20', null);
  3009. INSERT INTO `ibrand_goods_photo` VALUES ('862', '102', 'https://cdn.viperky.com/storage/images/20180525/nYFaYop09l.png', '9', 'fa963d063efb1678041b', '0', '1', '2018-05-25 15:13:58', '2018-05-25 15:13:58', null);
  3010. INSERT INTO `ibrand_goods_photo` VALUES ('863', '102', 'https://cdn.viperky.com/storage/images/20180525/Q4poLJMkdk.png', '9', 'f46513eeebbd4e8bbbd8', '0', '1', '2018-05-25 15:13:58', '2018-05-25 15:13:58', null);
  3011. INSERT INTO `ibrand_goods_photo` VALUES ('864', '102', 'https://cdn.viperky.com/storage/images/20180525/vmLEC8XwcA.png', '9', 'bab739e6e867495777db', '0', '1', '2018-05-25 15:13:58', '2018-05-25 15:13:58', null);
  3012. INSERT INTO `ibrand_goods_photo` VALUES ('865', '102', 'https://cdn.viperky.com/storage/images/20180525/nowCRPMsIl.png', '9', '1687676b18bef0429b1b', '0', '1', '2018-05-25 15:13:58', '2018-05-25 15:13:58', null);
  3013. INSERT INTO `ibrand_goods_photo` VALUES ('866', '102', 'https://cdn.viperky.com/storage/images/20180525/4h4mxaCOwx.png', '9', '3988697a3c69fdf5d20b', '1', '1', '2018-05-25 15:13:58', '2018-05-25 15:13:58', null);
  3014. INSERT INTO `ibrand_goods_photo` VALUES ('867', '58', 'https://cdn.viperky.com/storage/images/20180515/FfU3K1VWYs.png', '9', '5c91e23776a1be2219ab', '0', '1', '2018-05-28 09:38:57', '2018-05-28 09:38:57', null);
  3015. INSERT INTO `ibrand_goods_photo` VALUES ('868', '58', 'https://cdn.viperky.com/storage/images/20180515/P1vTB9WSVq.png', '9', '0352f485847e54fc1baf', '0', '1', '2018-05-28 09:38:57', '2018-05-28 09:38:57', null);
  3016. INSERT INTO `ibrand_goods_photo` VALUES ('869', '58', 'https://cdn.viperky.com/storage/images/20180515/JdvCbSTBx6.png', '9', '5994b7c3ad6187663a24', '0', '1', '2018-05-28 09:38:57', '2018-05-28 09:38:57', null);
  3017. INSERT INTO `ibrand_goods_photo` VALUES ('870', '58', 'https://cdn.viperky.com/storage/images/20180515/QnAzriQw35.png', '9', '59e7b5dfc27377dbb5b5', '1', '1', '2018-05-28 09:38:57', '2018-05-28 09:38:57', null);
  3018. INSERT INTO `ibrand_goods_photo` VALUES ('871', '58', 'https://cdn.viperky.com/storage/images/20180515/elgJw8iQgk.png', '9', '5261835c47356fa7f057', '0', '1', '2018-05-28 09:38:57', '2018-05-28 09:38:57', null);
  3019. INSERT INTO `ibrand_goods_photo` VALUES ('872', '58', 'https://cdn.viperky.com/storage/images/20180515/RpcJ2ZI254.png', '9', '596cdf4c9495b610a262', '0', '1', '2018-05-28 09:38:57', '2018-05-28 09:38:57', null);
  3020. INSERT INTO `ibrand_goods_photo` VALUES ('873', '47', 'https://cdn.viperky.com/storage/images/20180515/0nleBBvhdt.jpg', '9', 'ab2dccd56f674273f823', '1', '1', '2018-05-28 09:41:32', '2018-05-28 09:41:32', null);
  3021. INSERT INTO `ibrand_goods_photo` VALUES ('874', '47', 'https://cdn.viperky.com/storage/images/20180515/FnxdqoBQdw.jpg', '9', '560ad6f6d4129041ed5f', '0', '1', '2018-05-28 09:41:32', '2018-05-28 09:41:32', null);
  3022. INSERT INTO `ibrand_goods_photo` VALUES ('875', '47', 'https://cdn.viperky.com/storage/images/20180515/CehdU0PPC5.png', '9', 'a55c0ee3df8b1f17473b', '0', '1', '2018-05-28 09:41:32', '2018-05-28 09:41:32', null);
  3023. INSERT INTO `ibrand_goods_photo` VALUES ('876', '47', 'https://cdn.viperky.com/storage/images/20180515/V7JjkDNvIK.png', '9', '995d2ca89da1fb1c7d26', '0', '1', '2018-05-28 09:41:32', '2018-05-28 09:41:32', null);
  3024. INSERT INTO `ibrand_goods_photo` VALUES ('877', '47', 'https://cdn.viperky.com/storage/images/20180515/vvyfVYqTJ5.png', '9', 'a746c6a7dcae186995ae', '0', '1', '2018-05-28 09:41:32', '2018-05-28 09:41:32', null);
  3025. INSERT INTO `ibrand_goods_photo` VALUES ('878', '100', 'https://cdn.viperky.com/storage/images/20180525/fBOKr15rw6.png', '9', '1bd0ce59ca2239042dd8', '1', '1', '2018-05-28 15:10:23', '2018-05-28 15:10:23', null);
  3026. INSERT INTO `ibrand_goods_photo` VALUES ('879', '100', 'https://cdn.viperky.com/storage/images/20180525/3olelF3OaV.png', '9', '4ef444dfbbff50786b8d', '0', '1', '2018-05-28 15:10:23', '2018-05-28 15:10:23', null);
  3027. INSERT INTO `ibrand_goods_photo` VALUES ('880', '100', 'https://cdn.viperky.com/storage/images/20180525/U3Ph8jHKE2.png', '9', '07e12ee3bde27adc8dc7', '0', '1', '2018-05-28 15:10:23', '2018-05-28 15:10:23', null);
  3028. INSERT INTO `ibrand_goods_photo` VALUES ('881', '100', 'https://cdn.viperky.com/storage/images/20180525/WDbdP5rafg.png', '9', '66f3117379d3cc17fd50', '0', '1', '2018-05-28 15:10:23', '2018-05-28 15:10:23', null);
  3029. INSERT INTO `ibrand_goods_photo` VALUES ('882', '100', 'https://cdn.viperky.com/storage/images/20180525/jLbHQsO1Pt.png', '9', 'c28b53e1160421d707d1', '0', '1', '2018-05-28 15:10:23', '2018-05-28 15:10:23', null);
  3030. INSERT INTO `ibrand_goods_photo` VALUES ('883', '98', 'https://cdn.viperky.com/storage/images/20180525/64tu3JIY7D.png', '9', 'cc80acc7f94ed5902e34', '1', '1', '2018-05-28 15:12:33', '2018-05-28 15:12:33', null);
  3031. INSERT INTO `ibrand_goods_photo` VALUES ('884', '98', 'https://cdn.viperky.com/storage/images/20180525/DCXd2fEUmg.png', '9', 'cb1f3f677ac65175c06c', '0', '1', '2018-05-28 15:12:33', '2018-05-28 15:12:33', null);
  3032. INSERT INTO `ibrand_goods_photo` VALUES ('885', '98', 'https://cdn.viperky.com/storage/images/20180525/i60MLuaS6U.png', '9', '4f67bb91406c2cac87c4', '0', '1', '2018-05-28 15:12:33', '2018-05-28 15:12:33', null);
  3033. INSERT INTO `ibrand_goods_photo` VALUES ('886', '98', 'https://cdn.viperky.com/storage/images/20180525/oU6RP1X7TX.png', '9', 'ab41695b6432d304c517', '0', '1', '2018-05-28 15:12:33', '2018-05-28 15:12:33', null);
  3034. INSERT INTO `ibrand_goods_photo` VALUES ('887', '98', 'https://cdn.viperky.com/storage/images/20180525/16hvxlNY1M.png', '9', '2c17a2ce2ad4391cc76f', '0', '1', '2018-05-28 15:12:33', '2018-05-28 15:12:33', null);
  3035. INSERT INTO `ibrand_goods_photo` VALUES ('923', '107', 'https://cdn.viperky.com/storage/images/20180528/9s5DGg9mjM.png', '9', '6132031b541dfbff91a2', '0', '1', '2018-05-31 16:52:47', '2018-05-31 16:52:47', null);
  3036. INSERT INTO `ibrand_goods_photo` VALUES ('924', '107', 'https://cdn.viperky.com/storage/images/20180528/dYDeLCqAIt.png', '9', 'f9bf9713c0d523413cc1', '0', '1', '2018-05-31 16:52:47', '2018-05-31 16:52:47', null);
  3037. INSERT INTO `ibrand_goods_photo` VALUES ('925', '107', 'https://cdn.viperky.com/storage/images/20180528/slUEp2a0oU.png', '9', 'f8f0be20c2c5db650e6c', '0', '1', '2018-05-31 16:52:47', '2018-05-31 16:52:47', null);
  3038. INSERT INTO `ibrand_goods_photo` VALUES ('926', '107', 'https://cdn.viperky.com/storage/images/20180528/RxNPlkBjYC.png', '9', 'd275df82f0ef7ae7759a', '0', '1', '2018-05-31 16:52:47', '2018-05-31 16:52:47', null);
  3039. INSERT INTO `ibrand_goods_photo` VALUES ('927', '107', 'https://cdn.viperky.com/storage/images/20180528/d0mi2NQVGH.png', '9', '9788a1d67fa58b502d1b', '1', '1', '2018-05-31 16:52:47', '2018-05-31 16:52:47', null);
  3040. INSERT INTO `ibrand_goods_photo` VALUES ('928', '106', 'https://cdn.viperky.com/storage/images/20180528/QZiWe55bKD.png', '9', '38e5d8b05f55ed640f93', '1', '1', '2018-05-31 16:53:00', '2018-05-31 16:53:00', null);
  3041. INSERT INTO `ibrand_goods_photo` VALUES ('929', '106', 'https://cdn.viperky.com/storage/images/20180528/vnezwHYeAj.png', '9', 'd88f53efdb7f78d0b522', '0', '1', '2018-05-31 16:53:00', '2018-05-31 16:53:00', null);
  3042. INSERT INTO `ibrand_goods_photo` VALUES ('930', '106', 'https://cdn.viperky.com/storage/images/20180528/LGpR5E95mn.png', '9', '44a2661b517b97b97f18', '0', '1', '2018-05-31 16:53:00', '2018-05-31 16:53:00', null);
  3043. INSERT INTO `ibrand_goods_photo` VALUES ('931', '106', 'https://cdn.viperky.com/storage/images/20180528/CuN988nSiU.png', '9', '6126c0a61936b952adab', '0', '1', '2018-05-31 16:53:00', '2018-05-31 16:53:00', null);
  3044. INSERT INTO `ibrand_goods_photo` VALUES ('932', '106', 'https://cdn.viperky.com/storage/images/20180528/Rilf1nb1Wv.png', '9', 'b8d7927c82e0be37ae3c', '0', '1', '2018-05-31 16:53:00', '2018-05-31 16:53:00', null);
  3045. INSERT INTO `ibrand_goods_photo` VALUES ('933', '105', 'https://cdn.viperky.com/storage/images/20180528/0b3IlKnXbV.png', '9', 'a555b282843d87090cf6', '0', '1', '2018-05-31 16:53:40', '2018-05-31 16:53:40', null);
  3046. INSERT INTO `ibrand_goods_photo` VALUES ('934', '105', 'https://cdn.viperky.com/storage/images/20180528/RQG22xFLdp.png', '9', '0ecef788e1ecfde0ff0f', '0', '1', '2018-05-31 16:53:40', '2018-05-31 16:53:40', null);
  3047. INSERT INTO `ibrand_goods_photo` VALUES ('935', '105', 'https://cdn.viperky.com/storage/images/20180528/ZrXYaODeKs.png', '9', '5d009570ad1df1e23479', '1', '1', '2018-05-31 16:53:40', '2018-05-31 16:53:40', null);
  3048. INSERT INTO `ibrand_goods_photo` VALUES ('936', '105', 'https://cdn.viperky.com/storage/images/20180528/VCXhZ35xo8.png', '9', '55e78284a0bcb738a355', '0', '1', '2018-05-31 16:53:40', '2018-05-31 16:53:40', null);
  3049. INSERT INTO `ibrand_goods_photo` VALUES ('937', '105', 'https://cdn.viperky.com/storage/images/20180528/F4g7AKnRop.png', '9', 'ccf31f8cf5e518a0928d', '0', '1', '2018-05-31 16:53:40', '2018-05-31 16:53:40', null);
  3050. INSERT INTO `ibrand_goods_photo` VALUES ('938', '105', 'https://cdn.viperky.com/storage/images/20180528/G6tBewrrED.png', '9', '3050a0d20883f9ab6c91', '0', '1', '2018-05-31 16:53:40', '2018-05-31 16:53:40', null);
  3051. INSERT INTO `ibrand_goods_photo` VALUES ('939', '104', 'https://cdn.viperky.com/storage/images/20180528/KbR3aN5tqj.png', '9', 'ca922da345108443be36', '0', '1', '2018-05-31 16:54:23', '2018-05-31 16:54:23', null);
  3052. INSERT INTO `ibrand_goods_photo` VALUES ('940', '104', 'https://cdn.viperky.com/storage/images/20180528/OGVPs2SJwE.png', '9', 'c2dd075abc76c758ec47', '0', '1', '2018-05-31 16:54:23', '2018-05-31 16:54:23', null);
  3053. INSERT INTO `ibrand_goods_photo` VALUES ('941', '104', 'https://cdn.viperky.com/storage/images/20180528/ObCG8FzWP8.png', '9', 'e64366d34417fdb5a3fd', '1', '1', '2018-05-31 16:54:23', '2018-05-31 16:54:23', null);
  3054. INSERT INTO `ibrand_goods_photo` VALUES ('942', '104', 'https://cdn.viperky.com/storage/images/20180528/eiIS1QygRj.png', '9', '95177b1431d6224d7e93', '0', '1', '2018-05-31 16:54:23', '2018-05-31 16:54:23', null);
  3055. INSERT INTO `ibrand_goods_photo` VALUES ('943', '104', 'https://cdn.viperky.com/storage/images/20180528/mNTnFq4WM0.png', '9', '1b6c2050f2aa2b1784f6', '0', '1', '2018-05-31 16:54:23', '2018-05-31 16:54:23', null);
  3056. INSERT INTO `ibrand_goods_photo` VALUES ('944', '104', 'https://cdn.viperky.com/storage/images/20180528/QG7323Zkr7.png', '9', '547de73588e086b17cc2', '0', '1', '2018-05-31 16:54:23', '2018-05-31 16:54:23', null);
  3057. INSERT INTO `ibrand_goods_photo` VALUES ('945', '104', 'https://cdn.viperky.com/storage/images/20180528/8a0uDJKpLV.png', '9', '6b97d41145119f4272c4', '0', '1', '2018-05-31 16:54:23', '2018-05-31 16:54:23', null);
  3058. INSERT INTO `ibrand_goods_photo` VALUES ('946', '103', 'https://cdn.viperky.com/storage/images/20180528/xwjexeyu9y.png', '9', '11ab55bedcc22956cec0', '0', '1', '2018-05-31 17:01:34', '2018-05-31 17:01:34', null);
  3059. INSERT INTO `ibrand_goods_photo` VALUES ('947', '103', 'https://cdn.viperky.com/storage/images/20180528/kStEhENY4M.png', '9', '434e085849661229e88c', '0', '1', '2018-05-31 17:01:34', '2018-05-31 17:01:34', null);
  3060. INSERT INTO `ibrand_goods_photo` VALUES ('948', '103', 'https://cdn.viperky.com/storage/images/20180528/ivncB2qDQz.png', '9', 'a934cd55a78865d682b3', '1', '1', '2018-05-31 17:01:34', '2018-05-31 17:01:34', null);
  3061. INSERT INTO `ibrand_goods_photo` VALUES ('949', '103', 'https://cdn.viperky.com/storage/images/20180528/hHeXHvhzTJ.png', '9', '2477554c0081188a9020', '0', '1', '2018-05-31 17:01:34', '2018-05-31 17:01:34', null);
  3062. INSERT INTO `ibrand_goods_photo` VALUES ('950', '103', 'https://cdn.viperky.com/storage/images/20180528/R4TRokIkbs.png', '9', 'b2ab5dadb63215555b06', '0', '1', '2018-05-31 17:01:34', '2018-05-31 17:01:34', null);
  3063. INSERT INTO `ibrand_goods_photo` VALUES ('951', '103', 'https://cdn.viperky.com/storage/images/20180528/lkSJ1YFBoz.png', '9', 'e82b252e6730229e3190', '0', '1', '2018-05-31 17:01:34', '2018-05-31 17:01:34', null);
  3064. INSERT INTO `ibrand_goods_photo` VALUES ('965', '109', 'https://cdn.viperky.com/storage/images/20180605/M0D2q2OzfB.png', '2', 'a79f74ab5a646d75b1e0', '0', '1', '2018-06-05 17:49:40', '2018-06-05 17:49:40', null);
  3065. INSERT INTO `ibrand_goods_photo` VALUES ('966', '109', 'https://cdn.viperky.com/storage/images/20180605/bVHLxejEYy.png', '3', '56943d39cbc7485b4d69', '0', '1', '2018-06-05 17:49:40', '2018-06-05 17:49:40', null);
  3066. INSERT INTO `ibrand_goods_photo` VALUES ('967', '109', 'https://cdn.viperky.com/storage/images/20180605/tdDfTLPjNl.png', '4', 'fec3260dfbf0ee375965', '0', '1', '2018-06-05 17:49:40', '2018-06-05 17:49:40', null);
  3067. INSERT INTO `ibrand_goods_photo` VALUES ('968', '109', 'https://cdn.viperky.com/storage/images/20180605/qQfXgrrw9t.png', '5', '925a8368f66d238b6244', '0', '1', '2018-06-05 17:49:40', '2018-06-05 17:49:40', null);
  3068. INSERT INTO `ibrand_goods_photo` VALUES ('969', '109', 'https://cdn.viperky.com/storage/images/20180605/oLKxOCBjhs.png', '6', '9b7813d5f8a61d7fea19', '0', '1', '2018-06-05 17:49:40', '2018-06-05 17:49:40', null);
  3069. INSERT INTO `ibrand_goods_photo` VALUES ('970', '109', 'https://cdn.viperky.com/storage/images/20180605/F8fMzkC33G.png', '7', 'd7845dd73dfd074963ca', '0', '1', '2018-06-05 17:49:40', '2018-06-05 17:49:40', null);
  3070. INSERT INTO `ibrand_goods_photo` VALUES ('971', '109', 'https://cdn.viperky.com/storage/images/20180605/CfzFIjxPZo.png', '9', 'd93a77c7c6e49683b676', '1', '1', '2018-06-05 17:49:40', '2018-06-05 17:49:40', null);
  3071. INSERT INTO `ibrand_goods_photo` VALUES ('972', '109', 'https://cdn.viperky.com/storage/images/20180605/A2dI9aE6kx.png', '8', '2b3620df2f2883bd22c6', '0', '1', '2018-06-05 17:49:40', '2018-06-05 17:49:40', null);
  3072. INSERT INTO `ibrand_goods_photo` VALUES ('973', '110', 'https://cdn.viperky.com/storage/images/20180605/hcBoMVlioh.png', '9', 'de6a572023229adb5a41', '1', '1', '2018-06-05 18:03:14', '2018-06-05 18:03:14', null);
  3073. INSERT INTO `ibrand_goods_photo` VALUES ('974', '110', 'https://cdn.viperky.com/storage/images/20180605/5SbVpz190D.png', '7', 'bc245995fd8518e21e96', '0', '1', '2018-06-05 18:03:14', '2018-06-05 18:03:14', null);
  3074. INSERT INTO `ibrand_goods_photo` VALUES ('975', '110', 'https://cdn.viperky.com/storage/images/20180605/234qkkUeEO.png', '6', '1b979647a5ffe34fc57f', '0', '1', '2018-06-05 18:03:14', '2018-06-05 18:03:14', null);
  3075. INSERT INTO `ibrand_goods_photo` VALUES ('976', '110', 'https://cdn.viperky.com/storage/images/20180605/jeevJJSoYx.png', '5', '843f5be7d4bbdd3d4df1', '0', '1', '2018-06-05 18:03:14', '2018-06-05 18:03:14', null);
  3076. INSERT INTO `ibrand_goods_photo` VALUES ('977', '110', 'https://cdn.viperky.com/storage/images/20180605/KA1wKmDCUR.png', '8', '174a9e989143046e1fdb', '0', '1', '2018-06-05 18:03:14', '2018-06-05 18:03:14', null);
  3077. INSERT INTO `ibrand_goods_photo` VALUES ('1091', '112', 'https://cdn.viperky.com/storage/images/20180606/zmTIlRPJqd.png', '1', 'c69f58a5dac2ae4634b7', '0', '1', '2018-06-07 10:38:56', '2018-06-07 10:38:56', null);
  3078. INSERT INTO `ibrand_goods_photo` VALUES ('1092', '112', 'https://cdn.viperky.com/storage/images/20180606/d8kdRFrpHz.png', '2', '8fa111b144981718e45a', '0', '1', '2018-06-07 10:38:56', '2018-06-07 10:38:56', null);
  3079. INSERT INTO `ibrand_goods_photo` VALUES ('1093', '112', 'https://cdn.viperky.com/storage/images/20180606/H2aygbpLyo.png', '3', 'bd17146e787ffcea3db5', '0', '1', '2018-06-07 10:38:56', '2018-06-07 10:38:56', null);
  3080. INSERT INTO `ibrand_goods_photo` VALUES ('1094', '112', 'https://cdn.viperky.com/storage/images/20180606/nCkYTXecQp.png', '4', '1024893e65a90beff0a2', '0', '1', '2018-06-07 10:38:56', '2018-06-07 10:38:56', null);
  3081. INSERT INTO `ibrand_goods_photo` VALUES ('1095', '112', 'https://cdn.viperky.com/storage/images/20180606/k3M3sYx3xL.png', '5', 'd55829eaf96cdf26050e', '0', '1', '2018-06-07 10:38:56', '2018-06-07 10:38:56', null);
  3082. INSERT INTO `ibrand_goods_photo` VALUES ('1096', '112', 'https://cdn.viperky.com/storage/images/20180606/VyhLMHXW9F.png', '6', '0772ea2a3595dae80cb6', '0', '1', '2018-06-07 10:38:56', '2018-06-07 10:38:56', null);
  3083. INSERT INTO `ibrand_goods_photo` VALUES ('1097', '112', 'https://cdn.viperky.com/storage/images/20180606/Xsak4cCIaH.png', '7', '79cd96422037c151226c', '0', '1', '2018-06-07 10:38:56', '2018-06-07 10:38:56', null);
  3084. INSERT INTO `ibrand_goods_photo` VALUES ('1098', '112', 'https://cdn.viperky.com/storage/images/20180606/PjuLzrDqcH.png', '9', 'd5584107512561ee5d4d', '0', '1', '2018-06-07 10:38:56', '2018-06-07 10:38:56', null);
  3085. INSERT INTO `ibrand_goods_photo` VALUES ('1099', '112', 'https://cdn.viperky.com/storage/images/20180606/MFJ8nV1uEU.png', '10', '0951625a3a2dc25c8253', '0', '1', '2018-06-07 10:38:56', '2018-06-07 10:38:56', null);
  3086. INSERT INTO `ibrand_goods_photo` VALUES ('1100', '112', 'https://cdn.viperky.com/storage/images/20180606/1kNSFrK9QP.png', '11', 'be1919706f0a62c06cfa', '0', '1', '2018-06-07 10:38:56', '2018-06-07 10:38:56', null);
  3087. INSERT INTO `ibrand_goods_photo` VALUES ('1101', '112', 'https://cdn.viperky.com/storage/images/20180606/qR9DWv1w2S.png', '12', '0afe19e1d417b477b692', '1', '1', '2018-06-07 10:38:56', '2018-06-07 10:38:56', null);
  3088. INSERT INTO `ibrand_goods_photo` VALUES ('1102', '112', 'https://cdn.viperky.com/storage/images/20180606/mpto2EStoT.png', '8', 'eddad198c6673284e132', '0', '1', '2018-06-07 10:38:56', '2018-06-07 10:38:56', null);
  3089. INSERT INTO `ibrand_goods_photo` VALUES ('1131', '108', 'https://cdn.viperky.com/storage/images/20180605/efAPx9Gh6g.png', '5', 'e692fc23b34c2f6b2378', '0', '1', '2018-06-07 13:59:29', '2018-06-07 13:59:29', null);
  3090. INSERT INTO `ibrand_goods_photo` VALUES ('1132', '108', 'https://cdn.viperky.com/storage/images/20180605/cX6CUkgBbt.png', '6', '48fe160d21e5d90cbc21', '0', '1', '2018-06-07 13:59:29', '2018-06-07 13:59:29', null);
  3091. INSERT INTO `ibrand_goods_photo` VALUES ('1133', '108', 'https://cdn.viperky.com/storage/images/20180605/7wyCdmgVCq.png', '6', '241160343f82fb9ee291', '0', '1', '2018-06-07 13:59:29', '2018-06-07 13:59:29', null);
  3092. INSERT INTO `ibrand_goods_photo` VALUES ('1134', '108', 'https://cdn.viperky.com/storage/images/20180605/QDHpgQwtXH.png', '8', '1b1bf3c2286b6213c785', '0', '1', '2018-06-07 13:59:29', '2018-06-07 13:59:29', null);
  3093. INSERT INTO `ibrand_goods_photo` VALUES ('1135', '108', 'https://cdn.viperky.com/storage/images/20180607/A8vgL13Tsw.jpg', '9', 'bbb55cedd3a5e75bcb4c', '1', '1', '2018-06-07 13:59:29', '2018-06-07 13:59:29', null);
  3094. INSERT INTO `ibrand_goods_photo` VALUES ('1136', '108', 'https://cdn.viperky.com/storage/images/20180607/QcUfEV2yxA.jpg', '7', '811a4655d17209af589e', '0', '1', '2018-06-07 13:59:29', '2018-06-07 13:59:29', null);
  3095. INSERT INTO `ibrand_goods_photo` VALUES ('1155', '115', 'https://cdn.viperky.com/storage/images/20180607/i4yzsdocOd.png', '9', '5a8368dbf42dd489d9d3', '0', '1', '2018-06-07 16:09:15', '2018-06-07 16:09:15', null);
  3096. INSERT INTO `ibrand_goods_photo` VALUES ('1156', '115', 'https://cdn.viperky.com/storage/images/20180607/GKofa2jVIG.png', '9', '002a25a3274d60a2c102', '1', '1', '2018-06-07 16:09:15', '2018-06-07 16:09:15', null);
  3097. INSERT INTO `ibrand_goods_photo` VALUES ('1157', '115', 'https://cdn.viperky.com/storage/images/20180607/USKodNbCid.png', '9', '87dd3393b0146c738eaa', '0', '1', '2018-06-07 16:09:15', '2018-06-07 16:09:15', null);
  3098. INSERT INTO `ibrand_goods_photo` VALUES ('1158', '115', 'https://cdn.viperky.com/storage/images/20180607/g2S0ItrKEc.png', '9', '5e3f1c0567a8c13ab413', '0', '1', '2018-06-07 16:09:15', '2018-06-07 16:09:15', null);
  3099. INSERT INTO `ibrand_goods_photo` VALUES ('1159', '115', 'https://cdn.viperky.com/storage/images/20180607/HhaRqDBk4a.png', '9', 'c6c6b39b158c6d2796e5', '0', '1', '2018-06-07 16:09:15', '2018-06-07 16:09:15', null);
  3100. INSERT INTO `ibrand_goods_photo` VALUES ('1160', '115', 'https://cdn.viperky.com/storage/images/20180607/c8CfbrHLUg.png', '9', '651ece305cb5910574ab', '0', '1', '2018-06-07 16:09:15', '2018-06-07 16:09:15', null);
  3101. INSERT INTO `ibrand_goods_photo` VALUES ('1161', '115', 'https://cdn.viperky.com/storage/images/20180607/xJGgNxw2Gk.png', '9', '01f805624955f2547c81', '0', '1', '2018-06-07 16:09:15', '2018-06-07 16:09:15', null);
  3102. INSERT INTO `ibrand_goods_photo` VALUES ('1176', '117', 'https://cdn.viperky.com/storage/images/20180607/bbhbRPSAY8.png', '6', '6f29cfbf422ad713ef88', '0', '1', '2018-06-07 17:22:42', '2018-06-07 17:22:42', null);
  3103. INSERT INTO `ibrand_goods_photo` VALUES ('1177', '117', 'https://cdn.viperky.com/storage/images/20180607/DfiQVin9Rt.png', '7', '5cdbf0d9a7c8551048ce', '0', '1', '2018-06-07 17:22:42', '2018-06-07 17:22:42', null);
  3104. INSERT INTO `ibrand_goods_photo` VALUES ('1178', '117', 'https://cdn.viperky.com/storage/images/20180607/etdwrWawsn.png', '8', '493168353f7c3a8f6cdd', '0', '1', '2018-06-07 17:22:42', '2018-06-07 17:22:42', null);
  3105. INSERT INTO `ibrand_goods_photo` VALUES ('1179', '117', 'https://cdn.viperky.com/storage/images/20180607/J8eJOGzhVX.png', '9', '5ddaad4f84071ca7d1b8', '1', '1', '2018-06-07 17:22:42', '2018-06-07 17:22:42', null);
  3106. INSERT INTO `ibrand_goods_photo` VALUES ('1252', '125', 'https://cdn.viperky.com/storage/images/20180608/hf8RVBkfT8.png', '9', 'abec5ca2e6b59a6c7474', '1', '1', '2018-06-08 14:15:05', '2018-06-08 14:15:05', null);
  3107. INSERT INTO `ibrand_goods_photo` VALUES ('1253', '125', 'https://cdn.viperky.com/storage/images/20180608/wMCtLvxxjJ.png', '9', '7facdacef475b8a27335', '0', '1', '2018-06-08 14:15:05', '2018-06-08 14:15:05', null);
  3108. INSERT INTO `ibrand_goods_photo` VALUES ('1254', '125', 'https://cdn.viperky.com/storage/images/20180608/yQdKrG2OF5.png', '9', 'd7acacbeb240fb8d8730', '0', '1', '2018-06-08 14:15:05', '2018-06-08 14:15:05', null);
  3109. INSERT INTO `ibrand_goods_photo` VALUES ('1255', '125', 'https://cdn.viperky.com/storage/images/20180608/QZ5pTcEe3i.png', '9', '91fa0bb66211b8f05cf0', '0', '1', '2018-06-08 14:15:05', '2018-06-08 14:15:05', null);
  3110. INSERT INTO `ibrand_goods_photo` VALUES ('1300', '126', 'https://cdn.viperky.com/storage/images/20180608/Rj8IuoEEm6.png', '9', 'f8c247061b6ff1d850e9', '1', '1', '2018-06-08 15:15:32', '2018-06-08 15:15:32', null);
  3111. INSERT INTO `ibrand_goods_photo` VALUES ('1301', '126', 'https://cdn.viperky.com/storage/images/20180608/qRiWNCON3s.png', '9', '6d07337cfa6804a5edd7', '0', '1', '2018-06-08 15:15:32', '2018-06-08 15:15:32', null);
  3112. INSERT INTO `ibrand_goods_photo` VALUES ('1302', '126', 'https://cdn.viperky.com/storage/images/20180608/x1KlQChVbP.png', '9', '30cf8217c484c8d4ed58', '0', '1', '2018-06-08 15:15:32', '2018-06-08 15:15:32', null);
  3113. INSERT INTO `ibrand_goods_photo` VALUES ('1303', '126', 'https://cdn.viperky.com/storage/images/20180608/M4kbMZVYmG.png', '9', 'd3095ca922582018d50b', '0', '1', '2018-06-08 15:15:32', '2018-06-08 15:15:32', null);
  3114. INSERT INTO `ibrand_goods_photo` VALUES ('1304', '126', 'https://cdn.viperky.com/storage/images/20180608/bBBEWLTiWp.png', '9', '3590daf39b6a1ce2ec83', '0', '1', '2018-06-08 15:15:32', '2018-06-08 15:15:32', null);
  3115. INSERT INTO `ibrand_goods_photo` VALUES ('1347', '62', 'https://cdn.viperky.com/storage/images/20180515/R0C4hd7yv2.png', '4', 'ee4ca8a9894b1799f574', '0', '1', '2018-06-11 10:23:48', '2018-06-11 10:23:48', null);
  3116. INSERT INTO `ibrand_goods_photo` VALUES ('1348', '62', 'https://cdn.viperky.com/storage/images/20180515/jHaSYZgz9h.png', '5', 'f3f245fa7b66c951ad2d', '0', '1', '2018-06-11 10:23:48', '2018-06-11 10:23:48', null);
  3117. INSERT INTO `ibrand_goods_photo` VALUES ('1349', '62', 'https://cdn.viperky.com/storage/images/20180515/ji6TlaTpMw.png', '6', 'bec710ab6ad2036ab3fd', '0', '1', '2018-06-11 10:23:48', '2018-06-11 10:23:48', null);
  3118. INSERT INTO `ibrand_goods_photo` VALUES ('1350', '62', 'https://cdn.viperky.com/storage/images/20180515/iz7l7sDuGG.png', '9', '4efb60a4fce0d7a9c3aa', '0', '1', '2018-06-11 10:23:48', '2018-06-11 10:23:48', null);
  3119. INSERT INTO `ibrand_goods_photo` VALUES ('1351', '62', 'https://cdn.viperky.com/storage/images/20180515/vvyDoN4Cqx.png', '9', '939b214a202671894f19', '1', '1', '2018-06-11 10:23:48', '2018-06-11 10:23:48', null);
  3120. INSERT INTO `ibrand_goods_photo` VALUES ('1352', '62', 'https://cdn.viperky.com/storage/images/20180515/b12VKKJaVz.png', '8', '793a868460f82f0f2d01', '0', '1', '2018-06-11 10:23:48', '2018-06-11 10:23:48', null);
  3121. INSERT INTO `ibrand_goods_photo` VALUES ('1353', '62', 'https://cdn.viperky.com/storage/images/20180515/xbuzlxfCl1.png', '7', 'c1547cf9942f99b41eb1', '0', '1', '2018-06-11 10:23:48', '2018-06-11 10:23:48', null);
  3122. INSERT INTO `ibrand_goods_photo` VALUES ('1354', '60', 'https://cdn.viperky.com/storage/images/20180515/QbEZV0NS7S.png', '4', 'f3d418df82a28a0369fb', '0', '1', '2018-06-11 10:24:05', '2018-06-11 10:24:05', null);
  3123. INSERT INTO `ibrand_goods_photo` VALUES ('1355', '60', 'https://cdn.viperky.com/storage/images/20180515/6eOcZj4E2Q.png', '5', '87334e41d2b83a5b1951', '0', '1', '2018-06-11 10:24:05', '2018-06-11 10:24:05', null);
  3124. INSERT INTO `ibrand_goods_photo` VALUES ('1356', '60', 'https://cdn.viperky.com/storage/images/20180515/q6nihEXE4U.png', '9', '6e7c1641aa6eeae9ab66', '1', '1', '2018-06-11 10:24:05', '2018-06-11 10:24:05', null);
  3125. INSERT INTO `ibrand_goods_photo` VALUES ('1357', '60', 'https://cdn.viperky.com/storage/images/20180515/nSfiTjNJ7n.png', '8', 'f585047fdc6953affc93', '0', '1', '2018-06-11 10:24:05', '2018-06-11 10:24:05', null);
  3126. INSERT INTO `ibrand_goods_photo` VALUES ('1358', '60', 'https://cdn.viperky.com/storage/images/20180515/pr9n9xi87R.png', '7', 'ab4cf6d2e4de70ed6267', '0', '1', '2018-06-11 10:24:05', '2018-06-11 10:24:05', null);
  3127. INSERT INTO `ibrand_goods_photo` VALUES ('1359', '60', 'https://cdn.viperky.com/storage/images/20180515/bgtvIK5pRw.png', '6', '570204eaf210bb77980c', '0', '1', '2018-06-11 10:24:05', '2018-06-11 10:24:05', null);
  3128. INSERT INTO `ibrand_goods_photo` VALUES ('1360', '59', 'https://cdn.viperky.com/storage/images/20180515/VdJxbbllWd.png', '0', '24c910753116a185bc3b', '0', '1', '2018-06-11 10:24:27', '2018-06-11 10:24:27', null);
  3129. INSERT INTO `ibrand_goods_photo` VALUES ('1361', '59', 'https://cdn.viperky.com/storage/images/20180515/oOA7ppUzlJ.png', '1', 'fd06a8e869453e50a771', '0', '1', '2018-06-11 10:24:27', '2018-06-11 10:24:27', null);
  3130. INSERT INTO `ibrand_goods_photo` VALUES ('1362', '59', 'https://cdn.viperky.com/storage/images/20180515/lHE7UkO43M.png', '2', '1b7fbd3d24912c15928c', '0', '1', '2018-06-11 10:24:27', '2018-06-11 10:24:27', null);
  3131. INSERT INTO `ibrand_goods_photo` VALUES ('1363', '59', 'https://cdn.viperky.com/storage/images/20180515/5PlejdhdiM.png', '3', '716c186e3279d5b5ce78', '0', '1', '2018-06-11 10:24:27', '2018-06-11 10:24:27', null);
  3132. INSERT INTO `ibrand_goods_photo` VALUES ('1364', '59', 'https://cdn.viperky.com/storage/images/20180515/Bo9Gh0ahil.png', '4', '0d3be0bcfcf8290b9e42', '0', '1', '2018-06-11 10:24:27', '2018-06-11 10:24:27', null);
  3133. INSERT INTO `ibrand_goods_photo` VALUES ('1365', '59', 'https://cdn.viperky.com/storage/images/20180515/LlwYbrMLt5.png', '7', '9b26fc44da8c2dbef811', '0', '1', '2018-06-11 10:24:27', '2018-06-11 10:24:27', null);
  3134. INSERT INTO `ibrand_goods_photo` VALUES ('1366', '59', 'https://cdn.viperky.com/storage/images/20180515/Tz6uyb6PIE.png', '9', '9ec5b92e27086df9dd01', '1', '1', '2018-06-11 10:24:27', '2018-06-11 10:24:27', null);
  3135. INSERT INTO `ibrand_goods_photo` VALUES ('1367', '59', 'https://cdn.viperky.com/storage/images/20180515/5QcrKGwQt8.png', '6', 'c6d1ed3970e02ddc2333', '0', '1', '2018-06-11 10:24:27', '2018-06-11 10:24:27', null);
  3136. INSERT INTO `ibrand_goods_photo` VALUES ('1368', '59', 'https://cdn.viperky.com/storage/images/20180515/9LpR9iQKns.png', '5', '5b0fc1c6a75aa22fbe20', '0', '1', '2018-06-11 10:24:27', '2018-06-11 10:24:27', null);
  3137. INSERT INTO `ibrand_goods_photo` VALUES ('1369', '57', 'https://cdn.viperky.com/storage/images/20180515/FdyyjKy0xL.png', '7', '0834810645d456d2f53b', '0', '1', '2018-06-11 10:24:41', '2018-06-11 10:24:41', null);
  3138. INSERT INTO `ibrand_goods_photo` VALUES ('1370', '57', 'https://cdn.viperky.com/storage/images/20180515/Buv4OiNxBW.png', '8', '77c4dbd0b6e439cc629c', '0', '1', '2018-06-11 10:24:41', '2018-06-11 10:24:41', null);
  3139. INSERT INTO `ibrand_goods_photo` VALUES ('1371', '57', 'https://cdn.viperky.com/storage/images/20180515/mgbZazUWIt.png', '9', '81592534066158e850ed', '1', '1', '2018-06-11 10:24:41', '2018-06-11 10:24:41', null);
  3140. INSERT INTO `ibrand_goods_photo` VALUES ('1372', '57', 'https://cdn.viperky.com/storage/images/20180515/Bmvwdry9g5.png', '5', 'b49bd7e3a3bff2fe5300', '0', '1', '2018-06-11 10:24:41', '2018-06-11 10:24:41', null);
  3141. INSERT INTO `ibrand_goods_photo` VALUES ('1373', '57', 'https://cdn.viperky.com/storage/images/20180515/iBqwqGmAQT.png', '6', 'edd181680f758e6e99a9', '0', '1', '2018-06-11 10:24:41', '2018-06-11 10:24:41', null);
  3142. INSERT INTO `ibrand_goods_photo` VALUES ('1374', '56', 'https://cdn.viperky.com/storage/images/20180515/960DVtExN2.png', '9', '86774906d8db52719c31', '1', '1', '2018-06-11 10:24:57', '2018-06-11 10:24:57', null);
  3143. INSERT INTO `ibrand_goods_photo` VALUES ('1375', '56', 'https://cdn.viperky.com/storage/images/20180515/2TES3vx1rH.png', '5', 'd13a082a88399317ab4b', '0', '1', '2018-06-11 10:24:57', '2018-06-11 10:24:57', null);
  3144. INSERT INTO `ibrand_goods_photo` VALUES ('1376', '56', 'https://cdn.viperky.com/storage/images/20180515/IaTl8iqu7t.png', '8', 'db83b967f8c29786631e', '0', '1', '2018-06-11 10:24:57', '2018-06-11 10:24:57', null);
  3145. INSERT INTO `ibrand_goods_photo` VALUES ('1377', '56', 'https://cdn.viperky.com/storage/images/20180515/YSqucMoQ0X.png', '7', '6a4a04b47f400089a456', '0', '1', '2018-06-11 10:24:57', '2018-06-11 10:24:57', null);
  3146. INSERT INTO `ibrand_goods_photo` VALUES ('1378', '56', 'https://cdn.viperky.com/storage/images/20180515/VvVAIIR0Hn.png', '6', 'a96a628b349191473aea', '0', '1', '2018-06-11 10:24:57', '2018-06-11 10:24:57', null);
  3147. INSERT INTO `ibrand_goods_photo` VALUES ('1379', '55', 'https://cdn.viperky.com/storage/images/20180515/MwYXud33hU.png', '7', 'c74adbe88665643719c5', '0', '1', '2018-06-11 10:25:14', '2018-06-11 10:25:14', null);
  3148. INSERT INTO `ibrand_goods_photo` VALUES ('1380', '55', 'https://cdn.viperky.com/storage/images/20180515/ECIp0U54Wu.png', '9', '3c46a347da13faf50021', '1', '1', '2018-06-11 10:25:14', '2018-06-11 10:25:14', null);
  3149. INSERT INTO `ibrand_goods_photo` VALUES ('1381', '55', 'https://cdn.viperky.com/storage/images/20180515/XniD4xhtZh.png', '8', '797f8e613394542829c5', '0', '1', '2018-06-11 10:25:14', '2018-06-11 10:25:14', null);
  3150. INSERT INTO `ibrand_goods_photo` VALUES ('1382', '55', 'https://cdn.viperky.com/storage/images/20180515/GA7AWxFNdi.png', '6', '37202f83846a76da738a', '0', '1', '2018-06-11 10:25:14', '2018-06-11 10:25:14', null);
  3151. INSERT INTO `ibrand_goods_photo` VALUES ('1383', '55', 'https://cdn.viperky.com/storage/images/20180515/t5nMtmQq0W.png', '5', '96ac602ebbf3c64280af', '0', '1', '2018-06-11 10:25:14', '2018-06-11 10:25:14', null);
  3152. INSERT INTO `ibrand_goods_photo` VALUES ('1384', '53', 'https://cdn.viperky.com/storage/images/20180515/ShkdvKcRIj.png', '6', 'bbb5ec15feafe3d5c8d1', '0', '1', '2018-06-11 10:25:29', '2018-06-11 10:25:29', null);
  3153. INSERT INTO `ibrand_goods_photo` VALUES ('1385', '53', 'https://cdn.viperky.com/storage/images/20180515/x03RSIVXR7.png', '7', '9050beb208104b87cec4', '0', '1', '2018-06-11 10:25:29', '2018-06-11 10:25:29', null);
  3154. INSERT INTO `ibrand_goods_photo` VALUES ('1386', '53', 'https://cdn.viperky.com/storage/images/20180515/i7jPcwDA1K.png', '9', '21a5c4abbe7f9caf93ad', '1', '1', '2018-06-11 10:25:29', '2018-06-11 10:25:29', null);
  3155. INSERT INTO `ibrand_goods_photo` VALUES ('1387', '53', 'https://cdn.viperky.com/storage/images/20180515/h66WsQsLUd.png', '8', '32bdf4f615677388622f', '0', '1', '2018-06-11 10:25:29', '2018-06-11 10:25:29', null);
  3156. INSERT INTO `ibrand_goods_photo` VALUES ('1393', '116', 'https://cdn.viperky.com/storage/images/20180607/aM6Gk7HH4M.png', '8', '051de3df409db69fd91c', '0', '1', '2018-06-11 12:06:18', '2018-06-11 12:06:18', null);
  3157. INSERT INTO `ibrand_goods_photo` VALUES ('1394', '116', 'https://cdn.viperky.com/storage/images/20180607/wbkqLEJID5.png', '6', 'c6dfd56bfb6af6dd9945', '0', '1', '2018-06-11 12:06:18', '2018-06-11 12:06:18', null);
  3158. INSERT INTO `ibrand_goods_photo` VALUES ('1395', '116', 'https://cdn.viperky.com/storage/images/20180607/wutHktsNrX.png', '5', '83488b489d3c3b7b52a3', '0', '1', '2018-06-11 12:06:18', '2018-06-11 12:06:18', null);
  3159. INSERT INTO `ibrand_goods_photo` VALUES ('1396', '116', 'https://cdn.viperky.com/storage/images/20180607/ZHhDSHReDn.png', '7', 'd297318c644bdce2b446', '0', '1', '2018-06-11 12:06:18', '2018-06-11 12:06:18', null);
  3160. INSERT INTO `ibrand_goods_photo` VALUES ('1397', '116', 'https://cdn.viperky.com/storage/images/20180607/C6GaygKkc7.png', '9', 'e431d2110f84b8c79453', '1', '1', '2018-06-11 12:06:18', '2018-06-11 12:06:18', null);
  3161. INSERT INTO `ibrand_goods_photo` VALUES ('1402', '127', 'https://cdn.viperky.com/storage/images/20180608/LzR2d6UEa0.png', '9', 'a214b32abb382ead6fca', '0', '1', '2018-06-11 13:07:32', '2018-06-11 13:07:32', null);
  3162. INSERT INTO `ibrand_goods_photo` VALUES ('1403', '127', 'https://cdn.viperky.com/storage/images/20180608/56gHVQXq1e.png', '9', '9652c87741f24ad52779', '0', '1', '2018-06-11 13:07:32', '2018-06-11 13:07:32', null);
  3163. INSERT INTO `ibrand_goods_photo` VALUES ('1404', '127', 'https://cdn.viperky.com/storage/images/20180608/BR1Yp3S3jC.png', '9', '9c7fbe4aefdeebeb826f', '1', '1', '2018-06-11 13:07:32', '2018-06-11 13:07:32', null);
  3164. INSERT INTO `ibrand_goods_photo` VALUES ('1405', '127', 'https://cdn.viperky.com/storage/images/20180608/b1SHeOoDEA.png', '9', 'a14d78b6ba4cc51d9206', '0', '1', '2018-06-11 13:07:32', '2018-06-11 13:07:32', null);
  3165. INSERT INTO `ibrand_goods_photo` VALUES ('1445', '113', 'https://cdn.viperky.com/storage/images/20180607/wt4mo40mq4.jpg', '8', 'f2cdb9a21672553a9bf8', '0', '1', '2018-06-13 15:19:00', '2018-06-13 15:19:00', null);
  3166. INSERT INTO `ibrand_goods_photo` VALUES ('1446', '113', 'https://cdn.viperky.com/storage/images/20180607/opfRYLZJwy.jpg', '9', '9222b6721189070111c1', '1', '1', '2018-06-13 15:19:00', '2018-06-13 15:19:00', null);
  3167. INSERT INTO `ibrand_goods_photo` VALUES ('1447', '113', 'https://cdn.viperky.com/storage/images/20180607/0Nt9b6wh9C.jpg', '7', 'f9f84343151048bbb490', '0', '1', '2018-06-13 15:19:00', '2018-06-13 15:19:00', null);
  3168. INSERT INTO `ibrand_goods_photo` VALUES ('1448', '113', 'https://cdn.viperky.com/storage/images/20180607/DyZ2Uzgj6O.jpg', '9', 'd132f8e99ca79db8583d', '0', '1', '2018-06-13 15:19:00', '2018-06-13 15:19:00', null);
  3169. INSERT INTO `ibrand_goods_photo` VALUES ('1467', '84', 'https://cdn.viperky.com/storage/images/20180521/DTLb6byBT9.png', '7', '9a648dad4609b8c6ff3c', '0', '1', '2018-06-13 15:23:00', '2018-06-13 15:23:00', null);
  3170. INSERT INTO `ibrand_goods_photo` VALUES ('1468', '84', 'https://cdn.viperky.com/storage/images/20180521/IIaKwfCXrn.png', '8', '3fe8dd920f35a28abbda', '0', '1', '2018-06-13 15:23:00', '2018-06-13 15:23:00', null);
  3171. INSERT INTO `ibrand_goods_photo` VALUES ('1469', '84', 'https://cdn.viperky.com/storage/images/20180521/1baA3LSPdn.png', '6', 'd59417f9a896e74665bf', '0', '1', '2018-06-13 15:23:00', '2018-06-13 15:23:00', null);
  3172. INSERT INTO `ibrand_goods_photo` VALUES ('1470', '84', 'https://cdn.viperky.com/storage/images/20180521/YvhTF5FavK.png', '9', 'e79b96db3f7aebbc3fc0', '1', '1', '2018-06-13 15:23:00', '2018-06-13 15:23:00', null);
  3173. INSERT INTO `ibrand_goods_photo` VALUES ('1471', '84', 'https://cdn.viperky.com/storage/images/20180521/C9h3TmPF6c.png', '5', '9b74c9f15f94bd790936', '0', '1', '2018-06-13 15:23:00', '2018-06-13 15:23:00', null);
  3174. INSERT INTO `ibrand_goods_photo` VALUES ('1472', '84', 'https://cdn.viperky.com/storage/images/20180521/z2T041DZX1.png', '4', 'a95f42a557b4115eb3a3', '0', '1', '2018-06-13 15:23:00', '2018-06-13 15:23:00', null);
  3175. INSERT INTO `ibrand_goods_photo` VALUES ('1479', '114', 'https://cdn.viperky.com/storage/images/20180607/Ol5J5yv9d7.jpg', '6', 'b3b035c0debdedc0926e', '0', '1', '2018-06-14 11:33:04', '2018-06-14 11:33:04', null);
  3176. INSERT INTO `ibrand_goods_photo` VALUES ('1480', '114', 'https://cdn.viperky.com/storage/images/20180607/KrTHiQF0a7.png', '7', 'd425d2adeca61046b5b0', '0', '1', '2018-06-14 11:33:04', '2018-06-14 11:33:04', null);
  3177. INSERT INTO `ibrand_goods_photo` VALUES ('1481', '114', 'https://cdn.viperky.com/storage/images/20180607/4pMuubYFHg.png', '8', 'eb71aa38a72e85b8b462', '0', '1', '2018-06-14 11:33:04', '2018-06-14 11:33:04', null);
  3178. INSERT INTO `ibrand_goods_photo` VALUES ('1482', '114', 'https://cdn.viperky.com/storage/images/20180607/IREjBpFLfp.png', '9', '85f455e90438feb68a32', '1', '1', '2018-06-14 11:33:04', '2018-06-14 11:33:04', null);
  3179. INSERT INTO `ibrand_goods_photo` VALUES ('1483', '114', 'https://cdn.viperky.com/storage/images/20180607/G2q8VfzKs6.png', '5', '7a7e2e5aeb822bf5c71b', '0', '1', '2018-06-14 11:33:04', '2018-06-14 11:33:04', null);
  3180. INSERT INTO `ibrand_goods_photo` VALUES ('1484', '114', 'https://cdn.viperky.com/storage/images/20180607/RZ4w3AMu4w.png', '9', '54c498f0e107bf5b5005', '0', '1', '2018-06-14 11:33:04', '2018-06-14 11:33:04', null);
  3181. INSERT INTO `ibrand_goods_photo` VALUES ('1485', '124', 'https://cdn.viperky.com/storage/images/20180608/9QaNQFD7uv.png', '9', 'f57e5944b0fc4b1c911e', '1', '1', '2018-06-14 11:51:00', '2018-06-14 11:51:00', null);
  3182. INSERT INTO `ibrand_goods_photo` VALUES ('1486', '124', 'https://cdn.viperky.com/storage/images/20180608/HklQnij5NB.png', '9', 'd3616e668367156f0c62', '0', '1', '2018-06-14 11:51:00', '2018-06-14 11:51:00', null);
  3183. INSERT INTO `ibrand_goods_photo` VALUES ('1487', '124', 'https://cdn.viperky.com/storage/images/20180608/eMVlGWfrTB.png', '9', 'e6b80da215cdcc0a157a', '0', '1', '2018-06-14 11:51:00', '2018-06-14 11:51:00', null);
  3184. INSERT INTO `ibrand_goods_photo` VALUES ('1488', '124', 'https://cdn.viperky.com/storage/images/20180608/msTa6ugjkW.png', '9', 'e9ce0a6b1c93882efde6', '0', '1', '2018-06-14 11:51:00', '2018-06-14 11:51:00', null);
  3185. INSERT INTO `ibrand_goods_photo` VALUES ('1489', '124', 'https://cdn.viperky.com/storage/images/20180608/qDsttxtjFb.png', '9', '54f52a8d4388514ee5e5', '0', '1', '2018-06-14 11:51:00', '2018-06-14 11:51:00', null);
  3186. INSERT INTO `ibrand_goods_photo` VALUES ('1567', '130', 'https://cdn.viperky.com/storage/images/20180611/vSr8NA2hfQ.png', '9', 'a6af06a61d0f4f816b3b', '0', '1', '2018-06-15 11:32:15', '2018-06-15 11:32:15', null);
  3187. INSERT INTO `ibrand_goods_photo` VALUES ('1568', '130', 'https://cdn.viperky.com/storage/images/20180611/xZOWcrRGHY.png', '9', '58e3f4e36d33dae6f330', '0', '1', '2018-06-15 11:32:15', '2018-06-15 11:32:15', null);
  3188. INSERT INTO `ibrand_goods_photo` VALUES ('1569', '130', 'https://cdn.viperky.com/storage/images/20180611/M9px9IZAkK.png', '9', '0731ddd6ca99079fd5f2', '1', '1', '2018-06-15 11:32:15', '2018-06-15 11:32:15', null);
  3189. INSERT INTO `ibrand_goods_photo` VALUES ('1570', '130', 'https://cdn.viperky.com/storage/images/20180608/b1SHeOoDEA.png', '9', 'd4206a2d411b05271fa6', '0', '1', '2018-06-15 11:32:15', '2018-06-15 11:32:15', null);
  3190. INSERT INTO `ibrand_goods_photo` VALUES ('1571', '133', 'https://cdn.viperky.com/storage/images/20180611/j1mQpiK76E.png', '9', '472260b11fc2a250ccc9', '0', '1', '2018-06-15 11:36:48', '2018-06-15 11:36:48', null);
  3191. INSERT INTO `ibrand_goods_photo` VALUES ('1572', '133', 'https://cdn.viperky.com/storage/images/20180611/qKnWjZZWLY.png', '9', '62884e7034ce32cb76b6', '0', '1', '2018-06-15 11:36:48', '2018-06-15 11:36:48', null);
  3192. INSERT INTO `ibrand_goods_photo` VALUES ('1573', '133', 'https://cdn.viperky.com/storage/images/20180611/orZTXh1OtV.png', '9', 'f5c589e11678791abe83', '1', '1', '2018-06-15 11:36:48', '2018-06-15 11:36:48', null);
  3193. INSERT INTO `ibrand_goods_photo` VALUES ('1574', '133', 'https://cdn.viperky.com/storage/images/20180611/8DCBQN8J3M.png', '9', '4f4820fbcc689ee76730', '0', '1', '2018-06-15 11:36:48', '2018-06-15 11:36:48', null);
  3194. INSERT INTO `ibrand_goods_photo` VALUES ('1575', '132', 'https://cdn.viperky.com/storage/images/20180611/uxnpIN7Bmd.png', '9', '3afdf30ea8df9e00d720', '1', '1', '2018-06-15 11:38:03', '2018-06-15 11:38:03', null);
  3195. INSERT INTO `ibrand_goods_photo` VALUES ('1576', '132', 'https://cdn.viperky.com/storage/images/20180611/xaduCwe2Y3.png', '9', '8ae4ba962d9744676ebb', '0', '1', '2018-06-15 11:38:03', '2018-06-15 11:38:03', null);
  3196. INSERT INTO `ibrand_goods_photo` VALUES ('1577', '132', 'https://cdn.viperky.com/storage/images/20180611/dPuRoPs4ql.png', '9', 'ddd19f439d29fe13e20c', '0', '1', '2018-06-15 11:38:03', '2018-06-15 11:38:03', null);
  3197. INSERT INTO `ibrand_goods_photo` VALUES ('1578', '132', 'https://cdn.viperky.com/storage/images/20180611/rsaiPUlk6z.png', '9', '89176a19e5c0a8793e1b', '0', '1', '2018-06-15 11:38:03', '2018-06-15 11:38:03', null);
  3198. INSERT INTO `ibrand_goods_photo` VALUES ('1597', '123', 'https://cdn.viperky.com/storage/images/20180608/pix6FJk6yu.png', '9', '419d071f8329f36f6817', '0', '1', '2018-06-15 12:21:41', '2018-06-15 12:21:41', null);
  3199. INSERT INTO `ibrand_goods_photo` VALUES ('1598', '123', 'https://cdn.viperky.com/storage/images/20180608/u8BZ2c1Bpn.png', '9', '398bcd41639338998e78', '0', '1', '2018-06-15 12:21:41', '2018-06-15 12:21:41', null);
  3200. INSERT INTO `ibrand_goods_photo` VALUES ('1599', '123', 'https://cdn.viperky.com/storage/images/20180608/VyDgtcOYen.png', '9', 'b240488861f88e07b331', '0', '1', '2018-06-15 12:21:41', '2018-06-15 12:21:41', null);
  3201. INSERT INTO `ibrand_goods_photo` VALUES ('1600', '123', 'https://cdn.viperky.com/storage/images/20180608/oiVSPCZWeh.png', '9', 'f862882b08cf0d97c63e', '0', '1', '2018-06-15 12:21:41', '2018-06-15 12:21:41', null);
  3202. INSERT INTO `ibrand_goods_photo` VALUES ('1601', '123', 'https://cdn.viperky.com/storage/images/20180608/N9ZfP0MWPi.png', '9', 'ed59a42bc43d01a2ee85', '0', '1', '2018-06-15 12:21:41', '2018-06-15 12:21:41', null);
  3203. INSERT INTO `ibrand_goods_photo` VALUES ('1602', '123', 'https://cdn.viperky.com/storage/images/20180608/iQmrfjfCZ5.png', '9', 'dbb4c4b03f61914d2618', '0', '1', '2018-06-15 12:21:41', '2018-06-15 12:21:41', null);
  3204. INSERT INTO `ibrand_goods_photo` VALUES ('1603', '123', 'https://cdn.viperky.com/storage/images/20180608/TX3MU7YfGT.png', '9', '04f732144e34befbbb28', '1', '1', '2018-06-15 12:21:41', '2018-06-15 12:21:41', null);
  3205. INSERT INTO `ibrand_goods_photo` VALUES ('1604', '123', 'https://cdn.viperky.com/storage/images/20180608/Wd0eR8H2VO.png', '9', '6c772a75075662c3a675', '0', '1', '2018-06-15 12:21:41', '2018-06-15 12:21:41', null);
  3206. INSERT INTO `ibrand_goods_photo` VALUES ('1611', '118', 'https://cdn.viperky.com/storage/images/20180607/cpWeV9LJjU.png', '9', '468765b10516bbc7001e', '0', '1', '2018-06-15 12:31:05', '2018-06-15 12:31:05', null);
  3207. INSERT INTO `ibrand_goods_photo` VALUES ('1612', '118', 'https://cdn.viperky.com/storage/images/20180607/d2HdZEM01M.png', '9', '68d96ea0a4b2780c0679', '1', '1', '2018-06-15 12:31:05', '2018-06-15 12:31:05', null);
  3208. INSERT INTO `ibrand_goods_photo` VALUES ('1613', '118', 'https://cdn.viperky.com/storage/images/20180607/AtFph2j8GH.png', '9', 'c7cd76ddc482da06be7e', '0', '1', '2018-06-15 12:31:05', '2018-06-15 12:31:05', null);
  3209. INSERT INTO `ibrand_goods_photo` VALUES ('1614', '118', 'https://cdn.viperky.com/storage/images/20180607/LLEaL0e7bG.png', '9', 'e570898ca90ad321837e', '0', '1', '2018-06-15 12:31:05', '2018-06-15 12:31:05', null);
  3210. INSERT INTO `ibrand_goods_photo` VALUES ('1615', '118', 'https://cdn.viperky.com/storage/images/20180607/g4VVdqSWxl.png', '9', '521e925eb53f70825167', '0', '1', '2018-06-15 12:31:05', '2018-06-15 12:31:05', null);
  3211. INSERT INTO `ibrand_goods_photo` VALUES ('1616', '118', 'https://cdn.viperky.com/storage/images/20180608/m1VUNf0VkV.png', '9', 'e1d53bed6359eb969dba', '0', '1', '2018-06-15 12:31:05', '2018-06-15 12:31:05', null);
  3212. INSERT INTO `ibrand_goods_photo` VALUES ('1617', '131', 'https://cdn.viperky.com/storage/images/20180611/511UV2aWSs.png', '9', 'b6d737dff76ec9925e2e', '0', '1', '2018-06-15 12:34:44', '2018-06-15 12:34:44', null);
  3213. INSERT INTO `ibrand_goods_photo` VALUES ('1618', '131', 'https://cdn.viperky.com/storage/images/20180611/cwz4m11J3s.png', '9', '31b2b4eea599649c32a8', '1', '1', '2018-06-15 12:34:44', '2018-06-15 12:34:44', null);
  3214. INSERT INTO `ibrand_goods_photo` VALUES ('1619', '131', 'https://cdn.viperky.com/storage/images/20180611/HSrv6JfAqS.png', '9', '517f0cb24cb21bea6bc8', '0', '1', '2018-06-15 12:34:44', '2018-06-15 12:34:44', null);
  3215. INSERT INTO `ibrand_goods_photo` VALUES ('1620', '131', 'https://cdn.viperky.com/storage/images/20180611/qTTV9cHucI.png', '9', '8b81cfd3afdbe79996d8', '0', '1', '2018-06-15 12:34:44', '2018-06-15 12:34:44', null);
  3216. INSERT INTO `ibrand_goods_photo` VALUES ('1621', '131', 'https://cdn.viperky.com/storage/images/20180611/aytiy4k94H.png', '9', 'de5eadea9f235d3b9ba6', '0', '1', '2018-06-15 12:34:44', '2018-06-15 12:34:44', null);
  3217. INSERT INTO `ibrand_goods_photo` VALUES ('1622', '111', 'https://cdn.viperky.com/storage/images/20180606/fJolkWmRoj.png', '6', '04398a65ddae3b0f1206', '0', '1', '2018-06-15 13:08:32', '2018-06-15 13:08:32', null);
  3218. INSERT INTO `ibrand_goods_photo` VALUES ('1623', '111', 'https://cdn.viperky.com/storage/images/20180606/dNi0zO8Pu5.png', '8', '03a559f373de2072b035', '0', '1', '2018-06-15 13:08:32', '2018-06-15 13:08:32', null);
  3219. INSERT INTO `ibrand_goods_photo` VALUES ('1624', '111', 'https://cdn.viperky.com/storage/images/20180606/ugnCsOgI7j.png', '9', '0ad4705d46e0f15ac766', '1', '1', '2018-06-15 13:08:32', '2018-06-15 13:08:32', null);
  3220. INSERT INTO `ibrand_goods_photo` VALUES ('1625', '111', 'https://cdn.viperky.com/storage/images/20180606/YD1yIlHf4N.png', '7', 'b50b91375ded43ef823f', '0', '1', '2018-06-15 13:08:32', '2018-06-15 13:08:32', null);
  3221. INSERT INTO `ibrand_goods_photo` VALUES ('1626', '111', 'https://cdn.viperky.com/storage/images/20180606/ZEpr9pzIld.png', '5', '41ca4a00b7eb52033eb7', '0', '1', '2018-06-15 13:08:32', '2018-06-15 13:08:32', null);
  3222. INSERT INTO `ibrand_goods_photo` VALUES ('1627', '111', 'https://cdn.viperky.com/storage/images/20180606/PYS23pYE4u.png', '4', 'fdc61ca70965a80dba34', '0', '1', '2018-06-15 13:08:32', '2018-06-15 13:08:32', null);
  3223. INSERT INTO `ibrand_goods_photo` VALUES ('1628', '111', 'https://cdn.viperky.com/storage/images/20180606/zWOSI5WxbL.png', '3', '3cfb33fcad96e0004937', '0', '1', '2018-06-15 13:08:32', '2018-06-15 13:08:32', null);
  3224. INSERT INTO `ibrand_goods_photo` VALUES ('1629', '111', 'https://cdn.viperky.com/storage/images/20180606/MoteHIkCqm.png', '2', '853e671e99c534740976', '0', '1', '2018-06-15 13:08:32', '2018-06-15 13:08:32', null);
  3225. INSERT INTO `ibrand_goods_photo` VALUES ('1630', '111', 'https://cdn.viperky.com/storage/images/20180606/Cnyp7UfHmq.png', '1', '2b8afc8d9fdf2bb75ee2', '0', '1', '2018-06-15 13:08:32', '2018-06-15 13:08:32', null);
  3226. INSERT INTO `ibrand_goods_photo` VALUES ('1631', '111', 'https://cdn.viperky.com/storage/images/20180607/hRFH8D1Q3T.jpg', '2', 'c913dee5d3bf71211e52', '0', '1', '2018-06-15 13:08:32', '2018-06-15 13:08:32', null);
  3227. INSERT INTO `ibrand_goods_photo` VALUES ('1632', '111', 'https://cdn.viperky.com/storage/images/20180607/mOrsa6EeNp.jpg', '1', '26c82fcdf18ba486b014', '0', '1', '2018-06-15 13:08:32', '2018-06-15 13:08:32', null);
  3228. INSERT INTO `ibrand_goods_photo` VALUES ('1633', '111', 'https://cdn.viperky.com/storage/images/20180607/No9TfMBTky.jpg', '3', '6e99abb13f3efcc9cc10', '0', '1', '2018-06-15 13:08:32', '2018-06-15 13:08:32', null);
  3229. INSERT INTO `ibrand_goods_photo` VALUES ('1709', '140', 'https://cdn.viperky.com/storage/images/20180809/lkr0j5TEv5.png', '9', '447e55222fa29c232a41', '0', '1', '2018-08-10 16:57:14', '2018-08-10 16:57:14', null);
  3230. INSERT INTO `ibrand_goods_photo` VALUES ('1710', '140', 'https://cdn.viperky.com/storage/images/20180809/P1XGqXHEW9.png', '9', 'a87ca484c55dcb8fd5f9', '0', '1', '2018-08-10 16:57:14', '2018-08-10 16:57:14', null);
  3231. INSERT INTO `ibrand_goods_photo` VALUES ('1711', '140', 'https://cdn.viperky.com/storage/images/20180809/iIRGARXlUg.png', '9', '52ab821a35c2f9d21683', '0', '1', '2018-08-10 16:57:14', '2018-08-10 16:57:14', null);
  3232. INSERT INTO `ibrand_goods_photo` VALUES ('1712', '140', 'https://cdn.viperky.com/storage/images/20180809/Kz2ijR9KQA.png', '9', 'aa476d1f5c255e2a3cf0', '0', '1', '2018-08-10 16:57:14', '2018-08-10 16:57:14', null);
  3233. INSERT INTO `ibrand_goods_photo` VALUES ('1713', '140', 'https://cdn.viperky.com/storage/images/20180809/FQsAUUrTEH.png', '9', '39ada790604feb13d9d8', '0', '1', '2018-08-10 16:57:14', '2018-08-10 16:57:14', null);
  3234. INSERT INTO `ibrand_goods_photo` VALUES ('1714', '140', 'https://cdn.viperky.com/storage/images/20180809/UDlLDjaSd8.png', '9', '58ea404bca9667e99c4e', '1', '1', '2018-08-10 16:57:14', '2018-08-10 16:57:14', null);
  3235. INSERT INTO `ibrand_goods_photo` VALUES ('1720', '138', 'https://cdn.viperky.com/storage/images/20180808/ECm2lRmiqP.png', '9', '98ea9c62652bf1c91f01', '0', '1', '2018-08-10 16:58:11', '2018-08-10 16:58:11', null);
  3236. INSERT INTO `ibrand_goods_photo` VALUES ('1721', '138', 'https://cdn.viperky.com/storage/images/20180808/ehzQSWYuVU.png', '9', '0ea32a42d2c93f80bd4a', '0', '1', '2018-08-10 16:58:11', '2018-08-10 16:58:11', null);
  3237. INSERT INTO `ibrand_goods_photo` VALUES ('1722', '138', 'https://cdn.viperky.com/storage/images/20180808/vnmAa1kpbC.png', '9', 'c69fd8314568f7215fd3', '0', '1', '2018-08-10 16:58:11', '2018-08-10 16:58:11', null);
  3238. INSERT INTO `ibrand_goods_photo` VALUES ('1723', '138', 'https://cdn.viperky.com/storage/images/20180808/acHADSQSCT.png', '9', 'e802f2ea0ba48e5d48da', '1', '1', '2018-08-10 16:58:11', '2018-08-10 16:58:11', null);
  3239. INSERT INTO `ibrand_goods_photo` VALUES ('1783', '158', 'https://cdn.viperky.com/storage/images/20180816/dA3ycosI6j.png', '9', 'a6dd8ee9f837d60e170c', '0', '1', '2018-08-16 15:38:29', '2018-08-16 15:38:29', null);
  3240. INSERT INTO `ibrand_goods_photo` VALUES ('1784', '158', 'https://cdn.viperky.com/storage/images/20180816/qoL7kuDhRw.png', '9', '6e4ffe33f4b0102a0002', '0', '1', '2018-08-16 15:38:29', '2018-08-16 15:38:29', null);
  3241. INSERT INTO `ibrand_goods_photo` VALUES ('1785', '158', 'https://cdn.viperky.com/storage/images/20180816/zkcrHT2CK5.png', '9', 'aed731bb0d93000311ef', '0', '1', '2018-08-16 15:38:29', '2018-08-16 15:38:29', null);
  3242. INSERT INTO `ibrand_goods_photo` VALUES ('1786', '158', 'https://cdn.viperky.com/storage/images/20180816/KgVTXrjkJO.png', '9', '5db6a9d812945463466f', '0', '1', '2018-08-16 15:38:29', '2018-08-16 15:38:29', null);
  3243. INSERT INTO `ibrand_goods_photo` VALUES ('1787', '158', 'https://cdn.viperky.com/storage/images/20180816/fffX2NAxnp.png', '9', 'bb74cccb6a4657cc7ada', '1', '1', '2018-08-16 15:38:29', '2018-08-16 15:38:29', null);
  3244. INSERT INTO `ibrand_goods_photo` VALUES ('1788', '159', 'https://cdn.viperky.com/storage/images/20180816/0VMXcMuy6w.png', '9', 'df6e8cd378d169e04c6f', '0', '1', '2018-08-16 16:18:30', '2018-08-16 16:18:30', null);
  3245. INSERT INTO `ibrand_goods_photo` VALUES ('1789', '159', 'https://cdn.viperky.com/storage/images/20180816/7G0VKfSDiV.png', '9', 'dff4214b2e8e8cfe3e37', '1', '1', '2018-08-16 16:18:30', '2018-08-16 16:18:30', null);
  3246. INSERT INTO `ibrand_goods_photo` VALUES ('1790', '159', 'https://cdn.viperky.com/storage/images/20180816/UfobBeQ86g.png', '9', '1b27c6613a2befc8e04b', '0', '1', '2018-08-16 16:18:30', '2018-08-16 16:18:30', null);
  3247. INSERT INTO `ibrand_goods_photo` VALUES ('1791', '159', 'https://cdn.viperky.com/storage/images/20180816/PLh7cp71sl.png', '9', 'bb66e1e785739ccbacbe', '0', '1', '2018-08-16 16:18:30', '2018-08-16 16:18:30', null);
  3248. INSERT INTO `ibrand_goods_photo` VALUES ('1792', '160', 'https://cdn.viperky.com/storage/images/20180816/BNwvx6kix1.png', '9', 'e919d611bb941d7614a9', '0', '1', '2018-08-16 16:29:29', '2018-08-16 16:29:29', null);
  3249. INSERT INTO `ibrand_goods_photo` VALUES ('1793', '160', 'https://cdn.viperky.com/storage/images/20180816/lq7rNXtE4q.png', '9', '5b7ee0cca10c515145cc', '0', '1', '2018-08-16 16:29:29', '2018-08-16 16:29:29', null);
  3250. INSERT INTO `ibrand_goods_photo` VALUES ('1794', '160', 'https://cdn.viperky.com/storage/images/20180816/OGs6xnm898.png', '9', '04d72c65897d075904ab', '1', '1', '2018-08-16 16:29:29', '2018-08-16 16:29:29', null);
  3251. INSERT INTO `ibrand_goods_photo` VALUES ('1795', '160', 'https://cdn.viperky.com/storage/images/20180816/gGEaKOJX3c.png', '9', '0999ae6842c106455b02', '0', '1', '2018-08-16 16:29:29', '2018-08-16 16:29:29', null);
  3252. INSERT INTO `ibrand_goods_photo` VALUES ('1799', '162', 'https://cdn.viperky.com/storage/images/20180816/oFgYhZmoWO.png', '9', 'a275ec4cee55d3bcef46', '0', '1', '2018-08-16 16:48:46', '2018-08-16 16:48:46', null);
  3253. INSERT INTO `ibrand_goods_photo` VALUES ('1800', '162', 'https://cdn.viperky.com/storage/images/20180816/3vxJWSwyL9.png', '9', '7c0ef86054a5c383e72f', '0', '1', '2018-08-16 16:48:46', '2018-08-16 16:48:46', null);
  3254. INSERT INTO `ibrand_goods_photo` VALUES ('1801', '162', 'https://cdn.viperky.com/storage/images/20180816/STXsXPpRBh.png', '9', '65f13072be4345499577', '1', '1', '2018-08-16 16:48:46', '2018-08-16 16:48:46', null);
  3255. INSERT INTO `ibrand_goods_photo` VALUES ('1802', '144', 'https://cdn.viperky.com/storage/images/20180810/ejVTkuJc6R.png', '9', '095a21ab789ad25833ae', '1', '1', '2018-08-16 16:51:16', '2018-08-16 16:51:16', null);
  3256. INSERT INTO `ibrand_goods_photo` VALUES ('1803', '144', 'https://cdn.viperky.com/storage/images/20180810/eVbOnrPTyc.png', '9', 'cf3d2d8a172427e5472e', '0', '1', '2018-08-16 16:51:16', '2018-08-16 16:51:16', null);
  3257. INSERT INTO `ibrand_goods_photo` VALUES ('1804', '144', 'https://cdn.viperky.com/storage/images/20180810/rEiAayzhbH.png', '9', 'b4ec5559672b94f9fe59', '0', '1', '2018-08-16 16:51:16', '2018-08-16 16:51:16', null);
  3258. INSERT INTO `ibrand_goods_photo` VALUES ('1807', '146', 'https://cdn.viperky.com/storage/images/20180813/oEPK1UiTNH.png', '9', '7500205d2c1dae4808ba', '0', '1', '2018-08-16 16:54:00', '2018-08-16 16:54:00', null);
  3259. INSERT INTO `ibrand_goods_photo` VALUES ('1808', '146', 'https://cdn.viperky.com/storage/images/20180813/wQ4UQ3VK0U.png', '9', '4105d5fbf4f841a93f9a', '1', '1', '2018-08-16 16:54:00', '2018-08-16 16:54:00', null);
  3260. INSERT INTO `ibrand_goods_photo` VALUES ('1809', '146', 'https://cdn.viperky.com/storage/images/20180813/Qw2reTTISh.png', '9', '82d53626bca6b21c1808', '0', '1', '2018-08-16 16:54:00', '2018-08-16 16:54:00', null);
  3261. INSERT INTO `ibrand_goods_photo` VALUES ('1817', '151', 'https://cdn.viperky.com/storage/images/20180813/zjdpk2oK4z.png', '9', '18502a9a01f2dfbfeb14', '1', '1', '2018-08-16 16:56:22', '2018-08-16 16:56:22', null);
  3262. INSERT INTO `ibrand_goods_photo` VALUES ('1818', '145', 'https://cdn.viperky.com/storage/images/20180810/ezsAPK3nHH.png', '9', 'e9fe8214997872521f2a', '1', '1', '2018-08-16 16:57:05', '2018-08-16 16:57:05', null);
  3263. INSERT INTO `ibrand_goods_photo` VALUES ('1819', '145', 'https://cdn.viperky.com/storage/images/20180810/3uYyUTZjhL.png', '9', '652e22b6b7ec8fd6554e', '0', '1', '2018-08-16 16:57:05', '2018-08-16 16:57:05', null);
  3264. INSERT INTO `ibrand_goods_photo` VALUES ('1820', '145', 'https://cdn.viperky.com/storage/images/20180810/mUbXZPvaaX.png', '9', '0892fdb7abc6f98597d7', '0', '1', '2018-08-16 16:57:05', '2018-08-16 16:57:05', null);
  3265. INSERT INTO `ibrand_goods_photo` VALUES ('1824', '155', 'https://cdn.viperky.com/storage/images/20180816/nqC3Yt4STh.png', '9', '1aad54739836c271e5e9', '0', '1', '2018-08-16 16:58:50', '2018-08-16 16:58:50', null);
  3266. INSERT INTO `ibrand_goods_photo` VALUES ('1825', '155', 'https://cdn.viperky.com/storage/images/20180816/vWPWLejUc1.png', '9', '71a1322df13a1e3d534c', '1', '1', '2018-08-16 16:58:50', '2018-08-16 16:58:50', null);
  3267. INSERT INTO `ibrand_goods_photo` VALUES ('1826', '155', 'https://cdn.viperky.com/storage/images/20180816/KGfiJqc29m.png', '9', '9ec359510bb1ca2fd992', '0', '1', '2018-08-16 16:58:50', '2018-08-16 16:58:50', null);
  3268. INSERT INTO `ibrand_goods_photo` VALUES ('1834', '149', 'https://cdn.viperky.com/storage/images/20180813/iSKOUjJfzd.png', '9', 'b5c56e3e24c725285038', '1', '1', '2018-08-16 17:00:34', '2018-08-16 17:00:34', null);
  3269. INSERT INTO `ibrand_goods_photo` VALUES ('1835', '149', 'https://cdn.viperky.com/storage/images/20180813/Resv0LyD4S.png', '9', '345aaa0846b82adb4ec1', '0', '1', '2018-08-16 17:00:34', '2018-08-16 17:00:34', null);
  3270. INSERT INTO `ibrand_goods_photo` VALUES ('1836', '149', 'https://cdn.viperky.com/storage/images/20180813/kyPvtoRqSe.png', '9', 'e55368899e4d05889004', '0', '1', '2018-08-16 17:00:34', '2018-08-16 17:00:34', null);
  3271. INSERT INTO `ibrand_goods_photo` VALUES ('1837', '149', 'https://cdn.viperky.com/storage/images/20180813/MxE4pG7iRc.png', '9', '48076de45ad86dfb0c77', '0', '1', '2018-08-16 17:00:34', '2018-08-16 17:00:34', null);
  3272. INSERT INTO `ibrand_goods_photo` VALUES ('1853', '143', 'https://cdn.viperky.com/storage/images/20180810/vgc6zZAQqz.png', '9', '3f9fc334250a71892409', '1', '1', '2018-08-20 17:00:27', '2018-08-20 17:00:27', null);
  3273. INSERT INTO `ibrand_goods_photo` VALUES ('1854', '143', 'https://cdn.viperky.com/storage/images/20180810/4ovGN5xQQQ.png', '9', 'eb91cd13efde620d0500', '0', '1', '2018-08-20 17:00:27', '2018-08-20 17:00:27', null);
  3274. INSERT INTO `ibrand_goods_photo` VALUES ('1855', '157', 'https://cdn.viperky.com/storage/images/20180816/auIlNB24Pz.png', '9', 'c79ed349e743c1972ff4', '0', '1', '2018-08-20 17:00:55', '2018-08-20 17:00:55', null);
  3275. INSERT INTO `ibrand_goods_photo` VALUES ('1856', '157', 'https://cdn.viperky.com/storage/images/20180816/xjcL6hUu0e.png', '9', '77108dbd87e5bc557bb7', '1', '1', '2018-08-20 17:00:55', '2018-08-20 17:00:55', null);
  3276. INSERT INTO `ibrand_goods_photo` VALUES ('1857', '157', 'https://cdn.viperky.com/storage/images/20180816/DUtTk4w0yN.png', '9', 'c16bf042cba1e2b7841c', '0', '1', '2018-08-20 17:00:55', '2018-08-20 17:00:55', null);
  3277. INSERT INTO `ibrand_goods_photo` VALUES ('1858', '147', 'https://cdn.viperky.com/storage/images/20180813/L15Y25Gu4B.png', '9', '61fd550c527c20a36b1d', '0', '1', '2018-08-20 17:01:05', '2018-08-20 17:01:05', null);
  3278. INSERT INTO `ibrand_goods_photo` VALUES ('1859', '147', 'https://cdn.viperky.com/storage/images/20180813/qBzBMR9d0L.png', '9', '680365f20e101798fb4f', '0', '1', '2018-08-20 17:01:05', '2018-08-20 17:01:05', null);
  3279. INSERT INTO `ibrand_goods_photo` VALUES ('1860', '147', 'https://cdn.viperky.com/storage/images/20180813/qjMcdXIdbD.png', '9', 'f3b03fc965102afd3252', '1', '1', '2018-08-20 17:01:05', '2018-08-20 17:01:05', null);
  3280. INSERT INTO `ibrand_goods_photo` VALUES ('1861', '142', 'https://cdn.viperky.com/storage/images/20180810/nl2ZVLhbhL.png', '9', '5017bb77d5b97e2cd02f', '0', '1', '2018-08-20 17:01:19', '2018-08-20 17:01:19', null);
  3281. INSERT INTO `ibrand_goods_photo` VALUES ('1862', '142', 'https://cdn.viperky.com/storage/images/20180810/pgrjq29rvw.png', '9', 'd3bd73743cd966f67145', '0', '1', '2018-08-20 17:01:19', '2018-08-20 17:01:19', null);
  3282. INSERT INTO `ibrand_goods_photo` VALUES ('1863', '142', 'https://cdn.viperky.com/storage/images/20180810/2WTTyzpvXj.png', '9', 'c39992fdb8a382bf7bfc', '1', '1', '2018-08-20 17:01:19', '2018-08-20 17:01:19', null);
  3283. INSERT INTO `ibrand_goods_photo` VALUES ('1864', '142', 'https://cdn.viperky.com/storage/images/20180810/FDnGvXFNVN.png', '9', 'b4df8b6c5fdec51a544d', '0', '1', '2018-08-20 17:01:19', '2018-08-20 17:01:19', null);
  3284. INSERT INTO `ibrand_goods_photo` VALUES ('1865', '141', 'https://cdn.viperky.com/storage/images/20180810/tiJdw3u7TA.png', '9', '57cee0816fa69a2164d0', '0', '1', '2018-08-20 17:01:28', '2018-08-20 17:01:28', null);
  3285. INSERT INTO `ibrand_goods_photo` VALUES ('1866', '141', 'https://cdn.viperky.com/storage/images/20180810/gXgEf0llFP.png', '9', '488a1b770e91abc94003', '1', '1', '2018-08-20 17:01:28', '2018-08-20 17:01:28', null);
  3286. INSERT INTO `ibrand_goods_photo` VALUES ('1867', '141', 'https://cdn.viperky.com/storage/images/20180810/1kg7aoEx5M.png', '9', '4039107bc8be07685293', '0', '1', '2018-08-20 17:01:28', '2018-08-20 17:01:28', null);
  3287. INSERT INTO `ibrand_goods_photo` VALUES ('1868', '141', 'https://cdn.viperky.com/storage/images/20180810/162ecwG3ZF.png', '9', 'de1b286054ab5cbfdcff', '0', '1', '2018-08-20 17:01:28', '2018-08-20 17:01:28', null);
  3288. INSERT INTO `ibrand_goods_photo` VALUES ('1869', '141', 'https://cdn.viperky.com/storage/images/20180810/bEC1fJbwDp.png', '9', 'a06c5b4a8d34c314ee98', '0', '1', '2018-08-20 17:01:28', '2018-08-20 17:01:28', null);
  3289. INSERT INTO `ibrand_goods_photo` VALUES ('1870', '136', 'https://cdn.viperky.com/storage/images/20180808/LQUwnv2TgG.png', '9', 'bc1a25b4afb9b0279667', '1', '1', '2018-08-20 17:01:55', '2018-08-20 17:01:55', null);
  3290. INSERT INTO `ibrand_goods_photo` VALUES ('1871', '136', 'https://cdn.viperky.com/storage/images/20180808/4u3Vcncf1Q.png', '9', 'eb52da5476187608e302', '0', '1', '2018-08-20 17:01:55', '2018-08-20 17:01:55', null);
  3291. INSERT INTO `ibrand_goods_photo` VALUES ('1872', '136', 'https://cdn.viperky.com/storage/images/20180808/KkVZCqXaYp.png', '9', 'e8bf1f04212dad5ee587', '0', '1', '2018-08-20 17:01:55', '2018-08-20 17:01:55', null);
  3292. INSERT INTO `ibrand_goods_photo` VALUES ('1873', '136', 'https://cdn.viperky.com/storage/images/20180808/2KLLJfUGnX.png', '9', '8527eacfd9dc5a2022f5', '0', '1', '2018-08-20 17:01:55', '2018-08-20 17:01:55', null);
  3293. INSERT INTO `ibrand_goods_photo` VALUES ('1877', '139', 'https://cdn.viperky.com/storage/images/20180809/Zg8bl233uu.png', '9', '2195e52559fe459cc5f6', '0', '1', '2018-08-23 10:24:26', '2018-08-23 10:24:26', null);
  3294. INSERT INTO `ibrand_goods_photo` VALUES ('1878', '139', 'https://cdn.viperky.com/storage/images/20180809/ezfKerLAB4.png', '9', '3ff04a339eca1219fe9e', '0', '1', '2018-08-23 10:24:26', '2018-08-23 10:24:26', null);
  3295. INSERT INTO `ibrand_goods_photo` VALUES ('1879', '139', 'https://cdn.viperky.com/storage/images/20180809/RYTnznYv9h.png', '9', '6777faebbaf8b53ca5bd', '1', '1', '2018-08-23 10:24:26', '2018-08-23 10:24:26', null);
  3296. INSERT INTO `ibrand_goods_photo` VALUES ('1880', '139', 'https://cdn.viperky.com/storage/images/20180809/TBPyzDjCjj.png', '9', 'c9bf03b585aa031ce285', '0', '1', '2018-08-23 10:24:26', '2018-08-23 10:24:26', null);
  3297. INSERT INTO `ibrand_goods_photo` VALUES ('1881', '139', 'https://cdn.viperky.com/storage/images/20180809/xXyUB5hOc8.png', '9', '35fdf669bc41f678c715', '0', '1', '2018-08-23 10:24:26', '2018-08-23 10:24:26', null);
  3298. INSERT INTO `ibrand_goods_photo` VALUES ('1885', '163', 'https://cdn.viperky.com/storage/images/20180827/NMRpa5xgQK.png', '9', '62d6adfb0608e6855b62', '1', '1', '2018-08-27 14:10:50', '2018-08-27 14:10:50', null);
  3299. INSERT INTO `ibrand_goods_photo` VALUES ('1886', '163', 'https://cdn.viperky.com/storage/images/20180827/z3tiDvLS2C.png', '9', 'fb691835ff3a494d28a0', '0', '1', '2018-08-27 14:10:50', '2018-08-27 14:10:50', null);
  3300. INSERT INTO `ibrand_goods_photo` VALUES ('1887', '163', 'https://cdn.viperky.com/storage/images/20180827/FuU6gCLWRR.png', '9', '4056656e15e2343a56a2', '0', '1', '2018-08-27 14:10:50', '2018-08-27 14:10:50', null);
  3301. INSERT INTO `ibrand_goods_photo` VALUES ('1890', '165', 'https://cdn.viperky.com/storage/images/20180827/HHD8Nvtv1g.png', '9', 'a331c1071d9e0636cdb8', '0', '1', '2018-08-27 14:39:45', '2018-08-27 14:39:45', null);
  3302. INSERT INTO `ibrand_goods_photo` VALUES ('1891', '165', 'https://cdn.viperky.com/storage/images/20180827/cUITZ7qVNB.png', '9', '80b4a4c7bde10f43c1ec', '0', '1', '2018-08-27 14:39:45', '2018-08-27 14:39:45', null);
  3303. INSERT INTO `ibrand_goods_photo` VALUES ('1892', '165', 'https://cdn.viperky.com/storage/images/20180827/Jw94Plan4q.png', '9', '92caed8264db5fc0e354', '1', '1', '2018-08-27 14:39:45', '2018-08-27 14:39:45', null);
  3304. INSERT INTO `ibrand_goods_photo` VALUES ('1895', '150', 'https://cdn.viperky.com/storage/images/20180813/k0WSOE4xu4.png', '9', 'af45404d79473ca96e8b', '0', '1', '2018-08-28 09:06:39', '2018-08-28 09:06:39', null);
  3305. INSERT INTO `ibrand_goods_photo` VALUES ('1896', '150', 'https://cdn.viperky.com/storage/images/20180813/SmaWVlMuhP.png', '9', 'f468d96bf8c9778564ac', '0', '1', '2018-08-28 09:06:39', '2018-08-28 09:06:39', null);
  3306. INSERT INTO `ibrand_goods_photo` VALUES ('1897', '150', 'https://cdn.viperky.com/storage/images/20180813/f1HxiawLYA.png', '9', 'e98f8b7cdac539630489', '1', '1', '2018-08-28 09:06:39', '2018-08-28 09:06:39', null);
  3307. INSERT INTO `ibrand_goods_photo` VALUES ('1898', '166', 'https://cdn.viperky.com/storage/images/20180903/MzeSoFe1Ol.png', '9', '9fb59ec57fd04e10f590', '0', '1', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  3308. INSERT INTO `ibrand_goods_photo` VALUES ('1899', '166', 'https://cdn.viperky.com/storage/images/20180903/wJC7cDVEz6.png', '9', '674a8a58b597b3cf32f6', '0', '1', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  3309. INSERT INTO `ibrand_goods_photo` VALUES ('1900', '166', 'https://cdn.viperky.com/storage/images/20180903/fBl6XLq2cn.png', '9', '099ee549764996011a4a', '0', '1', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  3310. INSERT INTO `ibrand_goods_photo` VALUES ('1901', '166', 'https://cdn.viperky.com/storage/images/20180903/ADO9qf46kP.png', '9', 'a4c90444c334c6f16348', '0', '1', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  3311. INSERT INTO `ibrand_goods_photo` VALUES ('1902', '166', 'https://cdn.viperky.com/storage/images/20180903/Y30c19mQmY.png', '9', '236f971f9000f21476a1', '0', '1', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  3312. INSERT INTO `ibrand_goods_photo` VALUES ('1903', '166', 'https://cdn.viperky.com/storage/images/20180903/hhlNBt74eh.png', '9', '9324bf02dd7012719dc3', '1', '1', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  3313. INSERT INTO `ibrand_goods_photo` VALUES ('1904', '167', 'https://cdn.viperky.com/storage/images/20180903/NXkubVnBNx.png', '9', '5357234bbacaf8dada29', '0', '1', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  3314. INSERT INTO `ibrand_goods_photo` VALUES ('1905', '167', 'https://cdn.viperky.com/storage/images/20180903/slVH96NWCZ.png', '9', '98c72481fdde3f557124', '0', '1', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  3315. INSERT INTO `ibrand_goods_photo` VALUES ('1906', '167', 'https://cdn.viperky.com/storage/images/20180903/1vz1TX4blT.png', '9', '163c363d124fa3eae64b', '0', '1', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  3316. INSERT INTO `ibrand_goods_photo` VALUES ('1907', '167', 'https://cdn.viperky.com/storage/images/20180903/Kf7O7o8PDQ.png', '9', 'd2af9c39ee54a5718b9b', '0', '1', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  3317. INSERT INTO `ibrand_goods_photo` VALUES ('1908', '167', 'https://cdn.viperky.com/storage/images/20180903/K0OQDsU5I7.png', '9', '879e820e61d8de90b395', '1', '1', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  3318. INSERT INTO `ibrand_goods_photo` VALUES ('1909', '168', 'https://cdn.viperky.com/storage/images/20180903/Kl9TJ1lt19.png', '7', '5b564a9efe85cf36a7d6', '0', '1', '2018-09-03 16:16:41', '2018-09-03 16:16:41', null);
  3319. INSERT INTO `ibrand_goods_photo` VALUES ('1910', '168', 'https://cdn.viperky.com/storage/images/20180903/VY2yy7ApLZ.png', '8', 'adea91fc089219ce622d', '0', '1', '2018-09-03 16:16:41', '2018-09-03 16:16:41', null);
  3320. INSERT INTO `ibrand_goods_photo` VALUES ('1911', '168', 'https://cdn.viperky.com/storage/images/20180903/l1RpEjPqAt.png', '9', '8f82468cc9cf08ab20e8', '1', '1', '2018-09-03 16:16:41', '2018-09-03 16:16:41', null);
  3321. INSERT INTO `ibrand_goods_photo` VALUES ('1912', '168', 'https://cdn.viperky.com/storage/images/20180903/VqVcL2VAyy.png', '6', '9f1d7855ec69e4479a68', '0', '1', '2018-09-03 16:16:41', '2018-09-03 16:16:41', null);
  3322. INSERT INTO `ibrand_goods_photo` VALUES ('1922', '171', 'https://cdn.viperky.com/storage/images/20180904/jm4TLKz6JV.jpg', '9', '4e2fa0a8ed11fce63412', '0', '1', '2018-09-04 20:03:02', '2018-09-04 20:03:02', null);
  3323. INSERT INTO `ibrand_goods_photo` VALUES ('1923', '171', 'https://cdn.viperky.com/storage/images/20180904/gGE29kPjtE.jpg', '9', '481de804c6d6127d8e65', '1', '1', '2018-09-04 20:03:02', '2018-09-04 20:03:02', null);
  3324. INSERT INTO `ibrand_goods_photo` VALUES ('1924', '171', 'https://cdn.viperky.com/storage/images/20180904/bDbieXUx4I.jpg', '9', 'cd97c0ed1f6b4a033e11', '0', '1', '2018-09-04 20:03:02', '2018-09-04 20:03:02', null);
  3325. INSERT INTO `ibrand_goods_photo` VALUES ('1943', '169', 'https://cdn.viperky.com/storage/images/20180904/x6gGbJTIAh.jpg', '9', '1ddb6f1eee79cbbbe042', '0', '1', '2018-09-06 12:04:17', '2018-09-06 12:04:17', null);
  3326. INSERT INTO `ibrand_goods_photo` VALUES ('1944', '169', 'https://cdn.viperky.com/storage/images/20180904/ssjzRd3oj7.jpg', '9', '9a77e3f497985492d84c', '0', '1', '2018-09-06 12:04:17', '2018-09-06 12:04:17', null);
  3327. INSERT INTO `ibrand_goods_photo` VALUES ('1945', '169', 'https://cdn.viperky.com/storage/images/20180904/LTLoa8lWRI.jpg', '9', '87672f79a99aad959190', '0', '1', '2018-09-06 12:04:17', '2018-09-06 12:04:17', null);
  3328. INSERT INTO `ibrand_goods_photo` VALUES ('1946', '169', 'https://cdn.viperky.com/storage/images/20180904/YTWT8I5Z8n.jpg', '9', '4009938327ec0fabe9cb', '1', '1', '2018-09-06 12:04:17', '2018-09-06 12:04:17', null);
  3329. INSERT INTO `ibrand_goods_photo` VALUES ('1947', '154', 'https://cdn.viperky.com/storage/images/20180816/wCh4jiHuVf.png', '9', '241197b666ab1bc6daf3', '0', '1', '2018-09-06 16:59:47', '2018-09-06 16:59:47', null);
  3330. INSERT INTO `ibrand_goods_photo` VALUES ('1948', '154', 'https://cdn.viperky.com/storage/images/20180816/MWNLYebOUK.png', '9', 'a332d54485d51ca955a5', '0', '1', '2018-09-06 16:59:47', '2018-09-06 16:59:47', null);
  3331. INSERT INTO `ibrand_goods_photo` VALUES ('1949', '154', 'https://cdn.viperky.com/storage/images/20180906/j1MuDXf6n7.png', '9', 'acb95e9358592fc231ff', '1', '1', '2018-09-06 16:59:47', '2018-09-06 16:59:47', null);
  3332. INSERT INTO `ibrand_goods_photo` VALUES ('1954', '170', 'https://cdn.viperky.com/storage/images/20180904/MvHeQ5oNZQ.jpg', '9', '698417e2c3c9e5e6bd13', '0', '1', '2018-09-11 16:46:59', '2018-09-11 16:46:59', null);
  3333. INSERT INTO `ibrand_goods_photo` VALUES ('1955', '170', 'https://cdn.viperky.com/storage/images/20180906/ROpx6dMHS9.jpg', '9', '0a16aa0cd4930927c90e', '0', '1', '2018-09-11 16:46:59', '2018-09-11 16:46:59', null);
  3334. INSERT INTO `ibrand_goods_photo` VALUES ('1956', '170', 'https://cdn.viperky.com/storage/images/20180906/V1Pi9zurAJ.jpg', '9', 'fa15aa02e129d8156155', '0', '1', '2018-09-11 16:46:59', '2018-09-11 16:46:59', null);
  3335. INSERT INTO `ibrand_goods_photo` VALUES ('1957', '170', 'https://cdn.viperky.com/storage/images/20180906/ByXEE7EyjE.jpg', '9', '8fbff8f220ab620e3766', '0', '1', '2018-09-11 16:46:59', '2018-09-11 16:46:59', null);
  3336. INSERT INTO `ibrand_goods_photo` VALUES ('1958', '170', 'https://cdn.viperky.com/storage/images/20180906/gkLsyBNdi4.jpg', '9', '882f9f77e8d149dcc8c2', '1', '1', '2018-09-11 16:46:59', '2018-09-11 16:46:59', null);
  3337. INSERT INTO `ibrand_goods_photo` VALUES ('1959', '164', 'https://cdn.viperky.com/storage/images/20180827/JLC5xrU98s.png', '9', '850106cad010b7cd62ed', '1', '1', '2018-09-11 16:47:51', '2018-09-11 16:47:51', null);
  3338. INSERT INTO `ibrand_goods_photo` VALUES ('1960', '164', 'https://cdn.viperky.com/storage/images/20180827/4MJcqNmTvR.png', '9', 'df624576ba98f2e014b9', '0', '1', '2018-09-11 16:47:51', '2018-09-11 16:47:51', null);
  3339. INSERT INTO `ibrand_goods_photo` VALUES ('1961', '156', 'https://cdn.viperky.com/storage/images/20180816/0dt9YRChj0.png', '9', '318470214e83ad383dfb', '1', '1', '2018-09-11 16:48:28', '2018-09-11 16:48:28', null);
  3340. INSERT INTO `ibrand_goods_photo` VALUES ('1962', '156', 'https://cdn.viperky.com/storage/images/20180816/owrO1mTout.png', '9', '9a91f8dcae417537cfa4', '0', '1', '2018-09-11 16:48:28', '2018-09-11 16:48:28', null);
  3341. INSERT INTO `ibrand_goods_photo` VALUES ('1963', '156', 'https://cdn.viperky.com/storage/images/20180816/ILn5xyF0lo.png', '9', 'b165ced893840a7c105e', '0', '1', '2018-09-11 16:48:28', '2018-09-11 16:48:28', null);
  3342. INSERT INTO `ibrand_goods_photo` VALUES ('1964', '156', 'https://cdn.viperky.com/storage/images/20180816/TUh31zaYWe.png', '9', 'c10512b947d0ddf098e1', '0', '1', '2018-09-11 16:48:28', '2018-09-11 16:48:28', null);
  3343. INSERT INTO `ibrand_goods_photo` VALUES ('1965', '153', 'https://cdn.viperky.com/storage/images/20180813/tIPmlxcSVl.png', '9', '37efcc6092629f6ad091', '1', '1', '2018-09-11 16:48:52', '2018-09-11 16:48:52', null);
  3344. INSERT INTO `ibrand_goods_photo` VALUES ('1966', '153', 'https://cdn.viperky.com/storage/images/20180813/H4V2PraCWG.png', '9', '99c0c219684926ba816d', '0', '1', '2018-09-11 16:48:52', '2018-09-11 16:48:52', null);
  3345. INSERT INTO `ibrand_goods_photo` VALUES ('1967', '153', 'https://cdn.viperky.com/storage/images/20180813/K58AfCqWTf.png', '9', 'f3f77d4a647823e42b52', '0', '1', '2018-09-11 16:48:52', '2018-09-11 16:48:52', null);
  3346. INSERT INTO `ibrand_goods_photo` VALUES ('1968', '153', 'https://cdn.viperky.com/storage/images/20180813/iHoV3Dd8Ai.png', '9', 'a96033176bb127b6221a', '0', '1', '2018-09-11 16:48:52', '2018-09-11 16:48:52', null);
  3347. INSERT INTO `ibrand_goods_photo` VALUES ('1969', '148', 'https://cdn.viperky.com/storage/images/20180813/mPBQyHz5LG.png', '9', '33e55e08322e685dbd02', '1', '1', '2018-09-11 16:49:33', '2018-09-11 16:49:33', null);
  3348. INSERT INTO `ibrand_goods_photo` VALUES ('1970', '148', 'https://cdn.viperky.com/storage/images/20180813/yCzsOGARyf.png', '9', 'b65e875d2d20d76167f2', '0', '1', '2018-09-11 16:49:33', '2018-09-11 16:49:33', null);
  3349. INSERT INTO `ibrand_goods_photo` VALUES ('1971', '148', 'https://cdn.viperky.com/storage/images/20180813/CFn8hSJF1d.png', '9', 'c064328a6942984cf870', '0', '1', '2018-09-11 16:49:33', '2018-09-11 16:49:33', null);
  3350. INSERT INTO `ibrand_goods_photo` VALUES ('1972', '135', 'https://cdn.viperky.com/storage/images/20180807/mZm6bXBLIw.png', '9', '58e2db384936db141145', '0', '1', '2018-09-11 16:49:54', '2018-09-11 16:49:54', null);
  3351. INSERT INTO `ibrand_goods_photo` VALUES ('1973', '135', 'https://cdn.viperky.com/storage/images/20180807/p2CXcuNEn9.png', '9', 'a3a58c5a085b995e5019', '1', '1', '2018-09-11 16:49:54', '2018-09-11 16:49:54', null);
  3352. INSERT INTO `ibrand_goods_photo` VALUES ('1974', '135', 'https://cdn.viperky.com/storage/images/20180807/k0Pw8NXSzC.png', '9', '4aadfc4fe735b768ac30', '0', '1', '2018-09-11 16:49:54', '2018-09-11 16:49:54', null);
  3353. INSERT INTO `ibrand_goods_photo` VALUES ('1975', '137', 'https://cdn.viperky.com/storage/images/20180808/0pyNSZVN5k.png', '9', 'ed25f831b7d3305f93a0', '1', '1', '2018-09-11 16:50:17', '2018-09-11 16:50:17', null);
  3354. INSERT INTO `ibrand_goods_photo` VALUES ('1976', '137', 'https://cdn.viperky.com/storage/images/20180808/4tVusBikEW.png', '9', '5fd9fe926007334c420b', '0', '1', '2018-09-11 16:50:17', '2018-09-11 16:50:17', null);
  3355. INSERT INTO `ibrand_goods_photo` VALUES ('1987', '152', 'https://cdn.viperky.com/storage/images/20180813/xkDXKpvuOE.png', '9', '2d66f105158471fb0d6a', '1', '1', '2018-09-11 18:11:11', '2018-09-11 18:11:11', null);
  3356. INSERT INTO `ibrand_goods_photo` VALUES ('1988', '152', 'https://cdn.viperky.com/storage/images/20180813/dqxlrM9BoJ.png', '9', '642869f1649315a71a91', '0', '1', '2018-09-11 18:11:11', '2018-09-11 18:11:11', null);
  3357. INSERT INTO `ibrand_goods_photo` VALUES ('1989', '152', 'https://cdn.viperky.com/storage/images/20180813/nbyYlW3Tku.png', '9', '50e34a310ccf140be674', '0', '1', '2018-09-11 18:11:11', '2018-09-11 18:11:11', null);
  3358. INSERT INTO `ibrand_goods_photo` VALUES ('1990', '152', 'https://cdn.viperky.com/storage/images/20180813/Sr9A1bePYq.png', '9', '8e07ac3687d94fc3c1fd', '0', '1', '2018-09-11 18:11:11', '2018-09-11 18:11:11', null);
  3359. INSERT INTO `ibrand_goods_photo` VALUES ('1991', '152', 'https://cdn.viperky.com/storage/images/20180813/DtGEJZIZ9F.png', '9', 'a0b9aecb5eb37d7df4f3', '0', '1', '2018-09-11 18:11:11', '2018-09-11 18:11:11', null);
  3360. INSERT INTO `ibrand_goods_photo` VALUES ('1992', '152', 'https://cdn.viperky.com/storage/images/20180813/fIsQDqeg8V.png', '9', '2193324f094428daf561', '0', '1', '2018-09-11 18:11:11', '2018-09-11 18:11:11', null);
  3361. INSERT INTO `ibrand_goods_photo` VALUES ('1993', '134', 'https://cdn.viperky.com/storage/images/20180807/W6ZmCIVbLP.png', '9', 'ebed344bbffb5819ca85', '0', '1', '2018-09-11 18:13:06', '2018-09-11 18:13:06', null);
  3362. INSERT INTO `ibrand_goods_photo` VALUES ('1994', '134', 'https://cdn.viperky.com/storage/images/20180807/S7PHMJHIU1.png', '9', 'f35f6db26b52d1b36a48', '0', '1', '2018-09-11 18:13:06', '2018-09-11 18:13:06', null);
  3363. INSERT INTO `ibrand_goods_photo` VALUES ('1995', '134', 'https://cdn.viperky.com/storage/images/20180807/cg0mhjeIrx.png', '9', '03d850ddb2e86fbde726', '0', '1', '2018-09-11 18:13:06', '2018-09-11 18:13:06', null);
  3364. INSERT INTO `ibrand_goods_photo` VALUES ('1996', '134', 'https://cdn.viperky.com/storage/images/20180807/Hg6uHt9SnI.png', '9', 'e16beeb28be2a4dc8c36', '1', '1', '2018-09-11 18:13:06', '2018-09-11 18:13:06', null);
  3365. INSERT INTO `ibrand_goods_photo` VALUES ('1997', '161', 'https://cdn.viperky.com/storage/images/20180816/QwzANKTJpG.png', '9', 'd921c00c2fe876063e26', '0', '1', '2018-09-12 08:56:06', '2018-09-12 08:56:06', null);
  3366. INSERT INTO `ibrand_goods_photo` VALUES ('1998', '161', 'https://cdn.viperky.com/storage/images/20180816/230WOHiKuP.png', '9', 'dcdf02dd502b97e894af', '0', '1', '2018-09-12 08:56:06', '2018-09-12 08:56:06', null);
  3367. INSERT INTO `ibrand_goods_photo` VALUES ('1999', '161', 'https://cdn.viperky.com/storage/images/20180816/QQxM20krZA.png', '9', '6fdae4b3647b72e96a77', '1', '1', '2018-09-12 08:56:06', '2018-09-12 08:56:06', null);
  3368. -- ----------------------------
  3369. -- Table structure for ibrand_goods_product
  3370. -- ----------------------------
  3371. DROP TABLE IF EXISTS `ibrand_goods_product`;
  3372. CREATE TABLE `ibrand_goods_product` (
  3373. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  3374. `goods_id` int(10) unsigned NOT NULL,
  3375. `store_nums` int(11) NOT NULL DEFAULT '0',
  3376. `sku` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  3377. `sell_price` decimal(15,2) NOT NULL,
  3378. `market_price` decimal(15,2) DEFAULT NULL,
  3379. `cost_price` decimal(15,2) DEFAULT NULL,
  3380. `weight` decimal(15,2) DEFAULT NULL,
  3381. `is_show` tinyint(4) NOT NULL DEFAULT '1',
  3382. `spec_ids` text COLLATE utf8mb4_unicode_ci,
  3383. `created_at` timestamp NULL DEFAULT NULL,
  3384. `updated_at` timestamp NULL DEFAULT NULL,
  3385. `deleted_at` timestamp NULL DEFAULT NULL,
  3386. PRIMARY KEY (`id`)
  3387. ) ENGINE=InnoDB AUTO_INCREMENT=2406 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
  3388. -- ----------------------------
  3389. -- Records of ibrand_goods_product
  3390. -- ----------------------------
  3391. INSERT INTO `ibrand_goods_product` VALUES ('6', '2', '41', 'YLY14290', '99.00', '199.00', null, null, '1', '[\"9\",\"40\"]', '2017-05-11 16:06:19', '2017-05-11 16:06:19', null);
  3392. INSERT INTO `ibrand_goods_product` VALUES ('7', '2', '26', 'YLY142100', '99.00', '199.00', null, null, '1', '[\"9\",\"41\"]', '2017-05-11 16:06:19', '2017-05-11 16:06:19', null);
  3393. INSERT INTO `ibrand_goods_product` VALUES ('8', '2', '81', 'YLY142110', '99.00', '199.00', null, null, '1', '[\"9\",\"42\"]', '2017-05-11 16:06:19', '2017-05-11 16:06:19', null);
  3394. INSERT INTO `ibrand_goods_product` VALUES ('9', '2', '93', 'YLY142120', '99.00', '199.00', null, null, '1', '[\"9\",\"43\"]', '2017-05-11 16:06:19', '2017-05-11 16:06:19', null);
  3395. INSERT INTO `ibrand_goods_product` VALUES ('10', '2', '24', 'YLY142130', '99.00', '199.00', null, null, '1', '[\"9\",\"44\"]', '2017-05-11 16:06:19', '2017-05-11 16:06:19', null);
  3396. INSERT INTO `ibrand_goods_product` VALUES ('11', '3', '42', 'YDK4290', '99.00', '199.00', null, null, '1', '[\"40\",\"46\"]', '2017-05-15 15:22:03', '2017-05-15 15:22:03', null);
  3397. INSERT INTO `ibrand_goods_product` VALUES ('12', '3', '33', 'YDK42100', '99.00', '199.00', null, null, '1', '[\"41\",\"46\"]', '2017-05-15 15:22:03', '2017-05-15 15:22:03', null);
  3398. INSERT INTO `ibrand_goods_product` VALUES ('13', '3', '25', 'YDK42110', '99.00', '199.00', null, null, '1', '[\"42\",\"46\"]', '2017-05-15 15:22:03', '2017-05-15 15:22:03', null);
  3399. INSERT INTO `ibrand_goods_product` VALUES ('14', '3', '21', 'YDK42120', '99.00', '199.00', null, null, '1', '[\"43\",\"46\"]', '2017-05-15 15:22:03', '2017-05-15 15:22:03', null);
  3400. INSERT INTO `ibrand_goods_product` VALUES ('15', '3', '26', 'YDK42130', '99.00', '199.00', null, null, '1', '[\"44\",\"46\"]', '2017-05-15 15:22:03', '2017-05-15 15:22:03', null);
  3401. INSERT INTO `ibrand_goods_product` VALUES ('16', '4', '34', 'YDK4390', '120.00', '239.00', null, null, '1', '[\"20\",\"40\"]', '2017-05-15 15:29:10', '2017-05-18 16:18:50', null);
  3402. INSERT INTO `ibrand_goods_product` VALUES ('17', '4', '33', 'YDK43100', '120.00', '239.00', null, null, '1', '[\"20\",\"41\"]', '2017-05-15 15:29:10', '2017-05-15 15:29:10', null);
  3403. INSERT INTO `ibrand_goods_product` VALUES ('18', '4', '24', 'YDK43110', '120.00', '239.00', null, null, '1', '[\"20\",\"42\"]', '2017-05-15 15:29:10', '2017-05-15 15:29:10', null);
  3404. INSERT INTO `ibrand_goods_product` VALUES ('19', '4', '30', 'YDK43120', '120.00', '239.00', null, null, '1', '[\"20\",\"43\"]', '2017-05-15 15:29:10', '2017-05-15 15:29:10', null);
  3405. INSERT INTO `ibrand_goods_product` VALUES ('20', '4', '33', 'YDK43130', '120.00', '239.00', null, null, '1', '[\"20\",\"44\"]', '2017-05-15 15:29:10', '2017-05-15 15:29:10', null);
  3406. INSERT INTO `ibrand_goods_product` VALUES ('21', '5', '27', 'YLY10090', '135.00', '269.00', null, null, '1', '[\"4\",\"40\"]', '2017-05-15 15:36:23', '2017-05-15 15:36:23', null);
  3407. INSERT INTO `ibrand_goods_product` VALUES ('22', '5', '24', 'YLY100100', '135.00', '269.00', null, null, '1', '[\"4\",\"41\"]', '2017-05-15 15:36:23', '2017-05-15 15:36:23', null);
  3408. INSERT INTO `ibrand_goods_product` VALUES ('23', '5', '24', 'YLY100110', '135.00', '269.00', null, null, '1', '[\"4\",\"42\"]', '2017-05-15 15:36:23', '2017-05-15 15:36:23', null);
  3409. INSERT INTO `ibrand_goods_product` VALUES ('24', '5', '19', 'YLY100120', '135.00', '269.00', null, null, '1', '[\"4\",\"43\"]', '2017-05-15 15:36:23', '2017-05-15 15:36:23', null);
  3410. INSERT INTO `ibrand_goods_product` VALUES ('25', '5', '15', 'YLY100130', '135.00', '269.00', null, null, '1', '[\"4\",\"44\"]', '2017-05-15 15:36:23', '2017-05-15 15:36:23', null);
  3411. INSERT INTO `ibrand_goods_product` VALUES ('26', '6', '49', 'YLY13090', '135.00', '269.00', null, null, '1', '[\"34\",\"40\"]', '2017-05-15 15:45:37', '2017-05-15 15:45:37', null);
  3412. INSERT INTO `ibrand_goods_product` VALUES ('27', '6', '49', 'YLY130100', '135.00', '269.00', null, null, '1', '[\"34\",\"41\"]', '2017-05-15 15:45:37', '2017-05-15 15:45:37', null);
  3413. INSERT INTO `ibrand_goods_product` VALUES ('28', '6', '49', 'YLY130110', '135.00', '269.00', null, null, '1', '[\"34\",\"42\"]', '2017-05-15 15:45:37', '2017-05-15 15:45:37', null);
  3414. INSERT INTO `ibrand_goods_product` VALUES ('29', '6', '49', 'YLY130120', '135.00', '269.00', null, null, '1', '[\"34\",\"43\"]', '2017-05-15 15:45:37', '2017-05-15 15:45:37', null);
  3415. INSERT INTO `ibrand_goods_product` VALUES ('30', '6', '49', 'YLY130130', '135.00', '269.00', null, null, '1', '[\"34\",\"44\"]', '2017-05-15 15:45:37', '2017-05-15 15:45:37', null);
  3416. INSERT INTO `ibrand_goods_product` VALUES ('31', '7', '25', 'YLY10490', '85.00', '169.00', null, null, '1', '[\"37\",\"40\"]', '2017-05-15 16:00:54', '2017-05-15 16:00:54', null);
  3417. INSERT INTO `ibrand_goods_product` VALUES ('32', '7', '50', 'YLY104100', '85.00', '169.00', null, null, '1', '[\"37\",\"41\"]', '2017-05-15 16:00:54', '2017-05-15 16:00:54', null);
  3418. INSERT INTO `ibrand_goods_product` VALUES ('33', '7', '50', 'YLY104110', '85.00', '169.00', null, null, '1', '[\"37\",\"42\"]', '2017-05-15 16:00:54', '2017-05-15 16:00:54', null);
  3419. INSERT INTO `ibrand_goods_product` VALUES ('34', '7', '50', 'YLY104120', '85.00', '169.00', null, null, '1', '[\"37\",\"43\"]', '2017-05-15 16:00:55', '2017-05-15 16:00:55', null);
  3420. INSERT INTO `ibrand_goods_product` VALUES ('35', '7', '50', 'YLY104130', '85.00', '169.00', null, null, '1', '[\"37\",\"44\"]', '2017-05-15 16:00:55', '2017-05-15 16:00:55', null);
  3421. INSERT INTO `ibrand_goods_product` VALUES ('36', '8', '40', 'YLY10390', '135.00', '269.00', null, null, '1', '[\"4\",\"40\"]', '2017-05-15 16:07:31', '2017-05-15 16:07:31', null);
  3422. INSERT INTO `ibrand_goods_product` VALUES ('37', '8', '40', 'YLY103100', '135.00', '269.00', null, null, '1', '[\"4\",\"41\"]', '2017-05-15 16:07:31', '2017-05-15 16:07:31', null);
  3423. INSERT INTO `ibrand_goods_product` VALUES ('38', '8', '40', 'YLY103110', '135.00', '269.00', null, null, '1', '[\"4\",\"42\"]', '2017-05-15 16:07:31', '2017-05-15 16:07:31', null);
  3424. INSERT INTO `ibrand_goods_product` VALUES ('39', '8', '25', 'YLY103120', '135.00', '269.00', null, null, '1', '[\"4\",\"43\"]', '2017-05-15 16:07:31', '2017-05-15 16:07:31', null);
  3425. INSERT INTO `ibrand_goods_product` VALUES ('40', '8', '33', 'YLY103130', '135.00', '269.00', null, null, '1', '[\"4\",\"44\"]', '2017-05-15 16:07:31', '2017-05-15 16:07:31', null);
  3426. INSERT INTO `ibrand_goods_product` VALUES ('41', '9', '28', 'YLY12590', '135.00', '269.00', null, null, '1', '[\"15\",\"40\"]', '2017-05-15 16:13:34', '2017-05-15 16:13:34', null);
  3427. INSERT INTO `ibrand_goods_product` VALUES ('42', '9', '50', 'YLY125100', '135.00', '269.00', null, null, '1', '[\"15\",\"41\"]', '2017-05-15 16:13:34', '2017-05-15 16:13:34', null);
  3428. INSERT INTO `ibrand_goods_product` VALUES ('43', '9', '50', 'YLY125110', '135.00', '269.00', null, null, '1', '[\"15\",\"42\"]', '2017-05-15 16:13:34', '2017-05-15 16:13:34', null);
  3429. INSERT INTO `ibrand_goods_product` VALUES ('44', '9', '50', 'YLY125120', '135.00', '269.00', null, null, '1', '[\"15\",\"43\"]', '2017-05-15 16:13:34', '2017-05-15 16:13:34', null);
  3430. INSERT INTO `ibrand_goods_product` VALUES ('45', '9', '50', 'YLY125130', '135.00', '269.00', null, null, '1', '[\"15\",\"44\"]', '2017-05-15 16:13:34', '2017-05-15 16:13:34', null);
  3431. INSERT INTO `ibrand_goods_product` VALUES ('46', '10', '26', 'YTZ11490', '125.00', '249.00', null, null, '1', '[\"40\",\"46\"]', '2017-05-15 16:41:51', '2017-05-15 16:41:51', null);
  3432. INSERT INTO `ibrand_goods_product` VALUES ('47', '10', '50', 'YTZ114100', '125.00', '249.00', null, null, '1', '[\"41\",\"46\"]', '2017-05-15 16:41:51', '2017-05-15 16:41:51', null);
  3433. INSERT INTO `ibrand_goods_product` VALUES ('48', '10', '50', 'YTZ114110', '125.00', '249.00', null, null, '1', '[\"42\",\"46\"]', '2017-05-15 16:41:51', '2017-05-15 16:41:51', null);
  3434. INSERT INTO `ibrand_goods_product` VALUES ('49', '10', '36', 'YTZ114120', '125.00', '249.00', null, null, '1', '[\"43\",\"46\"]', '2017-05-15 16:41:51', '2017-05-15 16:41:51', null);
  3435. INSERT INTO `ibrand_goods_product` VALUES ('50', '10', '50', 'YTZ114130', '125.00', '249.00', null, null, '1', '[\"44\",\"46\"]', '2017-05-15 16:41:51', '2017-05-15 16:41:51', null);
  3436. INSERT INTO `ibrand_goods_product` VALUES ('51', '11', '50', 'YLY108F90', '99.00', '199.00', null, null, '1', '[\"4\",\"40\"]', '2017-05-15 16:52:45', '2017-05-15 16:52:45', null);
  3437. INSERT INTO `ibrand_goods_product` VALUES ('52', '11', '50', 'YLY108H90', '99.00', '199.00', null, null, '1', '[\"40\",\"47\"]', '2017-05-15 16:52:45', '2017-05-15 16:52:45', null);
  3438. INSERT INTO `ibrand_goods_product` VALUES ('53', '11', '50', 'YLY108F100', '99.00', '199.00', null, null, '1', '[\"4\",\"41\"]', '2017-05-15 16:52:45', '2017-05-15 16:52:45', null);
  3439. INSERT INTO `ibrand_goods_product` VALUES ('54', '11', '50', 'YLY108H100', '99.00', '199.00', null, null, '1', '[\"41\",\"47\"]', '2017-05-15 16:52:45', '2017-05-15 16:52:45', null);
  3440. INSERT INTO `ibrand_goods_product` VALUES ('55', '11', '50', 'YLY108F110', '99.00', '199.00', null, null, '1', '[\"4\",\"42\"]', '2017-05-15 16:52:45', '2017-05-15 16:52:45', null);
  3441. INSERT INTO `ibrand_goods_product` VALUES ('56', '11', '50', 'YLY108H110', '99.00', '199.00', null, null, '1', '[\"42\",\"47\"]', '2017-05-15 16:52:45', '2017-05-15 16:52:45', null);
  3442. INSERT INTO `ibrand_goods_product` VALUES ('57', '11', '50', 'YLY108F120', '99.00', '199.00', null, null, '1', '[\"4\",\"43\"]', '2017-05-15 16:52:45', '2017-05-15 16:52:45', null);
  3443. INSERT INTO `ibrand_goods_product` VALUES ('58', '11', '50', 'YLY108H120', '99.00', '199.00', null, null, '1', '[\"43\",\"47\"]', '2017-05-15 16:52:45', '2017-05-15 16:52:45', null);
  3444. INSERT INTO `ibrand_goods_product` VALUES ('59', '11', '50', 'YLY108F130', '99.00', '199.00', null, null, '1', '[\"4\",\"44\"]', '2017-05-15 16:52:45', '2017-05-15 16:52:45', null);
  3445. INSERT INTO `ibrand_goods_product` VALUES ('60', '11', '50', 'YLY108H130', '99.00', '199.00', null, null, '1', '[\"44\",\"47\"]', '2017-05-15 16:52:45', '2017-05-15 16:52:45', null);
  3446. INSERT INTO `ibrand_goods_product` VALUES ('61', '12', '40', 'YLY11690', '99.00', '199.00', null, null, '1', '[\"40\",\"46\"]', '2017-05-15 17:24:01', '2017-05-15 17:24:01', null);
  3447. INSERT INTO `ibrand_goods_product` VALUES ('62', '12', '40', 'YLY116100', '99.00', '199.00', null, null, '1', '[\"41\",\"46\"]', '2017-05-15 17:24:01', '2017-05-15 17:24:01', null);
  3448. INSERT INTO `ibrand_goods_product` VALUES ('63', '12', '40', 'YLY116110', '99.00', '199.00', null, null, '1', '[\"42\",\"46\"]', '2017-05-15 17:24:01', '2017-05-15 17:24:01', null);
  3449. INSERT INTO `ibrand_goods_product` VALUES ('64', '12', '40', 'YLY116120', '99.00', '199.00', null, null, '1', '[\"43\",\"46\"]', '2017-05-15 17:24:01', '2017-05-15 17:24:01', null);
  3450. INSERT INTO `ibrand_goods_product` VALUES ('65', '12', '23', 'YLY116130', '99.00', '199.00', null, null, '1', '[\"44\",\"46\"]', '2017-05-15 17:24:01', '2017-05-15 17:24:01', null);
  3451. INSERT INTO `ibrand_goods_product` VALUES ('66', '13', '95', '77000', '298.00', '298.00', null, null, '1', '[\"1\",\"48\"]', '2017-09-22 13:26:08', '2017-10-19 22:11:40', null);
  3452. INSERT INTO `ibrand_goods_product` VALUES ('67', '14', '1', 'SD21001', '28.00', '37.00', null, null, '1', '[\"4\",\"48\"]', '2017-10-16 15:09:03', '2017-10-19 22:23:47', null);
  3453. INSERT INTO `ibrand_goods_product` VALUES ('68', '14', '4', 'SD21001-M', '28.00', '37.00', null, null, '1', '[\"18\",\"48\"]', '2017-10-16 15:09:03', '2018-03-30 08:08:07', null);
  3454. INSERT INTO `ibrand_goods_product` VALUES ('69', '15', '20', 'jumony300', '145.00', '145.00', null, null, '1', '[\"45\",\"47\"]', '2017-10-18 22:12:12', '2017-10-18 22:12:12', null);
  3455. INSERT INTO `ibrand_goods_product` VALUES ('70', '16', '20', 'theroms305-b', '159.00', '198.00', null, null, '1', '[\"4\",\"48\"]', '2017-10-18 22:22:04', '2017-10-18 22:22:04', null);
  3456. INSERT INTO `ibrand_goods_product` VALUES ('71', '16', '20', 'theroms305-s', '159.00', '198.00', null, null, '1', '[\"20\",\"48\"]', '2017-10-18 22:22:04', '2017-10-18 22:22:04', null);
  3457. INSERT INTO `ibrand_goods_product` VALUES ('72', '17', '20', 'dismk12-f', '98.00', '121.00', null, null, '1', '[\"4\",\"48\"]', '2017-10-18 22:46:49', '2017-10-18 22:46:49', null);
  3458. INSERT INTO `ibrand_goods_product` VALUES ('73', '17', '20', 'dismk12-l', '98.00', '121.00', null, null, '1', '[\"11\",\"48\"]', '2017-10-18 22:46:49', '2017-10-18 22:46:49', null);
  3459. INSERT INTO `ibrand_goods_product` VALUES ('74', '17', '20', 'dismk12-h', '98.00', '121.00', null, null, '1', '[\"47\",\"48\"]', '2017-10-18 22:46:49', '2017-10-18 22:46:49', null);
  3460. INSERT INTO `ibrand_goods_product` VALUES ('75', '18', '20', 'lionyg-f', '32.00', '60.00', null, null, '1', '[\"4\",\"48\"]', '2017-10-18 22:52:47', '2017-10-18 22:52:47', null);
  3461. INSERT INTO `ibrand_goods_product` VALUES ('76', '18', '20', 'lionyg-l', '32.00', '60.00', null, null, '1', '[\"10\",\"48\"]', '2017-10-18 22:52:47', '2017-10-18 22:52:47', null);
  3462. INSERT INTO `ibrand_goods_product` VALUES ('77', '18', '20', 'lionyg-z', '32.00', '60.00', null, null, '1', '[\"26\",\"48\"]', '2017-10-18 22:52:47', '2017-10-18 22:52:47', null);
  3463. INSERT INTO `ibrand_goods_product` VALUES ('78', '19', '20', 'liont-f', '109.00', '149.00', null, null, '1', '[\"4\",\"48\"]', '2017-10-18 22:57:27', '2017-10-18 22:57:27', null);
  3464. INSERT INTO `ibrand_goods_product` VALUES ('79', '19', '20', 'liont-l', '109.00', '149.00', null, null, '1', '[\"11\",\"48\"]', '2017-10-18 22:57:27', '2017-10-18 22:57:27', null);
  3465. INSERT INTO `ibrand_goods_product` VALUES ('80', '20', '39', 'XHR02', '258.00', '258.00', null, null, '1', '[\"47\",\"48\"]', '2017-10-18 22:59:15', '2018-09-03 22:22:08', null);
  3466. INSERT INTO `ibrand_goods_product` VALUES ('81', '21', '20', 'BabyGanics-l', '79.00', '148.00', null, null, '1', '[\"11\",\"48\"]', '2017-10-18 23:04:10', '2017-10-18 23:04:10', null);
  3467. INSERT INTO `ibrand_goods_product` VALUES ('82', '22', '10', '668-19', '88.00', '88.00', null, null, '1', '[\"4\",\"48\"]', '2017-10-18 23:07:04', '2017-10-18 23:07:04', null);
  3468. INSERT INTO `ibrand_goods_product` VALUES ('83', '22', '10', '668-21', '88.00', '88.00', null, null, '1', '[\"20\",\"48\"]', '2017-10-18 23:07:04', '2017-10-18 23:07:04', null);
  3469. INSERT INTO `ibrand_goods_product` VALUES ('84', '23', '20', '49796001-1', '35.00', '40.00', null, null, '1', '[\"11\",\"48\"]', '2017-10-18 23:08:06', '2017-10-18 23:08:06', null);
  3470. INSERT INTO `ibrand_goods_product` VALUES ('85', '24', '19', 'vapejp-f', '78.00', '82.00', null, null, '1', '[\"4\",\"48\"]', '2017-10-18 23:11:32', '2018-05-07 17:11:12', null);
  3471. INSERT INTO `ibrand_goods_product` VALUES ('86', '25', '10', 'A28', '39.90', '39.90', null, null, '1', '[\"4\",\"48\"]', '2017-10-18 23:11:54', '2017-10-18 23:11:54', null);
  3472. INSERT INTO `ibrand_goods_product` VALUES ('87', '25', '10', 'B28', '39.90', '39.90', null, null, '1', '[\"20\",\"48\"]', '2017-10-18 23:11:54', '2017-10-18 23:11:54', null);
  3473. INSERT INTO `ibrand_goods_product` VALUES ('88', '26', '20', 'hgt60-w', '53.00', '53.00', null, null, '1', '[\"46\",\"48\"]', '2017-10-18 23:16:04', '2017-10-18 23:16:04', null);
  3474. INSERT INTO `ibrand_goods_product` VALUES ('89', '27', '10', 'XHP0011', '59.00', '59.00', null, null, '1', '[\"20\",\"48\"]', '2017-10-18 23:16:49', '2017-10-18 23:16:49', null);
  3475. INSERT INTO `ibrand_goods_product` VALUES ('90', '28', '18', 'H33751-l', '22.90', '48.00', null, null, '1', '[\"11\",\"48\"]', '2017-10-18 23:18:53', '2017-12-16 16:22:40', null);
  3476. INSERT INTO `ibrand_goods_product` VALUES ('91', '29', '8', 'TI-2021', '79.00', '79.00', null, null, '1', '[\"18\",\"48\"]', '2017-10-18 23:19:57', '2018-09-03 22:20:50', null);
  3477. INSERT INTO `ibrand_goods_product` VALUES ('92', '30', '10', 'ENLIGHTEN', '128.00', '128.00', null, null, '1', '[\"9\",\"48\"]', '2017-10-18 23:25:57', '2017-10-18 23:25:57', null);
  3478. INSERT INTO `ibrand_goods_product` VALUES ('93', '31', '10', 'Goodbaby2502', '118.00', '118.00', null, null, '1', '[\"12\",\"48\"]', '2017-10-18 23:32:08', '2017-10-18 23:32:08', null);
  3479. INSERT INTO `ibrand_goods_product` VALUES ('94', '32', '10', 'U3201', '25.00', '25.00', null, null, '1', '[\"19\",\"48\"]', '2017-10-18 23:36:24', '2017-10-18 23:36:24', null);
  3480. INSERT INTO `ibrand_goods_product` VALUES ('95', '33', '21', 'WEIBO1101', '16.11', '48.00', null, null, '1', '[\"7\",\"48\"]', '2017-11-09 16:39:47', '2017-11-22 21:18:01', null);
  3481. INSERT INTO `ibrand_goods_product` VALUES ('96', '34', '92', 'WAZI001', '2.11', '15.00', null, null, '1', '[\"7\",\"48\"]', '2017-11-09 17:38:05', '2017-11-12 15:34:26', null);
  3482. INSERT INTO `ibrand_goods_product` VALUES ('97', '35', '10', 'WANJU001', '2.11', '15.00', null, null, '1', '[\"7\",\"48\"]', '2017-11-09 17:40:33', '2017-11-12 17:10:13', null);
  3483. INSERT INTO `ibrand_goods_product` VALUES ('98', '36', '100', 'TW-3035-1', '49.00', '228.00', null, null, '1', '[\"4\",\"48\"]', '2017-12-13 17:43:51', '2017-12-13 17:43:51', null);
  3484. INSERT INTO `ibrand_goods_product` VALUES ('99', '36', '100', 'TW-3035-2', '49.00', '228.00', null, null, '1', '[\"16\",\"48\"]', '2017-12-13 17:43:51', '2017-12-13 17:43:51', null);
  3485. INSERT INTO `ibrand_goods_product` VALUES ('100', '36', '100', 'TW-3035-3', '49.00', '228.00', null, null, '1', '[\"20\",\"48\"]', '2017-12-13 17:43:51', '2017-12-13 17:43:51', null);
  3486. INSERT INTO `ibrand_goods_product` VALUES ('101', '37', '21', 'b070', '2.90', '15.00', null, null, '1', '[\"5\",\"48\"]', '2017-12-15 12:40:38', '2018-05-15 17:55:17', null);
  3487. INSERT INTO `ibrand_goods_product` VALUES ('102', '38', '9', 'mz12', '15.90', '39.00', null, null, '1', '[\"5\",\"48\"]', '2017-12-15 12:44:50', '2017-12-15 12:44:50', null);
  3488. INSERT INTO `ibrand_goods_product` VALUES ('103', '39', '6', '5239', '19.90', '69.00', null, null, '1', '[\"1\",\"48\"]', '2017-12-15 14:01:39', '2018-05-15 18:01:41', null);
  3489. INSERT INTO `ibrand_goods_product` VALUES ('104', '40', '28', 'st020', '12.90', '35.00', null, null, '1', '[\"1\",\"48\"]', '2017-12-15 14:05:10', '2017-12-22 16:42:43', null);
  3490. INSERT INTO `ibrand_goods_product` VALUES ('105', '41', '0', '9063-1', '29.00', '39.00', null, null, '1', '[\"10\",\"40\"]', '2018-05-15 11:13:52', '2018-05-15 11:16:29', null);
  3491. INSERT INTO `ibrand_goods_product` VALUES ('106', '41', '0', '9063-2', '29.00', '39.00', null, null, '1', '[\"10\",\"41\"]', '2018-05-15 11:13:52', '2018-05-15 11:16:29', null);
  3492. INSERT INTO `ibrand_goods_product` VALUES ('107', '41', '0', '9063-3', '29.00', '39.00', null, null, '1', '[\"10\",\"42\"]', '2018-05-15 11:13:52', '2018-05-15 11:16:29', null);
  3493. INSERT INTO `ibrand_goods_product` VALUES ('108', '41', '0', '9063-4', '29.00', '39.00', null, null, '1', '[\"10\",\"43\"]', '2018-05-15 11:13:52', '2018-05-15 11:16:29', null);
  3494. INSERT INTO `ibrand_goods_product` VALUES ('109', '41', '0', '9063-5', '29.00', '39.00', null, null, '1', '[\"10\",\"44\"]', '2018-05-15 11:13:52', '2018-05-15 11:16:29', null);
  3495. INSERT INTO `ibrand_goods_product` VALUES ('110', '41', '0', '9063-6', '29.00', '39.00', null, null, '1', '[\"10\",\"45\"]', '2018-05-15 11:13:52', '2018-05-15 11:16:29', null);
  3496. INSERT INTO `ibrand_goods_product` VALUES ('111', '41', '0', '9063-7', '29.00', '39.00', null, null, '1', '[\"34\",\"40\"]', '2018-05-15 11:13:52', '2018-05-15 11:16:29', null);
  3497. INSERT INTO `ibrand_goods_product` VALUES ('112', '41', '0', '9063-8', '29.00', '39.00', null, null, '1', '[\"34\",\"41\"]', '2018-05-15 11:13:52', '2018-05-15 11:16:29', null);
  3498. INSERT INTO `ibrand_goods_product` VALUES ('113', '41', '0', '9063-9', '29.00', '39.00', null, null, '1', '[\"34\",\"42\"]', '2018-05-15 11:13:52', '2018-05-15 11:16:29', null);
  3499. INSERT INTO `ibrand_goods_product` VALUES ('114', '41', '0', '9063-10', '29.00', '39.00', null, null, '1', '[\"34\",\"43\"]', '2018-05-15 11:13:52', '2018-05-15 11:16:29', null);
  3500. INSERT INTO `ibrand_goods_product` VALUES ('115', '41', '0', '9063-11', '29.00', '39.00', null, null, '1', '[\"34\",\"44\"]', '2018-05-15 11:13:52', '2018-05-15 11:16:29', null);
  3501. INSERT INTO `ibrand_goods_product` VALUES ('116', '41', '0', '9063-12', '29.00', '39.00', null, null, '1', '[\"34\",\"45\"]', '2018-05-15 11:13:52', '2018-05-15 11:16:29', null);
  3502. INSERT INTO `ibrand_goods_product` VALUES ('117', '41', '0', '9063-13', '29.00', '39.00', null, null, '1', '[\"35\",\"40\"]', '2018-05-15 11:13:52', '2018-05-15 11:16:29', null);
  3503. INSERT INTO `ibrand_goods_product` VALUES ('118', '41', '19', '9063-14', '29.00', '39.00', null, null, '1', '[\"35\",\"41\"]', '2018-05-15 11:13:52', '2018-05-16 16:20:36', null);
  3504. INSERT INTO `ibrand_goods_product` VALUES ('119', '41', '0', '9063-15', '29.00', '39.00', null, null, '1', '[\"35\",\"42\"]', '2018-05-15 11:13:52', '2018-05-15 11:16:29', null);
  3505. INSERT INTO `ibrand_goods_product` VALUES ('120', '41', '0', '9063-16', '29.00', '39.00', null, null, '1', '[\"35\",\"43\"]', '2018-05-15 11:13:52', '2018-05-15 11:16:29', null);
  3506. INSERT INTO `ibrand_goods_product` VALUES ('121', '41', '0', '9063-17', '29.00', '39.00', null, null, '1', '[\"35\",\"44\"]', '2018-05-15 11:13:52', '2018-05-15 11:16:29', null);
  3507. INSERT INTO `ibrand_goods_product` VALUES ('122', '41', '50', '9063-18', '29.00', '39.00', null, null, '1', '[\"35\",\"45\"]', '2018-05-15 11:13:52', '2018-05-15 11:16:29', null);
  3508. INSERT INTO `ibrand_goods_product` VALUES ('123', '42', '49', '9315-1', '29.00', '39.00', null, null, '1', '[\"38\",\"40\"]', '2018-05-15 11:29:26', '2018-05-15 18:13:23', null);
  3509. INSERT INTO `ibrand_goods_product` VALUES ('124', '42', '29', '9315-2', '29.00', '39.00', null, null, '1', '[\"38\",\"41\"]', '2018-05-15 11:29:26', '2018-05-15 15:57:41', null);
  3510. INSERT INTO `ibrand_goods_product` VALUES ('125', '42', '10', '9315-3', '29.00', '39.00', null, null, '1', '[\"38\",\"42\"]', '2018-05-15 11:29:26', '2018-05-15 11:29:26', null);
  3511. INSERT INTO `ibrand_goods_product` VALUES ('126', '42', '0', '9315-4', '29.00', '39.00', null, null, '1', '[\"38\",\"43\"]', '2018-05-15 11:29:26', '2018-05-15 11:29:26', null);
  3512. INSERT INTO `ibrand_goods_product` VALUES ('127', '42', '5', '9315-5', '29.00', '39.00', null, null, '1', '[\"38\",\"44\"]', '2018-05-15 11:29:26', '2018-05-15 16:10:45', null);
  3513. INSERT INTO `ibrand_goods_product` VALUES ('128', '42', '0', '9315-6', '29.00', '39.00', null, null, '1', '[\"38\",\"45\"]', '2018-05-15 11:29:26', '2018-05-15 11:29:26', null);
  3514. INSERT INTO `ibrand_goods_product` VALUES ('129', '43', '99', '9053-1', '28.00', '38.00', null, null, '1', '[\"10\",\"40\"]', '2018-05-15 11:58:44', '2018-05-16 22:02:26', null);
  3515. INSERT INTO `ibrand_goods_product` VALUES ('130', '43', '100', '9053-2', '28.00', '38.00', null, null, '1', '[\"10\",\"41\"]', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  3516. INSERT INTO `ibrand_goods_product` VALUES ('131', '43', '100', '9053-3', '28.00', '38.00', null, null, '1', '[\"10\",\"42\"]', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  3517. INSERT INTO `ibrand_goods_product` VALUES ('132', '43', '100', '9053-4', '28.00', '38.00', null, null, '1', '[\"10\",\"43\"]', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  3518. INSERT INTO `ibrand_goods_product` VALUES ('133', '43', '100', '9053-5', '28.00', '38.00', null, null, '1', '[\"10\",\"44\"]', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  3519. INSERT INTO `ibrand_goods_product` VALUES ('134', '43', '100', '9053-6', '28.00', '38.00', null, null, '1', '[\"10\",\"45\"]', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  3520. INSERT INTO `ibrand_goods_product` VALUES ('135', '43', '100', '9053-7', '28.00', '38.00', null, null, '1', '[\"14\",\"40\"]', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  3521. INSERT INTO `ibrand_goods_product` VALUES ('136', '43', '100', '9053-8', '28.00', '38.00', null, null, '1', '[\"14\",\"41\"]', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  3522. INSERT INTO `ibrand_goods_product` VALUES ('137', '43', '100', '9053-9', '28.00', '38.00', null, null, '1', '[\"14\",\"42\"]', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  3523. INSERT INTO `ibrand_goods_product` VALUES ('138', '43', '100', '9053-10', '28.00', '38.00', null, null, '1', '[\"14\",\"43\"]', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  3524. INSERT INTO `ibrand_goods_product` VALUES ('139', '43', '100', '9053-11', '28.00', '38.00', null, null, '1', '[\"14\",\"44\"]', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  3525. INSERT INTO `ibrand_goods_product` VALUES ('140', '43', '100', '9053-12', '28.00', '38.00', null, null, '1', '[\"14\",\"45\"]', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  3526. INSERT INTO `ibrand_goods_product` VALUES ('141', '43', '100', '9053-13', '28.00', '38.00', null, null, '1', '[\"31\",\"40\"]', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  3527. INSERT INTO `ibrand_goods_product` VALUES ('142', '43', '100', '9053-14', '28.00', '38.00', null, null, '1', '[\"31\",\"41\"]', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  3528. INSERT INTO `ibrand_goods_product` VALUES ('143', '43', '100', '9053-15', '28.00', '38.00', null, null, '1', '[\"31\",\"42\"]', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  3529. INSERT INTO `ibrand_goods_product` VALUES ('144', '43', '99', '9053-16', '28.00', '38.00', null, null, '1', '[\"31\",\"43\"]', '2018-05-15 11:58:44', '2018-05-29 18:46:36', null);
  3530. INSERT INTO `ibrand_goods_product` VALUES ('145', '43', '100', '9053-17', '28.00', '38.00', null, null, '1', '[\"31\",\"44\"]', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  3531. INSERT INTO `ibrand_goods_product` VALUES ('146', '43', '100', '9053-18', '28.00', '38.00', null, null, '1', '[\"31\",\"45\"]', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  3532. INSERT INTO `ibrand_goods_product` VALUES ('147', '43', '100', '9053-19', '28.00', '38.00', null, null, '1', '[\"40\",\"47\"]', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  3533. INSERT INTO `ibrand_goods_product` VALUES ('148', '43', '100', '9053-20', '28.00', '38.00', null, null, '1', '[\"41\",\"47\"]', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  3534. INSERT INTO `ibrand_goods_product` VALUES ('149', '43', '100', '9053-21', '28.00', '38.00', null, null, '1', '[\"42\",\"47\"]', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  3535. INSERT INTO `ibrand_goods_product` VALUES ('150', '43', '100', '9053-22', '28.00', '38.00', null, null, '1', '[\"43\",\"47\"]', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  3536. INSERT INTO `ibrand_goods_product` VALUES ('151', '43', '100', '9053-23', '28.00', '38.00', null, null, '1', '[\"44\",\"47\"]', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  3537. INSERT INTO `ibrand_goods_product` VALUES ('152', '43', '100', '9053-24', '28.00', '38.00', null, null, '1', '[\"45\",\"47\"]', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  3538. INSERT INTO `ibrand_goods_product` VALUES ('153', '44', '99', '9076-1', '29.00', '39.00', null, null, '1', '[\"10\",\"40\"]', '2018-05-15 12:21:58', '2018-05-16 14:30:55', null);
  3539. INSERT INTO `ibrand_goods_product` VALUES ('154', '44', '100', '9076-2', '29.00', '39.00', null, null, '1', '[\"10\",\"41\"]', '2018-05-15 12:21:58', '2018-05-15 12:21:58', null);
  3540. INSERT INTO `ibrand_goods_product` VALUES ('155', '44', '100', '9076-3', '29.00', '39.00', null, null, '1', '[\"10\",\"42\"]', '2018-05-15 12:21:58', '2018-05-15 12:21:58', null);
  3541. INSERT INTO `ibrand_goods_product` VALUES ('156', '44', '100', '9076-4', '29.00', '39.00', null, null, '1', '[\"10\",\"43\"]', '2018-05-15 12:21:58', '2018-05-15 12:21:58', null);
  3542. INSERT INTO `ibrand_goods_product` VALUES ('157', '44', '100', '9076-5', '29.00', '39.00', null, null, '1', '[\"10\",\"44\"]', '2018-05-15 12:21:58', '2018-05-15 12:21:58', null);
  3543. INSERT INTO `ibrand_goods_product` VALUES ('158', '44', '100', '9076-6', '29.00', '39.00', null, null, '1', '[\"10\",\"45\"]', '2018-05-15 12:21:58', '2018-05-15 12:21:58', null);
  3544. INSERT INTO `ibrand_goods_product` VALUES ('159', '44', '0', '9076-7', '29.00', '39.00', null, null, '0', '[\"14\",\"40\"]', '2018-05-15 12:21:58', '2018-05-15 12:21:58', null);
  3545. INSERT INTO `ibrand_goods_product` VALUES ('160', '44', '0', '9076-8', '29.00', '39.00', null, null, '0', '[\"14\",\"41\"]', '2018-05-15 12:21:58', '2018-05-15 12:21:58', null);
  3546. INSERT INTO `ibrand_goods_product` VALUES ('161', '44', '100', '9076-9', '29.00', '39.00', null, null, '1', '[\"14\",\"42\"]', '2018-05-15 12:21:58', '2018-05-15 12:21:58', null);
  3547. INSERT INTO `ibrand_goods_product` VALUES ('162', '44', '100', '9076-10', '29.00', '39.00', null, null, '1', '[\"14\",\"43\"]', '2018-05-15 12:21:58', '2018-05-15 12:21:58', null);
  3548. INSERT INTO `ibrand_goods_product` VALUES ('163', '44', '50', '9076-11', '29.00', '39.00', null, null, '1', '[\"14\",\"44\"]', '2018-05-15 12:21:58', '2018-05-15 12:21:58', null);
  3549. INSERT INTO `ibrand_goods_product` VALUES ('164', '44', '20', '9076-12', '29.00', '39.00', null, null, '1', '[\"14\",\"45\"]', '2018-05-15 12:21:58', '2018-05-15 12:21:58', null);
  3550. INSERT INTO `ibrand_goods_product` VALUES ('165', '44', '10', '9076-13', '29.00', '39.00', null, null, '1', '[\"40\",\"46\"]', '2018-05-15 12:21:58', '2018-05-15 12:21:58', null);
  3551. INSERT INTO `ibrand_goods_product` VALUES ('166', '44', '30', '9076-14', '29.00', '39.00', null, null, '1', '[\"41\",\"46\"]', '2018-05-15 12:21:58', '2018-05-15 12:21:58', null);
  3552. INSERT INTO `ibrand_goods_product` VALUES ('167', '44', '30', '9076-15', '29.00', '39.00', null, null, '1', '[\"42\",\"46\"]', '2018-05-15 12:21:58', '2018-05-15 12:21:58', null);
  3553. INSERT INTO `ibrand_goods_product` VALUES ('168', '44', '0', '9076-16', '29.00', '39.00', null, null, '0', '[\"43\",\"46\"]', '2018-05-15 12:21:58', '2018-05-15 12:21:58', null);
  3554. INSERT INTO `ibrand_goods_product` VALUES ('169', '44', '0', '9076-17', '29.00', '39.00', null, null, '0', '[\"44\",\"46\"]', '2018-05-15 12:21:58', '2018-05-15 12:21:58', null);
  3555. INSERT INTO `ibrand_goods_product` VALUES ('170', '44', '0', '9076-18', '29.00', '39.00', null, null, '0', '[\"45\",\"46\"]', '2018-05-15 12:21:58', '2018-05-15 12:21:58', null);
  3556. INSERT INTO `ibrand_goods_product` VALUES ('171', '44', '0', '9076-19', '29.00', '39.00', null, null, '0', '[\"40\",\"47\"]', '2018-05-15 12:21:58', '2018-05-15 12:21:58', null);
  3557. INSERT INTO `ibrand_goods_product` VALUES ('172', '44', '0', '9076-20', '29.00', '39.00', null, null, '0', '[\"41\",\"47\"]', '2018-05-15 12:21:58', '2018-05-15 12:21:58', null);
  3558. INSERT INTO `ibrand_goods_product` VALUES ('173', '44', '0', '9076-21', '29.00', '39.00', null, null, '0', '[\"42\",\"47\"]', '2018-05-15 12:21:58', '2018-05-15 12:21:58', null);
  3559. INSERT INTO `ibrand_goods_product` VALUES ('174', '44', '0', '9076-22', '29.00', '39.00', null, null, '0', '[\"43\",\"47\"]', '2018-05-15 12:21:58', '2018-05-15 12:21:58', null);
  3560. INSERT INTO `ibrand_goods_product` VALUES ('175', '44', '0', '9076-23', '29.00', '39.00', null, null, '0', '[\"44\",\"47\"]', '2018-05-15 12:21:58', '2018-05-15 12:21:58', null);
  3561. INSERT INTO `ibrand_goods_product` VALUES ('176', '44', '0', '9076-24', '29.00', '39.00', null, null, '0', '[\"45\",\"47\"]', '2018-05-15 12:21:58', '2018-05-15 12:21:58', null);
  3562. INSERT INTO `ibrand_goods_product` VALUES ('177', '45', '20', '9061-1', '28.00', '38.00', null, null, '1', '[\"14\",\"40\"]', '2018-05-15 14:23:36', '2018-05-18 17:57:02', null);
  3563. INSERT INTO `ibrand_goods_product` VALUES ('178', '45', '20', '9061-2', '28.00', '38.00', null, null, '1', '[\"14\",\"41\"]', '2018-05-15 14:23:36', '2018-05-18 17:57:02', null);
  3564. INSERT INTO `ibrand_goods_product` VALUES ('179', '45', '20', '9061-3', '28.00', '38.00', null, null, '1', '[\"14\",\"42\"]', '2018-05-15 14:23:36', '2018-05-18 17:57:02', null);
  3565. INSERT INTO `ibrand_goods_product` VALUES ('180', '45', '20', '9061-4', '28.00', '38.00', null, null, '1', '[\"14\",\"43\"]', '2018-05-15 14:23:36', '2018-05-18 17:57:02', null);
  3566. INSERT INTO `ibrand_goods_product` VALUES ('181', '45', '20', '9061-5', '28.00', '38.00', null, null, '1', '[\"14\",\"44\"]', '2018-05-15 14:23:36', '2018-05-18 17:57:03', null);
  3567. INSERT INTO `ibrand_goods_product` VALUES ('182', '45', '20', '9061-6', '28.00', '38.00', null, null, '1', '[\"14\",\"45\"]', '2018-05-15 14:23:36', '2018-05-18 17:57:03', null);
  3568. INSERT INTO `ibrand_goods_product` VALUES ('183', '45', '20', '9061-7', '28.00', '38.00', null, null, '1', '[\"23\",\"40\"]', '2018-05-15 14:23:36', '2018-05-15 14:23:36', null);
  3569. INSERT INTO `ibrand_goods_product` VALUES ('184', '45', '20', '9061-8', '28.00', '38.00', null, null, '1', '[\"23\",\"41\"]', '2018-05-15 14:23:36', '2018-05-15 14:23:36', null);
  3570. INSERT INTO `ibrand_goods_product` VALUES ('185', '45', '20', '9061-9', '28.00', '38.00', null, null, '1', '[\"23\",\"42\"]', '2018-05-15 14:23:36', '2018-05-15 14:23:36', null);
  3571. INSERT INTO `ibrand_goods_product` VALUES ('186', '45', '17', '9061-10', '28.00', '38.00', null, null, '1', '[\"23\",\"43\"]', '2018-05-15 14:23:36', '2018-05-26 12:43:04', null);
  3572. INSERT INTO `ibrand_goods_product` VALUES ('187', '45', '20', '9061-11', '28.00', '38.00', null, null, '1', '[\"23\",\"44\"]', '2018-05-15 14:23:36', '2018-05-15 14:23:36', null);
  3573. INSERT INTO `ibrand_goods_product` VALUES ('188', '45', '19', '9061-12', '28.00', '38.00', null, null, '1', '[\"23\",\"45\"]', '2018-05-15 14:23:36', '2018-05-26 12:24:29', null);
  3574. INSERT INTO `ibrand_goods_product` VALUES ('189', '45', '20', '9061-13', '28.00', '38.00', null, null, '1', '[\"40\",\"46\"]', '2018-05-15 14:23:36', '2018-05-15 14:23:36', null);
  3575. INSERT INTO `ibrand_goods_product` VALUES ('190', '45', '20', '9061-14', '28.00', '38.00', null, null, '1', '[\"41\",\"46\"]', '2018-05-15 14:23:36', '2018-05-18 17:57:03', null);
  3576. INSERT INTO `ibrand_goods_product` VALUES ('191', '45', '20', '9061-15', '28.00', '38.00', null, null, '1', '[\"42\",\"46\"]', '2018-05-15 14:23:36', '2018-05-18 17:57:03', null);
  3577. INSERT INTO `ibrand_goods_product` VALUES ('192', '45', '20', '9061-16', '28.00', '38.00', null, null, '1', '[\"43\",\"46\"]', '2018-05-15 14:23:36', '2018-05-18 17:57:03', null);
  3578. INSERT INTO `ibrand_goods_product` VALUES ('193', '45', '20', '9061-17', '28.00', '38.00', null, null, '1', '[\"44\",\"46\"]', '2018-05-15 14:23:36', '2018-05-18 17:57:03', null);
  3579. INSERT INTO `ibrand_goods_product` VALUES ('194', '45', '20', '9061-18', '28.00', '38.00', null, null, '1', '[\"45\",\"46\"]', '2018-05-15 14:23:36', '2018-05-18 17:57:03', null);
  3580. INSERT INTO `ibrand_goods_product` VALUES ('195', '45', '20', '9061-19', '28.00', '38.00', null, null, '1', '[\"40\",\"47\"]', '2018-05-15 14:23:36', '2018-05-18 17:57:03', null);
  3581. INSERT INTO `ibrand_goods_product` VALUES ('196', '45', '20', '9061-20', '28.00', '38.00', null, null, '1', '[\"41\",\"47\"]', '2018-05-15 14:23:36', '2018-05-18 17:57:03', null);
  3582. INSERT INTO `ibrand_goods_product` VALUES ('197', '45', '20', '9061-21', '28.00', '38.00', null, null, '1', '[\"42\",\"47\"]', '2018-05-15 14:23:36', '2018-05-18 17:57:03', null);
  3583. INSERT INTO `ibrand_goods_product` VALUES ('198', '45', '20', '9061-22', '28.00', '38.00', null, null, '1', '[\"43\",\"47\"]', '2018-05-15 14:23:37', '2018-05-18 17:57:03', null);
  3584. INSERT INTO `ibrand_goods_product` VALUES ('199', '45', '20', '9061-23', '28.00', '38.00', null, null, '1', '[\"44\",\"47\"]', '2018-05-15 14:23:37', '2018-05-18 17:57:03', null);
  3585. INSERT INTO `ibrand_goods_product` VALUES ('200', '45', '20', '9061-24', '28.00', '38.00', null, null, '1', '[\"45\",\"47\"]', '2018-05-15 14:23:37', '2018-05-18 17:57:03', null);
  3586. INSERT INTO `ibrand_goods_product` VALUES ('201', '46', '10', '9099-1', '29.00', '39.00', null, null, '1', '[\"35\",\"40\"]', '2018-05-15 14:41:16', '2018-05-15 14:41:16', null);
  3587. INSERT INTO `ibrand_goods_product` VALUES ('202', '46', '0', '9099-2', '29.00', '39.00', null, null, '0', '[\"35\",\"41\"]', '2018-05-15 14:41:16', '2018-05-15 14:41:16', null);
  3588. INSERT INTO `ibrand_goods_product` VALUES ('203', '46', '0', '9099-3', '29.00', '39.00', null, null, '0', '[\"35\",\"42\"]', '2018-05-15 14:41:16', '2018-05-15 14:41:16', null);
  3589. INSERT INTO `ibrand_goods_product` VALUES ('204', '46', '0', '9099-4', '29.00', '39.00', null, null, '0', '[\"35\",\"43\"]', '2018-05-15 14:41:16', '2018-05-15 14:41:16', null);
  3590. INSERT INTO `ibrand_goods_product` VALUES ('205', '46', '0', '9099-5', '29.00', '39.00', null, null, '0', '[\"35\",\"44\"]', '2018-05-15 14:41:16', '2018-05-15 14:41:16', null);
  3591. INSERT INTO `ibrand_goods_product` VALUES ('206', '46', '0', '9099-6', '29.00', '39.00', null, null, '0', '[\"35\",\"45\"]', '2018-05-15 14:41:16', '2018-05-15 14:41:16', null);
  3592. INSERT INTO `ibrand_goods_product` VALUES ('207', '47', '0', 'KS364-1', '28.00', '38.00', null, null, '0', '[\"40\",\"46\"]', '2018-05-15 14:53:04', '2018-05-15 18:07:52', null);
  3593. INSERT INTO `ibrand_goods_product` VALUES ('208', '47', '0', 'KS364-2', '28.00', '38.00', null, null, '0', '[\"41\",\"46\"]', '2018-05-15 14:53:04', '2018-05-15 18:07:52', null);
  3594. INSERT INTO `ibrand_goods_product` VALUES ('209', '47', '0', 'KS364-3', '28.00', '38.00', null, null, '0', '[\"42\",\"46\"]', '2018-05-15 14:53:04', '2018-05-15 18:07:52', null);
  3595. INSERT INTO `ibrand_goods_product` VALUES ('210', '47', '0', 'KS364-4', '28.00', '38.00', null, null, '0', '[\"43\",\"46\"]', '2018-05-15 14:53:04', '2018-05-15 18:07:52', null);
  3596. INSERT INTO `ibrand_goods_product` VALUES ('211', '47', '0', 'KS364-5', '28.00', '38.00', null, null, '0', '[\"44\",\"46\"]', '2018-05-15 14:53:04', '2018-05-15 18:07:52', null);
  3597. INSERT INTO `ibrand_goods_product` VALUES ('212', '47', '0', 'KS364-6', '28.00', '38.00', null, null, '0', '[\"46\",\"60\"]', '2018-05-15 14:53:04', '2018-05-15 18:07:52', null);
  3598. INSERT INTO `ibrand_goods_product` VALUES ('218', '48', '100', 'KS1702-6', '98.00', '146.00', null, null, '1', '[\"1\",\"49\"]', '2018-05-15 15:37:43', '2018-05-16 10:21:30', null);
  3599. INSERT INTO `ibrand_goods_product` VALUES ('219', '48', '100', 'KS1702-7', '98.00', '146.00', null, null, '1', '[\"1\",\"50\"]', '2018-05-15 15:37:43', '2018-05-16 10:21:30', null);
  3600. INSERT INTO `ibrand_goods_product` VALUES ('220', '48', '100', 'KS1702-8', '98.00', '146.00', null, null, '1', '[\"1\",\"51\"]', '2018-05-15 15:37:43', '2018-05-16 10:21:30', null);
  3601. INSERT INTO `ibrand_goods_product` VALUES ('221', '48', '100', 'KS1702-9', '98.00', '146.00', null, null, '1', '[\"1\",\"52\"]', '2018-05-15 15:37:43', '2018-05-16 10:21:30', null);
  3602. INSERT INTO `ibrand_goods_product` VALUES ('227', '48', '100', 'KS1702-15', '98.00', '146.00', null, null, '1', '[\"5\",\"49\"]', '2018-05-15 15:37:43', '2018-05-16 10:21:30', null);
  3603. INSERT INTO `ibrand_goods_product` VALUES ('228', '48', '100', 'KS1702-16', '98.00', '146.00', null, null, '1', '[\"5\",\"50\"]', '2018-05-15 15:37:43', '2018-05-16 10:21:30', null);
  3604. INSERT INTO `ibrand_goods_product` VALUES ('229', '48', '100', 'KS1702-17', '98.00', '146.00', null, null, '1', '[\"5\",\"51\"]', '2018-05-15 15:37:43', '2018-05-16 10:21:30', null);
  3605. INSERT INTO `ibrand_goods_product` VALUES ('230', '48', '100', 'KS1702-18', '98.00', '146.00', null, null, '1', '[\"5\",\"52\"]', '2018-05-15 15:37:43', '2018-05-16 10:21:30', null);
  3606. INSERT INTO `ibrand_goods_product` VALUES ('231', '49', '79', 'KS1602-1', '69.00', '99.00', null, null, '1', '[\"4\",\"40\"]', '2018-05-15 15:47:55', '2018-05-16 15:15:13', null);
  3607. INSERT INTO `ibrand_goods_product` VALUES ('232', '49', '80', 'KS1602-2', '69.00', '99.00', null, null, '1', '[\"4\",\"41\"]', '2018-05-15 15:47:55', '2018-05-15 15:47:55', null);
  3608. INSERT INTO `ibrand_goods_product` VALUES ('233', '49', '80', 'KS1602-3', '69.00', '99.00', null, null, '1', '[\"4\",\"42\"]', '2018-05-15 15:47:55', '2018-05-15 15:47:55', null);
  3609. INSERT INTO `ibrand_goods_product` VALUES ('234', '49', '80', 'KS1602-4', '69.00', '99.00', null, null, '1', '[\"4\",\"43\"]', '2018-05-15 15:47:55', '2018-05-15 15:47:55', null);
  3610. INSERT INTO `ibrand_goods_product` VALUES ('235', '49', '80', 'KS1602-5', '69.00', '99.00', null, null, '1', '[\"4\",\"44\"]', '2018-05-15 15:47:55', '2018-05-15 15:47:55', null);
  3611. INSERT INTO `ibrand_goods_product` VALUES ('236', '49', '80', 'KS1602-6', '69.00', '99.00', null, null, '1', '[\"40\",\"46\"]', '2018-05-15 15:47:55', '2018-05-15 15:47:55', null);
  3612. INSERT INTO `ibrand_goods_product` VALUES ('237', '49', '80', 'KS1602-7', '69.00', '99.00', null, null, '1', '[\"41\",\"46\"]', '2018-05-15 15:47:55', '2018-05-15 15:47:55', null);
  3613. INSERT INTO `ibrand_goods_product` VALUES ('238', '49', '80', 'KS1602-8', '69.00', '99.00', null, null, '1', '[\"42\",\"46\"]', '2018-05-15 15:47:55', '2018-05-15 15:47:55', null);
  3614. INSERT INTO `ibrand_goods_product` VALUES ('239', '49', '80', 'KS1602-9', '69.00', '99.00', null, null, '1', '[\"43\",\"46\"]', '2018-05-15 15:47:55', '2018-05-15 15:47:55', null);
  3615. INSERT INTO `ibrand_goods_product` VALUES ('240', '49', '80', 'KS1602-10', '69.00', '99.00', null, null, '1', '[\"44\",\"46\"]', '2018-05-15 15:47:55', '2018-05-15 15:47:55', null);
  3616. INSERT INTO `ibrand_goods_product` VALUES ('241', '50', '80', 'KS1705-1', '69.00', '99.00', null, null, '1', '[\"4\",\"41\"]', '2018-05-15 16:07:12', '2018-05-15 16:07:12', null);
  3617. INSERT INTO `ibrand_goods_product` VALUES ('242', '50', '80', 'KS1705-2', '69.00', '99.00', null, null, '1', '[\"4\",\"42\"]', '2018-05-15 16:07:12', '2018-05-15 16:07:12', null);
  3618. INSERT INTO `ibrand_goods_product` VALUES ('243', '50', '80', 'KS1705-3', '69.00', '99.00', null, null, '1', '[\"4\",\"43\"]', '2018-05-15 16:07:12', '2018-05-15 16:07:12', null);
  3619. INSERT INTO `ibrand_goods_product` VALUES ('244', '50', '80', 'KS1705-4', '69.00', '99.00', null, null, '1', '[\"4\",\"44\"]', '2018-05-15 16:07:12', '2018-05-15 16:07:12', null);
  3620. INSERT INTO `ibrand_goods_product` VALUES ('245', '50', '80', 'KS1705-5', '69.00', '99.00', null, null, '1', '[\"4\",\"49\"]', '2018-05-15 16:07:12', '2018-05-15 16:07:12', null);
  3621. INSERT INTO `ibrand_goods_product` VALUES ('246', '50', '80', 'KS1705-6', '69.00', '99.00', null, null, '1', '[\"4\",\"50\"]', '2018-05-15 16:07:12', '2018-05-15 16:07:12', null);
  3622. INSERT INTO `ibrand_goods_product` VALUES ('247', '50', '0', 'KS1705-7', '69.00', '99.00', null, null, '0', '[\"4\",\"51\"]', '2018-05-15 16:07:12', '2018-05-15 16:07:12', null);
  3623. INSERT INTO `ibrand_goods_product` VALUES ('248', '50', '0', 'KS1705-10', '69.00', '99.00', null, null, '0', '[\"4\",\"52\"]', '2018-05-15 16:07:12', '2018-05-15 16:07:12', null);
  3624. INSERT INTO `ibrand_goods_product` VALUES ('249', '50', '10', 'KS1705-11', '69.00', '99.00', null, null, '1', '[\"15\",\"41\"]', '2018-05-15 16:07:12', '2018-05-15 16:07:12', null);
  3625. INSERT INTO `ibrand_goods_product` VALUES ('250', '50', '10', 'KS1705-12', '69.00', '99.00', null, null, '1', '[\"15\",\"42\"]', '2018-05-15 16:07:12', '2018-05-15 16:07:12', null);
  3626. INSERT INTO `ibrand_goods_product` VALUES ('251', '50', '10', 'KS1705-13', '69.00', '99.00', null, null, '1', '[\"15\",\"43\"]', '2018-05-15 16:07:12', '2018-05-15 16:07:12', null);
  3627. INSERT INTO `ibrand_goods_product` VALUES ('252', '50', '10', 'KS1705-14', '69.00', '99.00', null, null, '1', '[\"15\",\"44\"]', '2018-05-15 16:07:12', '2018-05-15 16:07:12', null);
  3628. INSERT INTO `ibrand_goods_product` VALUES ('253', '50', '30', 'KS1705-15', '69.00', '99.00', null, null, '1', '[\"15\",\"49\"]', '2018-05-15 16:07:12', '2018-05-15 16:07:12', null);
  3629. INSERT INTO `ibrand_goods_product` VALUES ('254', '50', '10', 'KS1705-16', '69.00', '99.00', null, null, '1', '[\"15\",\"50\"]', '2018-05-15 16:07:12', '2018-05-15 16:07:12', null);
  3630. INSERT INTO `ibrand_goods_product` VALUES ('255', '50', '30', 'KS1705-17', '69.00', '99.00', null, null, '1', '[\"15\",\"51\"]', '2018-05-15 16:07:12', '2018-05-15 16:07:12', null);
  3631. INSERT INTO `ibrand_goods_product` VALUES ('256', '50', '10', 'KS1705-18', '69.00', '99.00', null, null, '1', '[\"15\",\"52\"]', '2018-05-15 16:07:12', '2018-05-15 16:07:12', null);
  3632. INSERT INTO `ibrand_goods_product` VALUES ('269', '52', '80', '9097-1', '29.00', '39.00', null, null, '1', '[\"14\",\"40\"]', '2018-05-15 16:21:02', '2018-05-15 16:21:02', null);
  3633. INSERT INTO `ibrand_goods_product` VALUES ('270', '52', '80', '9097-2', '29.00', '39.00', null, null, '1', '[\"14\",\"41\"]', '2018-05-15 16:21:02', '2018-05-15 16:21:02', null);
  3634. INSERT INTO `ibrand_goods_product` VALUES ('271', '52', '80', '9097-3', '29.00', '39.00', null, null, '1', '[\"14\",\"42\"]', '2018-05-15 16:21:02', '2018-05-15 16:21:02', null);
  3635. INSERT INTO `ibrand_goods_product` VALUES ('272', '52', '80', '9097-4', '29.00', '39.00', null, null, '1', '[\"14\",\"43\"]', '2018-05-15 16:21:02', '2018-05-15 16:21:02', null);
  3636. INSERT INTO `ibrand_goods_product` VALUES ('273', '52', '80', '9097-5', '29.00', '39.00', null, null, '1', '[\"14\",\"44\"]', '2018-05-15 16:21:02', '2018-05-15 16:21:02', null);
  3637. INSERT INTO `ibrand_goods_product` VALUES ('274', '52', '80', '9097-6', '29.00', '39.00', null, null, '1', '[\"14\",\"45\"]', '2018-05-15 16:21:02', '2018-05-15 16:21:02', null);
  3638. INSERT INTO `ibrand_goods_product` VALUES ('275', '52', '10', '9097-7', '29.00', '39.00', null, null, '1', '[\"40\",\"47\"]', '2018-05-15 16:21:02', '2018-05-15 16:21:02', null);
  3639. INSERT INTO `ibrand_goods_product` VALUES ('276', '52', '30', '9097-8', '29.00', '39.00', null, null, '1', '[\"41\",\"47\"]', '2018-05-15 16:21:02', '2018-05-15 16:21:02', null);
  3640. INSERT INTO `ibrand_goods_product` VALUES ('277', '52', '10', '9097-9', '29.00', '39.00', null, null, '1', '[\"42\",\"47\"]', '2018-05-15 16:21:02', '2018-05-15 16:21:02', null);
  3641. INSERT INTO `ibrand_goods_product` VALUES ('278', '52', '10', '9097-10', '29.00', '39.00', null, null, '1', '[\"43\",\"47\"]', '2018-05-15 16:21:02', '2018-05-15 16:21:02', null);
  3642. INSERT INTO `ibrand_goods_product` VALUES ('279', '52', '10', '9097-11', '29.00', '39.00', null, null, '1', '[\"44\",\"47\"]', '2018-05-15 16:21:02', '2018-05-15 16:21:02', null);
  3643. INSERT INTO `ibrand_goods_product` VALUES ('280', '52', '10', '9097-12', '29.00', '39.00', null, null, '1', '[\"45\",\"47\"]', '2018-05-15 16:21:02', '2018-05-15 16:21:02', null);
  3644. INSERT INTO `ibrand_goods_product` VALUES ('291', '53', '80', 'KS496-1', '89.00', '139.00', null, null, '1', '[\"4\",\"40\"]', '2018-05-15 16:40:20', '2018-05-15 16:40:20', null);
  3645. INSERT INTO `ibrand_goods_product` VALUES ('292', '53', '80', 'KS496-2', '89.00', '139.00', null, null, '1', '[\"4\",\"41\"]', '2018-05-15 16:40:20', '2018-05-15 16:40:20', null);
  3646. INSERT INTO `ibrand_goods_product` VALUES ('293', '53', '80', 'KS496-3', '89.00', '139.00', null, null, '1', '[\"4\",\"42\"]', '2018-05-15 16:40:20', '2018-05-15 16:40:20', null);
  3647. INSERT INTO `ibrand_goods_product` VALUES ('294', '53', '80', 'KS496-4', '89.00', '139.00', null, null, '1', '[\"4\",\"43\"]', '2018-05-15 16:40:20', '2018-05-15 16:40:20', null);
  3648. INSERT INTO `ibrand_goods_product` VALUES ('295', '53', '80', 'KS496-5', '89.00', '139.00', null, null, '1', '[\"4\",\"44\"]', '2018-05-15 16:40:20', '2018-05-15 16:40:20', null);
  3649. INSERT INTO `ibrand_goods_product` VALUES ('296', '53', '80', 'KS496-6', '89.00', '139.00', null, null, '1', '[\"14\",\"40\"]', '2018-05-15 16:40:20', '2018-05-15 16:40:20', null);
  3650. INSERT INTO `ibrand_goods_product` VALUES ('297', '53', '79', 'KS496-7', '89.00', '139.00', null, null, '1', '[\"14\",\"41\"]', '2018-05-15 16:40:20', '2018-05-25 15:33:42', null);
  3651. INSERT INTO `ibrand_goods_product` VALUES ('298', '53', '80', 'KS496-8', '89.00', '139.00', null, null, '1', '[\"14\",\"42\"]', '2018-05-15 16:40:21', '2018-05-15 16:40:21', null);
  3652. INSERT INTO `ibrand_goods_product` VALUES ('299', '53', '80', 'KS496-9', '89.00', '139.00', null, null, '1', '[\"14\",\"43\"]', '2018-05-15 16:40:21', '2018-05-15 16:40:21', null);
  3653. INSERT INTO `ibrand_goods_product` VALUES ('300', '53', '80', 'KS496-10', '89.00', '139.00', null, null, '1', '[\"14\",\"44\"]', '2018-05-15 16:40:21', '2018-05-15 16:40:21', null);
  3654. INSERT INTO `ibrand_goods_product` VALUES ('301', '54', '10', 'KS580-6', '88.00', '136.00', null, null, '1', '[\"1\",\"50\"]', '2018-05-15 16:42:46', '2018-05-16 10:26:17', null);
  3655. INSERT INTO `ibrand_goods_product` VALUES ('307', '54', '5', 'KS580-7', '88.00', '136.00', null, null, '1', '[\"1\",\"61\"]', '2018-05-15 16:42:46', '2018-05-15 16:42:46', null);
  3656. INSERT INTO `ibrand_goods_product` VALUES ('308', '54', '10', 'KS580-13', '88.00', '136.00', null, null, '1', '[\"46\",\"50\"]', '2018-05-15 16:42:46', '2018-05-16 10:26:17', null);
  3657. INSERT INTO `ibrand_goods_product` VALUES ('314', '54', '0', 'KS580-14', '88.00', '136.00', null, null, '0', '[\"46\",\"61\"]', '2018-05-15 16:42:46', '2018-05-15 16:45:39', null);
  3658. INSERT INTO `ibrand_goods_product` VALUES ('315', '55', '0', 'KS342-1', '89.00', '149.00', null, null, '0', '[\"4\",\"40\"]', '2018-05-15 16:57:14', '2018-05-15 16:57:14', null);
  3659. INSERT INTO `ibrand_goods_product` VALUES ('316', '55', '0', 'KS342-2', '89.00', '149.00', null, null, '0', '[\"4\",\"41\"]', '2018-05-15 16:57:14', '2018-05-15 16:57:14', null);
  3660. INSERT INTO `ibrand_goods_product` VALUES ('317', '55', '0', 'KS342-3', '89.00', '149.00', null, null, '0', '[\"4\",\"42\"]', '2018-05-15 16:57:14', '2018-05-15 16:57:14', null);
  3661. INSERT INTO `ibrand_goods_product` VALUES ('318', '55', '0', 'KS342-4', '89.00', '149.00', null, null, '0', '[\"4\",\"43\"]', '2018-05-15 16:57:14', '2018-05-15 16:57:14', null);
  3662. INSERT INTO `ibrand_goods_product` VALUES ('319', '55', '0', 'KS342-5', '89.00', '149.00', null, null, '0', '[\"4\",\"44\"]', '2018-05-15 16:57:14', '2018-05-15 16:57:14', null);
  3663. INSERT INTO `ibrand_goods_product` VALUES ('320', '55', '3', 'KS342-6', '89.00', '149.00', null, null, '1', '[\"21\",\"40\"]', '2018-05-15 16:57:14', '2018-05-15 16:57:14', null);
  3664. INSERT INTO `ibrand_goods_product` VALUES ('321', '55', '3', 'KS342-7', '89.00', '149.00', null, null, '1', '[\"21\",\"41\"]', '2018-05-15 16:57:14', '2018-05-15 16:57:14', null);
  3665. INSERT INTO `ibrand_goods_product` VALUES ('322', '55', '3', 'KS342-8', '89.00', '149.00', null, null, '1', '[\"21\",\"42\"]', '2018-05-15 16:57:14', '2018-05-15 16:57:14', null);
  3666. INSERT INTO `ibrand_goods_product` VALUES ('323', '55', '3', 'KS342-9', '89.00', '149.00', null, null, '1', '[\"21\",\"43\"]', '2018-05-15 16:57:14', '2018-05-15 16:57:14', null);
  3667. INSERT INTO `ibrand_goods_product` VALUES ('324', '55', '3', 'KS342-10', '89.00', '149.00', null, null, '1', '[\"21\",\"44\"]', '2018-05-15 16:57:15', '2018-05-15 16:57:15', null);
  3668. INSERT INTO `ibrand_goods_product` VALUES ('325', '55', '0', 'KS342-11', '89.00', '149.00', null, null, '0', '[\"37\",\"40\"]', '2018-05-15 16:57:15', '2018-05-15 16:57:15', null);
  3669. INSERT INTO `ibrand_goods_product` VALUES ('326', '55', '0', 'KS342-12', '89.00', '149.00', null, null, '0', '[\"37\",\"41\"]', '2018-05-15 16:57:15', '2018-05-15 16:57:15', null);
  3670. INSERT INTO `ibrand_goods_product` VALUES ('327', '55', '0', 'KS342-13', '89.00', '149.00', null, null, '0', '[\"37\",\"42\"]', '2018-05-15 16:57:15', '2018-05-15 16:57:15', null);
  3671. INSERT INTO `ibrand_goods_product` VALUES ('328', '55', '0', 'KS342-14', '89.00', '149.00', null, null, '0', '[\"37\",\"43\"]', '2018-05-15 16:57:15', '2018-05-15 16:57:15', null);
  3672. INSERT INTO `ibrand_goods_product` VALUES ('329', '55', '0', 'KS342-15', '89.00', '149.00', null, null, '0', '[\"37\",\"44\"]', '2018-05-15 16:57:15', '2018-05-15 16:57:15', null);
  3673. INSERT INTO `ibrand_goods_product` VALUES ('330', '56', '0', 'KS1681-1', '99.00', '169.00', null, null, '0', '[\"40\",\"46\"]', '2018-05-15 17:13:24', '2018-05-15 17:13:24', null);
  3674. INSERT INTO `ibrand_goods_product` VALUES ('331', '56', '0', 'KS1681-2', '99.00', '169.00', null, null, '0', '[\"41\",\"46\"]', '2018-05-15 17:13:24', '2018-05-15 17:13:24', null);
  3675. INSERT INTO `ibrand_goods_product` VALUES ('332', '56', '1', 'KS1681-3', '99.00', '169.00', null, null, '1', '[\"42\",\"46\"]', '2018-05-15 17:13:24', '2018-05-15 17:13:24', null);
  3676. INSERT INTO `ibrand_goods_product` VALUES ('333', '56', '0', 'KS1681-4', '99.00', '169.00', null, null, '0', '[\"43\",\"46\"]', '2018-05-15 17:13:24', '2018-05-15 17:13:24', null);
  3677. INSERT INTO `ibrand_goods_product` VALUES ('334', '56', '0', 'KS1681-5', '99.00', '169.00', null, null, '0', '[\"44\",\"46\"]', '2018-05-15 17:13:24', '2018-05-15 17:13:24', null);
  3678. INSERT INTO `ibrand_goods_product` VALUES ('335', '57', '5', 'KS448-1', '89.00', '139.00', null, null, '1', '[\"1\",\"40\"]', '2018-05-15 17:26:20', '2018-05-15 17:26:20', null);
  3679. INSERT INTO `ibrand_goods_product` VALUES ('336', '57', '5', 'KS448-2', '89.00', '139.00', null, null, '1', '[\"1\",\"41\"]', '2018-05-15 17:26:20', '2018-05-15 17:26:20', null);
  3680. INSERT INTO `ibrand_goods_product` VALUES ('337', '57', '5', 'KS448-3', '89.00', '139.00', null, null, '1', '[\"1\",\"42\"]', '2018-05-15 17:26:20', '2018-05-15 17:26:20', null);
  3681. INSERT INTO `ibrand_goods_product` VALUES ('338', '57', '5', 'KS448-4', '89.00', '139.00', null, null, '1', '[\"1\",\"43\"]', '2018-05-15 17:26:20', '2018-05-15 17:26:20', null);
  3682. INSERT INTO `ibrand_goods_product` VALUES ('339', '57', '5', 'KS448-5', '89.00', '139.00', null, null, '1', '[\"1\",\"44\"]', '2018-05-15 17:26:20', '2018-05-15 17:26:20', null);
  3683. INSERT INTO `ibrand_goods_product` VALUES ('340', '57', '5', 'KS448-6', '89.00', '139.00', null, null, '1', '[\"5\",\"40\"]', '2018-05-15 17:26:20', '2018-05-15 17:26:20', null);
  3684. INSERT INTO `ibrand_goods_product` VALUES ('341', '57', '5', 'KS448-7', '89.00', '139.00', null, null, '1', '[\"5\",\"41\"]', '2018-05-15 17:26:20', '2018-05-15 17:26:20', null);
  3685. INSERT INTO `ibrand_goods_product` VALUES ('342', '57', '5', 'KS448-8', '89.00', '139.00', null, null, '1', '[\"5\",\"42\"]', '2018-05-15 17:26:20', '2018-05-15 17:26:20', null);
  3686. INSERT INTO `ibrand_goods_product` VALUES ('343', '57', '5', 'KS448-9', '89.00', '139.00', null, null, '1', '[\"5\",\"43\"]', '2018-05-15 17:26:20', '2018-05-15 17:26:20', null);
  3687. INSERT INTO `ibrand_goods_product` VALUES ('344', '57', '5', 'KS448-10', '89.00', '139.00', null, null, '1', '[\"5\",\"44\"]', '2018-05-15 17:26:20', '2018-05-15 17:26:20', null);
  3688. INSERT INTO `ibrand_goods_product` VALUES ('345', '58', '99', 'KS1794-1', '98.00', '146.00', null, null, '1', '[\"4\",\"49\"]', '2018-05-15 17:30:56', '2018-05-27 11:40:24', null);
  3689. INSERT INTO `ibrand_goods_product` VALUES ('346', '58', '100', 'KS1794-2', '98.00', '146.00', null, null, '1', '[\"4\",\"50\"]', '2018-05-15 17:30:56', '2018-05-15 17:30:56', null);
  3690. INSERT INTO `ibrand_goods_product` VALUES ('347', '58', '0', 'KS1794-3', '98.00', '146.00', null, null, '0', '[\"4\",\"51\"]', '2018-05-15 17:30:56', '2018-05-15 17:30:56', null);
  3691. INSERT INTO `ibrand_goods_product` VALUES ('348', '58', '0', 'KS1794-4', '98.00', '146.00', null, null, '0', '[\"4\",\"52\"]', '2018-05-15 17:30:56', '2018-05-15 17:30:56', null);
  3692. INSERT INTO `ibrand_goods_product` VALUES ('349', '58', '100', 'KS1794-5', '68.00', '99.00', null, null, '1', '[\"4\",\"53\"]', '2018-05-15 17:30:56', '2018-05-15 17:30:56', null);
  3693. INSERT INTO `ibrand_goods_product` VALUES ('350', '58', '100', 'KS1794-6', '68.00', '99.00', null, null, '1', '[\"4\",\"54\"]', '2018-05-15 17:30:56', '2018-05-15 17:30:56', null);
  3694. INSERT INTO `ibrand_goods_product` VALUES ('351', '58', '100', 'KS1794-7', '68.00', '99.00', null, null, '1', '[\"4\",\"55\"]', '2018-05-15 17:30:56', '2018-05-15 17:30:56', null);
  3695. INSERT INTO `ibrand_goods_product` VALUES ('352', '58', '100', 'KS1794-8', '68.00', '99.00', null, null, '1', '[\"4\",\"56\"]', '2018-05-15 17:30:56', '2018-05-15 17:30:56', null);
  3696. INSERT INTO `ibrand_goods_product` VALUES ('353', '58', '100', 'KS1794-9', '98.00', '99.00', null, null, '1', '[\"4\",\"57\"]', '2018-05-15 17:30:56', '2018-05-15 17:30:56', null);
  3697. INSERT INTO `ibrand_goods_product` VALUES ('354', '58', '100', 'KS1794-10', '98.00', '146.00', null, null, '1', '[\"47\",\"49\"]', '2018-05-15 17:30:56', '2018-05-15 17:30:56', null);
  3698. INSERT INTO `ibrand_goods_product` VALUES ('355', '58', '97', 'KS1794-11', '98.00', '146.00', null, null, '1', '[\"47\",\"50\"]', '2018-05-15 17:30:56', '2018-05-26 18:02:39', null);
  3699. INSERT INTO `ibrand_goods_product` VALUES ('356', '58', '100', 'KS1794-12', '98.00', '146.00', null, null, '1', '[\"47\",\"51\"]', '2018-05-15 17:30:56', '2018-05-15 17:30:56', null);
  3700. INSERT INTO `ibrand_goods_product` VALUES ('357', '58', '100', 'KS1794-13', '98.00', '146.00', null, null, '1', '[\"47\",\"52\"]', '2018-05-15 17:30:56', '2018-05-15 17:30:56', null);
  3701. INSERT INTO `ibrand_goods_product` VALUES ('358', '58', '99', 'KS1794-14', '68.00', '99.00', null, null, '1', '[\"47\",\"53\"]', '2018-05-15 17:30:56', '2018-05-27 11:55:43', null);
  3702. INSERT INTO `ibrand_goods_product` VALUES ('359', '58', '99', 'KS1794-15', '68.00', '99.00', null, null, '1', '[\"47\",\"54\"]', '2018-05-15 17:30:56', '2018-05-27 11:09:53', null);
  3703. INSERT INTO `ibrand_goods_product` VALUES ('360', '58', '99', 'KS1794-16', '68.00', '99.00', null, null, '1', '[\"47\",\"55\"]', '2018-05-15 17:30:56', '2018-06-04 19:22:25', null);
  3704. INSERT INTO `ibrand_goods_product` VALUES ('361', '58', '100', 'KS1794-17', '68.00', '99.00', null, null, '1', '[\"47\",\"56\"]', '2018-05-15 17:30:56', '2018-05-15 17:30:56', null);
  3705. INSERT INTO `ibrand_goods_product` VALUES ('362', '58', '100', 'KS1794-18', '68.00', '99.00', null, null, '1', '[\"47\",\"57\"]', '2018-05-15 17:30:56', '2018-05-15 17:30:56', null);
  3706. INSERT INTO `ibrand_goods_product` VALUES ('363', '59', '20', 'KS1637-1', '69.00', '119.00', null, null, '1', '[\"1\",\"40\"]', '2018-05-15 17:41:25', '2018-05-18 17:57:55', null);
  3707. INSERT INTO `ibrand_goods_product` VALUES ('364', '59', '20', 'KS1637-2', '69.00', '119.00', null, null, '1', '[\"1\",\"41\"]', '2018-05-15 17:41:25', '2018-05-18 17:57:55', null);
  3708. INSERT INTO `ibrand_goods_product` VALUES ('365', '59', '20', 'KS1637-3', '69.00', '119.00', null, null, '1', '[\"1\",\"42\"]', '2018-05-15 17:41:25', '2018-05-18 17:57:55', null);
  3709. INSERT INTO `ibrand_goods_product` VALUES ('366', '59', '20', 'KS1637-4', '69.00', '119.00', null, null, '1', '[\"1\",\"43\"]', '2018-05-15 17:41:25', '2018-05-18 17:57:55', null);
  3710. INSERT INTO `ibrand_goods_product` VALUES ('367', '59', '20', 'KS1637-5', '69.00', '119.00', null, null, '1', '[\"1\",\"44\"]', '2018-05-15 17:41:25', '2018-05-18 17:57:55', null);
  3711. INSERT INTO `ibrand_goods_product` VALUES ('368', '59', '20', 'KS1637-6', '69.00', '119.00', null, null, '1', '[\"2\",\"40\"]', '2018-05-15 17:41:25', '2018-05-18 17:57:55', null);
  3712. INSERT INTO `ibrand_goods_product` VALUES ('369', '59', '20', 'KS1637-7', '69.00', '119.00', null, null, '1', '[\"2\",\"41\"]', '2018-05-15 17:41:25', '2018-05-18 17:57:55', null);
  3713. INSERT INTO `ibrand_goods_product` VALUES ('370', '59', '20', 'KS1637-8', '69.00', '119.00', null, null, '1', '[\"2\",\"42\"]', '2018-05-15 17:41:25', '2018-05-18 17:57:55', null);
  3714. INSERT INTO `ibrand_goods_product` VALUES ('371', '59', '20', 'KS1637-9', '69.00', '119.00', null, null, '1', '[\"2\",\"43\"]', '2018-05-15 17:41:25', '2018-05-18 17:57:55', null);
  3715. INSERT INTO `ibrand_goods_product` VALUES ('372', '59', '19', 'KS1637-10', '69.00', '119.00', null, null, '1', '[\"2\",\"44\"]', '2018-05-15 17:41:25', '2018-05-27 11:19:22', null);
  3716. INSERT INTO `ibrand_goods_product` VALUES ('373', '59', '20', 'KS1637-11', '69.00', '119.00', null, null, '1', '[\"5\",\"40\"]', '2018-05-15 17:41:25', '2018-05-18 17:57:56', null);
  3717. INSERT INTO `ibrand_goods_product` VALUES ('374', '59', '20', 'KS1637-12', '69.00', '119.00', null, null, '1', '[\"5\",\"41\"]', '2018-05-15 17:41:25', '2018-05-18 17:57:56', null);
  3718. INSERT INTO `ibrand_goods_product` VALUES ('375', '59', '20', 'KS1637-13', '69.00', '119.00', null, null, '1', '[\"5\",\"42\"]', '2018-05-15 17:41:25', '2018-05-18 17:57:56', null);
  3719. INSERT INTO `ibrand_goods_product` VALUES ('376', '59', '20', 'KS1637-14', '69.00', '119.00', null, null, '1', '[\"5\",\"43\"]', '2018-05-15 17:41:25', '2018-05-18 17:57:56', null);
  3720. INSERT INTO `ibrand_goods_product` VALUES ('377', '59', '20', 'KS1637-15', '69.00', '119.00', null, null, '1', '[\"5\",\"44\"]', '2018-05-15 17:41:25', '2018-05-18 17:57:56', null);
  3721. INSERT INTO `ibrand_goods_product` VALUES ('378', '59', '20', 'KS1637-16', '69.00', '119.00', null, null, '1', '[\"18\",\"40\"]', '2018-05-15 17:41:25', '2018-05-18 17:57:56', null);
  3722. INSERT INTO `ibrand_goods_product` VALUES ('379', '59', '20', 'KS1637-17', '69.00', '119.00', null, null, '1', '[\"18\",\"41\"]', '2018-05-15 17:41:25', '2018-05-18 17:57:56', null);
  3723. INSERT INTO `ibrand_goods_product` VALUES ('380', '59', '20', 'KS1637-18', '69.00', '119.00', null, null, '1', '[\"18\",\"42\"]', '2018-05-15 17:41:25', '2018-05-18 17:57:56', null);
  3724. INSERT INTO `ibrand_goods_product` VALUES ('381', '59', '20', 'KS1637-19', '69.00', '119.00', null, null, '1', '[\"18\",\"43\"]', '2018-05-15 17:41:25', '2018-05-18 17:57:56', null);
  3725. INSERT INTO `ibrand_goods_product` VALUES ('382', '59', '20', 'KS1637-20', '69.00', '119.00', null, null, '1', '[\"18\",\"44\"]', '2018-05-15 17:41:25', '2018-05-18 17:57:56', null);
  3726. INSERT INTO `ibrand_goods_product` VALUES ('383', '59', '20', 'KS1637-21', '69.00', '119.00', null, null, '1', '[\"40\",\"46\"]', '2018-05-15 17:41:25', '2018-05-18 17:57:56', null);
  3727. INSERT INTO `ibrand_goods_product` VALUES ('384', '59', '20', 'KS1637-22', '69.00', '119.00', null, null, '1', '[\"41\",\"46\"]', '2018-05-15 17:41:25', '2018-05-18 17:57:56', null);
  3728. INSERT INTO `ibrand_goods_product` VALUES ('385', '59', '20', 'KS1637-23', '69.00', '119.00', null, null, '1', '[\"42\",\"46\"]', '2018-05-15 17:41:25', '2018-05-18 17:57:56', null);
  3729. INSERT INTO `ibrand_goods_product` VALUES ('386', '59', '20', 'KS1637-24', '69.00', '119.00', null, null, '1', '[\"43\",\"46\"]', '2018-05-15 17:41:26', '2018-05-18 17:57:56', null);
  3730. INSERT INTO `ibrand_goods_product` VALUES ('387', '59', '20', 'KS1637-25', '69.00', '119.00', null, null, '1', '[\"44\",\"46\"]', '2018-05-15 17:41:26', '2018-05-18 17:57:56', null);
  3731. INSERT INTO `ibrand_goods_product` VALUES ('388', '60', '1', 'KS1717-1', '79.00', '129.00', null, null, '1', '[\"1\",\"40\"]', '2018-05-15 17:51:34', '2018-05-26 10:48:57', null);
  3732. INSERT INTO `ibrand_goods_product` VALUES ('389', '60', '2', 'KS1717-2', '79.00', '129.00', null, null, '1', '[\"1\",\"41\"]', '2018-05-15 17:51:34', '2018-05-15 17:51:34', null);
  3733. INSERT INTO `ibrand_goods_product` VALUES ('390', '60', '2', 'KS1717-3', '79.00', '129.00', null, null, '1', '[\"1\",\"42\"]', '2018-05-15 17:51:34', '2018-05-15 17:51:34', null);
  3734. INSERT INTO `ibrand_goods_product` VALUES ('391', '60', '2', 'KS1717-4', '79.00', '129.00', null, null, '1', '[\"1\",\"43\"]', '2018-05-15 17:51:34', '2018-05-15 17:51:34', null);
  3735. INSERT INTO `ibrand_goods_product` VALUES ('392', '60', '2', 'KS1717-5', '79.00', '129.00', null, null, '1', '[\"1\",\"44\"]', '2018-05-15 17:51:34', '2018-05-15 17:51:34', null);
  3736. INSERT INTO `ibrand_goods_product` VALUES ('393', '60', '2', 'KS1717-6', '79.00', '129.00', null, null, '1', '[\"40\",\"46\"]', '2018-05-15 17:51:35', '2018-05-15 17:51:35', null);
  3737. INSERT INTO `ibrand_goods_product` VALUES ('394', '60', '2', 'KS1717-7', '79.00', '129.00', null, null, '1', '[\"41\",\"46\"]', '2018-05-15 17:51:35', '2018-05-15 17:51:35', null);
  3738. INSERT INTO `ibrand_goods_product` VALUES ('395', '60', '2', 'KS1717-8', '79.00', '129.00', null, null, '1', '[\"42\",\"46\"]', '2018-05-15 17:51:35', '2018-05-15 17:51:35', null);
  3739. INSERT INTO `ibrand_goods_product` VALUES ('396', '60', '2', 'KS1717-9', '79.00', '129.00', null, null, '1', '[\"43\",\"46\"]', '2018-05-15 17:51:35', '2018-05-15 17:51:35', null);
  3740. INSERT INTO `ibrand_goods_product` VALUES ('397', '60', '2', 'KS1717-10', '79.00', '129.00', null, null, '1', '[\"44\",\"46\"]', '2018-05-15 17:51:35', '2018-05-15 17:51:35', null);
  3741. INSERT INTO `ibrand_goods_product` VALUES ('398', '61', '0', 'KS1612-1', '129.00', '199.00', null, null, '0', '[\"4\",\"51\"]', '2018-05-15 17:58:37', '2018-05-15 17:58:37', null);
  3742. INSERT INTO `ibrand_goods_product` VALUES ('399', '61', '0', 'KS1612-2', '129.00', '199.00', null, null, '0', '[\"4\",\"52\"]', '2018-05-15 17:58:37', '2018-05-15 17:58:37', null);
  3743. INSERT INTO `ibrand_goods_product` VALUES ('400', '61', '20', 'KS1612-3', '79.00', '125.00', null, null, '1', '[\"4\",\"53\"]', '2018-05-15 17:58:37', '2018-05-18 17:55:48', null);
  3744. INSERT INTO `ibrand_goods_product` VALUES ('401', '61', '20', 'KS1612-4', '79.00', '125.00', null, null, '1', '[\"4\",\"54\"]', '2018-05-15 17:58:37', '2018-05-18 17:55:48', null);
  3745. INSERT INTO `ibrand_goods_product` VALUES ('402', '61', '20', 'KS1612-5', '79.00', '125.00', null, null, '1', '[\"4\",\"55\"]', '2018-05-15 17:58:37', '2018-05-18 17:55:48', null);
  3746. INSERT INTO `ibrand_goods_product` VALUES ('403', '61', '20', 'KS1612-6', '79.00', '125.00', null, null, '1', '[\"4\",\"56\"]', '2018-05-15 17:58:37', '2018-05-18 17:55:48', null);
  3747. INSERT INTO `ibrand_goods_product` VALUES ('404', '61', '20', 'KS1612-7', '79.00', '125.00', null, null, '1', '[\"4\",\"57\"]', '2018-05-15 17:58:37', '2018-05-18 17:55:48', null);
  3748. INSERT INTO `ibrand_goods_product` VALUES ('405', '61', '20', 'KS1612-8', '129.00', '199.00', null, null, '1', '[\"4\",\"58\"]', '2018-05-15 17:58:37', '2018-05-18 17:55:48', null);
  3749. INSERT INTO `ibrand_goods_product` VALUES ('406', '61', '20', 'KS1612-9', '129.00', '199.00', null, null, '1', '[\"4\",\"59\"]', '2018-05-15 17:58:37', '2018-05-18 17:55:48', null);
  3750. INSERT INTO `ibrand_goods_product` VALUES ('407', '61', '20', 'KS1612-10', '129.00', '199.00', null, null, '1', '[\"18\",\"51\"]', '2018-05-15 17:58:38', '2018-05-18 17:55:48', null);
  3751. INSERT INTO `ibrand_goods_product` VALUES ('408', '61', '20', 'KS1612-11', '129.00', '199.00', null, null, '1', '[\"18\",\"52\"]', '2018-05-15 17:58:38', '2018-05-18 17:55:48', null);
  3752. INSERT INTO `ibrand_goods_product` VALUES ('409', '61', '20', 'KS1612-12', '79.00', '125.00', null, null, '1', '[\"18\",\"53\"]', '2018-05-15 17:58:38', '2018-05-18 17:55:48', null);
  3753. INSERT INTO `ibrand_goods_product` VALUES ('410', '61', '20', 'KS1612-13', '79.00', '125.00', null, null, '1', '[\"18\",\"54\"]', '2018-05-15 17:58:38', '2018-05-18 17:55:48', null);
  3754. INSERT INTO `ibrand_goods_product` VALUES ('411', '61', '20', 'KS1612-14', '79.00', '125.00', null, null, '1', '[\"18\",\"55\"]', '2018-05-15 17:58:38', '2018-05-18 17:55:48', null);
  3755. INSERT INTO `ibrand_goods_product` VALUES ('412', '61', '20', 'KS1612-15', '79.00', '125.00', null, null, '1', '[\"18\",\"56\"]', '2018-05-15 17:58:38', '2018-05-18 17:55:48', null);
  3756. INSERT INTO `ibrand_goods_product` VALUES ('413', '61', '20', 'KS1612-16', '79.00', '125.00', null, null, '1', '[\"18\",\"57\"]', '2018-05-15 17:58:38', '2018-05-18 17:55:48', null);
  3757. INSERT INTO `ibrand_goods_product` VALUES ('414', '61', '20', 'KS1612-17', '129.00', '199.00', null, null, '1', '[\"18\",\"58\"]', '2018-05-15 17:58:38', '2018-05-18 17:55:48', null);
  3758. INSERT INTO `ibrand_goods_product` VALUES ('415', '61', '20', 'KS1612-18', '129.00', '199.00', null, null, '1', '[\"18\",\"59\"]', '2018-05-15 17:58:38', '2018-05-18 17:55:48', null);
  3759. INSERT INTO `ibrand_goods_product` VALUES ('416', '62', '0', 'KS1581-1', '79.00', '129.00', null, null, '1', '[\"1\",\"40\"]', '2018-05-15 18:01:29', '2018-05-15 18:01:29', null);
  3760. INSERT INTO `ibrand_goods_product` VALUES ('417', '62', '0', 'KS1581-2', '79.00', '129.00', null, null, '1', '[\"1\",\"41\"]', '2018-05-15 18:01:29', '2018-05-15 18:01:29', null);
  3761. INSERT INTO `ibrand_goods_product` VALUES ('418', '62', '0', 'KS1581-3', '79.00', '129.00', null, null, '1', '[\"1\",\"42\"]', '2018-05-15 18:01:29', '2018-05-15 18:01:29', null);
  3762. INSERT INTO `ibrand_goods_product` VALUES ('419', '62', '0', 'KS1581-4', '79.00', '129.00', null, null, '1', '[\"1\",\"43\"]', '2018-05-15 18:01:29', '2018-05-15 18:01:29', null);
  3763. INSERT INTO `ibrand_goods_product` VALUES ('420', '62', '0', 'KS1581-5', '79.00', '129.00', null, null, '1', '[\"1\",\"44\"]', '2018-05-15 18:01:29', '2018-05-15 18:01:29', null);
  3764. INSERT INTO `ibrand_goods_product` VALUES ('421', '62', '0', 'KS1581-6', '79.00', '129.00', null, null, '1', '[\"4\",\"40\"]', '2018-05-15 18:01:29', '2018-05-15 18:01:29', null);
  3765. INSERT INTO `ibrand_goods_product` VALUES ('422', '62', '0', 'KS1581-7', '79.00', '129.00', null, null, '1', '[\"4\",\"41\"]', '2018-05-15 18:01:29', '2018-05-15 18:01:29', null);
  3766. INSERT INTO `ibrand_goods_product` VALUES ('423', '62', '0', 'KS1581-8', '79.00', '129.00', null, null, '1', '[\"4\",\"42\"]', '2018-05-15 18:01:29', '2018-05-15 18:01:29', null);
  3767. INSERT INTO `ibrand_goods_product` VALUES ('424', '62', '0', 'KS1581-9', '79.00', '129.00', null, null, '1', '[\"4\",\"43\"]', '2018-05-15 18:01:29', '2018-05-15 18:01:29', null);
  3768. INSERT INTO `ibrand_goods_product` VALUES ('425', '62', '0', 'KS1581-10', '79.00', '129.00', null, null, '1', '[\"4\",\"44\"]', '2018-05-15 18:01:29', '2018-05-15 18:01:29', null);
  3769. INSERT INTO `ibrand_goods_product` VALUES ('426', '62', '0', 'KS1581-11', '79.00', '129.00', null, null, '1', '[\"40\",\"46\"]', '2018-05-15 18:01:29', '2018-05-15 18:01:29', null);
  3770. INSERT INTO `ibrand_goods_product` VALUES ('427', '62', '0', 'KS1581-12', '79.00', '129.00', null, null, '1', '[\"41\",\"46\"]', '2018-05-15 18:01:29', '2018-05-15 18:01:29', null);
  3771. INSERT INTO `ibrand_goods_product` VALUES ('428', '62', '0', 'KS1581-13', '79.00', '129.00', null, null, '1', '[\"42\",\"46\"]', '2018-05-15 18:01:29', '2018-05-15 18:01:29', null);
  3772. INSERT INTO `ibrand_goods_product` VALUES ('429', '62', '0', 'KS1581-14', '79.00', '129.00', null, null, '1', '[\"43\",\"46\"]', '2018-05-15 18:01:29', '2018-05-15 18:01:29', null);
  3773. INSERT INTO `ibrand_goods_product` VALUES ('430', '62', '0', 'KS1581-15', '79.00', '129.00', null, null, '1', '[\"44\",\"46\"]', '2018-05-15 18:01:30', '2018-05-15 18:01:30', null);
  3774. INSERT INTO `ibrand_goods_product` VALUES ('431', '63', '100', 'KS1729-1', '69.00', '99.00', null, null, '1', '[\"20\",\"40\"]', '2018-05-16 09:41:38', '2018-05-16 09:41:38', null);
  3775. INSERT INTO `ibrand_goods_product` VALUES ('432', '63', '100', 'KS1729-2', '69.00', '99.00', null, null, '1', '[\"20\",\"41\"]', '2018-05-16 09:41:38', '2018-05-16 09:41:38', null);
  3776. INSERT INTO `ibrand_goods_product` VALUES ('433', '63', '100', 'KS1729-3', '69.00', '99.00', null, null, '1', '[\"20\",\"42\"]', '2018-05-16 09:41:38', '2018-05-16 09:41:38', null);
  3777. INSERT INTO `ibrand_goods_product` VALUES ('434', '63', '100', 'KS1729-4', '69.00', '99.00', null, null, '1', '[\"20\",\"43\"]', '2018-05-16 09:41:38', '2018-05-16 09:41:38', null);
  3778. INSERT INTO `ibrand_goods_product` VALUES ('435', '63', '100', 'KS1729-5', '69.00', '99.00', null, null, '1', '[\"20\",\"44\"]', '2018-05-16 09:41:39', '2018-05-16 09:41:39', null);
  3779. INSERT INTO `ibrand_goods_product` VALUES ('436', '63', '100', 'KS1729-6', '88.00', '136.00', null, null, '1', '[\"20\",\"49\"]', '2018-05-16 09:41:39', '2018-05-16 09:41:39', null);
  3780. INSERT INTO `ibrand_goods_product` VALUES ('437', '63', '100', 'KS1729-7', '88.00', '136.00', null, null, '1', '[\"20\",\"50\"]', '2018-05-16 09:41:39', '2018-05-16 09:41:39', null);
  3781. INSERT INTO `ibrand_goods_product` VALUES ('438', '64', '10', '9700-1', '49.00', '79.00', null, null, '1', '[\"14\",\"40\"]', '2018-05-16 09:50:25', '2018-05-16 09:50:25', null);
  3782. INSERT INTO `ibrand_goods_product` VALUES ('439', '64', '10', '9700-2', '49.00', '79.00', null, null, '1', '[\"14\",\"41\"]', '2018-05-16 09:50:25', '2018-05-16 09:50:25', null);
  3783. INSERT INTO `ibrand_goods_product` VALUES ('440', '64', '0', '9700-3', '49.00', '79.00', null, null, '0', '[\"14\",\"42\"]', '2018-05-16 09:50:25', '2018-05-16 09:50:25', null);
  3784. INSERT INTO `ibrand_goods_product` VALUES ('441', '64', '0', '9700-4', '49.00', '79.00', null, null, '0', '[\"14\",\"43\"]', '2018-05-16 09:50:25', '2018-05-16 09:50:25', null);
  3785. INSERT INTO `ibrand_goods_product` VALUES ('442', '64', '5', '9700-5', '49.00', '79.00', null, null, '1', '[\"14\",\"44\"]', '2018-05-16 09:50:25', '2018-05-16 09:50:25', null);
  3786. INSERT INTO `ibrand_goods_product` VALUES ('443', '64', '20', '9700-6', '49.00', '79.00', null, null, '1', '[\"14\",\"45\"]', '2018-05-16 09:50:25', '2018-05-16 09:50:25', null);
  3787. INSERT INTO `ibrand_goods_product` VALUES ('444', '64', '20', '9700-7', '49.00', '79.00', null, null, '1', '[\"40\",\"47\"]', '2018-05-16 09:50:25', '2018-05-16 09:50:25', null);
  3788. INSERT INTO `ibrand_goods_product` VALUES ('445', '64', '20', '9700-8', '49.00', '79.00', null, null, '1', '[\"41\",\"47\"]', '2018-05-16 09:50:25', '2018-05-16 09:50:25', null);
  3789. INSERT INTO `ibrand_goods_product` VALUES ('446', '64', '20', '9700-9', '49.00', '79.00', null, null, '1', '[\"42\",\"47\"]', '2018-05-16 09:50:25', '2018-05-16 09:50:25', null);
  3790. INSERT INTO `ibrand_goods_product` VALUES ('447', '64', '20', '9700-10', '49.00', '79.00', null, null, '1', '[\"43\",\"47\"]', '2018-05-16 09:50:25', '2018-05-16 09:50:25', null);
  3791. INSERT INTO `ibrand_goods_product` VALUES ('448', '64', '20', '9700-11', '49.00', '79.00', null, null, '1', '[\"44\",\"47\"]', '2018-05-16 09:50:25', '2018-05-16 09:50:25', null);
  3792. INSERT INTO `ibrand_goods_product` VALUES ('449', '64', '20', '9700-12', '49.00', '79.00', null, null, '1', '[\"45\",\"47\"]', '2018-05-16 09:50:25', '2018-05-16 09:50:25', null);
  3793. INSERT INTO `ibrand_goods_product` VALUES ('450', '65', '100', 'KS1636-1', '49.00', '75.00', null, null, '1', '[\"4\",\"40\"]', '2018-05-16 09:53:33', '2018-05-16 09:53:33', null);
  3794. INSERT INTO `ibrand_goods_product` VALUES ('451', '65', '100', 'KS1636-2', '49.00', '75.00', null, null, '1', '[\"4\",\"41\"]', '2018-05-16 09:53:33', '2018-05-16 09:53:33', null);
  3795. INSERT INTO `ibrand_goods_product` VALUES ('452', '65', '100', 'KS1636-3', '49.00', '75.00', null, null, '1', '[\"4\",\"42\"]', '2018-05-16 09:53:33', '2018-05-16 09:53:33', null);
  3796. INSERT INTO `ibrand_goods_product` VALUES ('453', '65', '100', 'KS1636-4', '49.00', '75.00', null, null, '1', '[\"4\",\"43\"]', '2018-05-16 09:53:33', '2018-05-16 09:53:33', null);
  3797. INSERT INTO `ibrand_goods_product` VALUES ('454', '65', '100', 'KS1636-5', '49.00', '75.00', null, null, '1', '[\"4\",\"44\"]', '2018-05-16 09:53:33', '2018-05-16 09:53:33', null);
  3798. INSERT INTO `ibrand_goods_product` VALUES ('455', '65', '100', 'KS1636-6', '79.00', '120.00', null, null, '1', '[\"4\",\"49\"]', '2018-05-16 09:53:33', '2018-05-16 09:53:33', null);
  3799. INSERT INTO `ibrand_goods_product` VALUES ('456', '65', '100', 'KS1636-7', '79.00', '120.00', null, null, '1', '[\"4\",\"50\"]', '2018-05-16 09:53:33', '2018-05-16 09:53:33', null);
  3800. INSERT INTO `ibrand_goods_product` VALUES ('457', '65', '0', 'KS1636-8', '79.00', '120.00', null, null, '0', '[\"4\",\"51\"]', '2018-05-16 09:53:33', '2018-05-16 09:53:33', null);
  3801. INSERT INTO `ibrand_goods_product` VALUES ('458', '65', '0', 'KS1636-9', '79.00', '120.00', null, null, '0', '[\"4\",\"52\"]', '2018-05-16 09:53:34', '2018-05-16 09:53:34', null);
  3802. INSERT INTO `ibrand_goods_product` VALUES ('459', '65', '100', 'KS1636-10', '49.00', '75.00', null, null, '1', '[\"20\",\"40\"]', '2018-05-16 09:53:34', '2018-05-16 09:53:34', null);
  3803. INSERT INTO `ibrand_goods_product` VALUES ('460', '65', '100', 'KS1636-11', '49.00', '75.00', null, null, '1', '[\"20\",\"41\"]', '2018-05-16 09:53:34', '2018-05-16 09:53:34', null);
  3804. INSERT INTO `ibrand_goods_product` VALUES ('461', '65', '100', 'KS1636-12', '49.00', '75.00', null, null, '1', '[\"20\",\"42\"]', '2018-05-16 09:53:34', '2018-05-16 09:53:34', null);
  3805. INSERT INTO `ibrand_goods_product` VALUES ('462', '65', '100', 'KS1636-13', '49.00', '75.00', null, null, '1', '[\"20\",\"43\"]', '2018-05-16 09:53:34', '2018-05-16 09:53:34', null);
  3806. INSERT INTO `ibrand_goods_product` VALUES ('463', '65', '100', 'KS1636-14', '49.00', '75.00', null, null, '1', '[\"20\",\"44\"]', '2018-05-16 09:53:34', '2018-05-16 09:53:34', null);
  3807. INSERT INTO `ibrand_goods_product` VALUES ('464', '65', '100', 'KS1636-15', '79.00', '120.00', null, null, '1', '[\"20\",\"49\"]', '2018-05-16 09:53:34', '2018-05-16 09:53:34', null);
  3808. INSERT INTO `ibrand_goods_product` VALUES ('465', '65', '100', 'KS1636-16', '79.00', '120.00', null, null, '1', '[\"20\",\"50\"]', '2018-05-16 09:53:34', '2018-05-16 09:53:34', null);
  3809. INSERT INTO `ibrand_goods_product` VALUES ('466', '65', '100', 'KS1636-17', '79.00', '120.00', null, null, '1', '[\"20\",\"51\"]', '2018-05-16 09:53:34', '2018-05-16 09:53:34', null);
  3810. INSERT INTO `ibrand_goods_product` VALUES ('467', '65', '100', 'KS1636-18', '79.00', '120.00', null, null, '1', '[\"20\",\"52\"]', '2018-05-16 09:53:34', '2018-05-16 09:53:34', null);
  3811. INSERT INTO `ibrand_goods_product` VALUES ('468', '65', '100', 'KS1636-19', '49.00', '75.00', null, null, '1', '[\"40\",\"46\"]', '2018-05-16 09:53:34', '2018-05-16 09:53:34', null);
  3812. INSERT INTO `ibrand_goods_product` VALUES ('469', '65', '100', 'KS1636-20', '49.00', '75.00', null, null, '1', '[\"41\",\"46\"]', '2018-05-16 09:53:34', '2018-05-16 09:53:34', null);
  3813. INSERT INTO `ibrand_goods_product` VALUES ('470', '65', '100', 'KS1636-21', '49.00', '75.00', null, null, '1', '[\"42\",\"46\"]', '2018-05-16 09:53:34', '2018-05-16 09:53:34', null);
  3814. INSERT INTO `ibrand_goods_product` VALUES ('471', '65', '100', 'KS1636-22', '49.00', '75.00', null, null, '1', '[\"43\",\"46\"]', '2018-05-16 09:53:34', '2018-05-16 09:53:34', null);
  3815. INSERT INTO `ibrand_goods_product` VALUES ('472', '65', '100', 'KS1636-23', '49.00', '75.00', null, null, '1', '[\"44\",\"46\"]', '2018-05-16 09:53:34', '2018-05-16 09:53:34', null);
  3816. INSERT INTO `ibrand_goods_product` VALUES ('473', '65', '100', 'KS1636-24', '79.00', '120.00', null, null, '1', '[\"46\",\"49\"]', '2018-05-16 09:53:34', '2018-05-16 09:53:34', null);
  3817. INSERT INTO `ibrand_goods_product` VALUES ('474', '65', '100', 'KS1636-25', '79.00', '120.00', null, null, '1', '[\"46\",\"50\"]', '2018-05-16 09:53:34', '2018-05-16 09:53:34', null);
  3818. INSERT INTO `ibrand_goods_product` VALUES ('475', '65', '100', 'KS1636-26', '79.00', '120.00', null, null, '1', '[\"46\",\"51\"]', '2018-05-16 09:53:34', '2018-05-16 09:53:34', null);
  3819. INSERT INTO `ibrand_goods_product` VALUES ('476', '65', '100', 'KS1636-27', '79.00', '120.00', null, null, '1', '[\"46\",\"52\"]', '2018-05-16 09:53:34', '2018-05-16 09:53:34', null);
  3820. INSERT INTO `ibrand_goods_product` VALUES ('477', '65', '100', 'KS1636-28', '49.00', '75.00', null, null, '1', '[\"40\",\"47\"]', '2018-05-16 09:53:34', '2018-05-16 09:53:34', null);
  3821. INSERT INTO `ibrand_goods_product` VALUES ('478', '65', '100', 'KS1636-29', '49.00', '75.00', null, null, '1', '[\"41\",\"47\"]', '2018-05-16 09:53:34', '2018-05-16 09:53:34', null);
  3822. INSERT INTO `ibrand_goods_product` VALUES ('479', '65', '100', 'KS1636-30', '49.00', '75.00', null, null, '1', '[\"42\",\"47\"]', '2018-05-16 09:53:34', '2018-05-16 09:53:34', null);
  3823. INSERT INTO `ibrand_goods_product` VALUES ('480', '65', '100', 'KS1636-31', '49.00', '75.00', null, null, '1', '[\"43\",\"47\"]', '2018-05-16 09:53:34', '2018-05-16 09:53:34', null);
  3824. INSERT INTO `ibrand_goods_product` VALUES ('481', '65', '100', 'KS1636-32', '49.00', '75.00', null, null, '1', '[\"44\",\"47\"]', '2018-05-16 09:53:34', '2018-05-16 09:53:34', null);
  3825. INSERT INTO `ibrand_goods_product` VALUES ('482', '65', '100', 'KS1636-33', '79.00', '120.00', null, null, '1', '[\"47\",\"49\"]', '2018-05-16 09:53:34', '2018-05-16 09:53:34', null);
  3826. INSERT INTO `ibrand_goods_product` VALUES ('483', '65', '100', 'KS1636-34', '79.00', '120.00', null, null, '1', '[\"47\",\"50\"]', '2018-05-16 09:53:34', '2018-05-16 09:53:34', null);
  3827. INSERT INTO `ibrand_goods_product` VALUES ('484', '65', '0', 'KS1636-35', '79.00', '120.00', null, null, '0', '[\"47\",\"51\"]', '2018-05-16 09:53:34', '2018-05-16 09:53:34', null);
  3828. INSERT INTO `ibrand_goods_product` VALUES ('485', '65', '0', 'KS1636-36', '79.00', '120.00', null, null, '0', '[\"47\",\"52\"]', '2018-05-16 09:53:34', '2018-05-16 09:53:34', null);
  3829. INSERT INTO `ibrand_goods_product` VALUES ('486', '66', '30', 'Ks1694-1', '78.00', '118.00', null, null, '1', '[\"15\",\"40\"]', '2018-05-16 10:08:51', '2018-05-16 10:08:51', null);
  3830. INSERT INTO `ibrand_goods_product` VALUES ('487', '66', '30', 'Ks1694-2', '78.00', '118.00', null, null, '1', '[\"15\",\"41\"]', '2018-05-16 10:08:51', '2018-05-16 10:08:51', null);
  3831. INSERT INTO `ibrand_goods_product` VALUES ('488', '66', '30', 'Ks1694-4', '78.00', '118.00', null, null, '1', '[\"15\",\"42\"]', '2018-05-16 10:08:51', '2018-05-16 10:08:51', null);
  3832. INSERT INTO `ibrand_goods_product` VALUES ('489', '66', '30', 'Ks1694-5', '78.00', '118.00', null, null, '1', '[\"15\",\"43\"]', '2018-05-16 10:08:51', '2018-05-16 10:08:51', null);
  3833. INSERT INTO `ibrand_goods_product` VALUES ('490', '66', '30', 'Ks1694-6', '78.00', '118.00', null, null, '1', '[\"15\",\"44\"]', '2018-05-16 10:08:51', '2018-05-16 10:08:51', null);
  3834. INSERT INTO `ibrand_goods_product` VALUES ('491', '66', '30', 'Ks1694-7', '78.00', '118.00', null, null, '1', '[\"40\",\"47\"]', '2018-05-16 10:08:51', '2018-05-16 10:08:51', null);
  3835. INSERT INTO `ibrand_goods_product` VALUES ('492', '66', '30', 'Ks1694-8', '78.00', '118.00', null, null, '1', '[\"41\",\"47\"]', '2018-05-16 10:08:52', '2018-05-16 10:08:52', null);
  3836. INSERT INTO `ibrand_goods_product` VALUES ('493', '66', '30', 'Ks1694-9', '78.00', '118.00', null, null, '1', '[\"42\",\"47\"]', '2018-05-16 10:08:52', '2018-05-16 10:08:52', null);
  3837. INSERT INTO `ibrand_goods_product` VALUES ('494', '66', '30', 'Ks1694-10', '78.00', '118.00', null, null, '1', '[\"43\",\"47\"]', '2018-05-16 10:08:52', '2018-05-16 10:08:52', null);
  3838. INSERT INTO `ibrand_goods_product` VALUES ('495', '66', '30', 'Ks1694-11', '78.00', '118.00', null, null, '1', '[\"44\",\"47\"]', '2018-05-16 10:08:52', '2018-05-16 10:08:52', null);
  3839. INSERT INTO `ibrand_goods_product` VALUES ('496', '67', '0', 'KS1677-1', '68.00', '98.00', null, null, '0', '[\"4\",\"40\"]', '2018-05-16 10:12:03', '2018-05-16 10:12:03', null);
  3840. INSERT INTO `ibrand_goods_product` VALUES ('497', '67', '0', 'KS1677-2', '68.00', '98.00', null, null, '0', '[\"4\",\"41\"]', '2018-05-16 10:12:03', '2018-05-16 10:12:03', null);
  3841. INSERT INTO `ibrand_goods_product` VALUES ('498', '67', '0', 'KS1677-3', '68.00', '98.00', null, null, '0', '[\"4\",\"42\"]', '2018-05-16 10:12:03', '2018-05-16 10:12:03', null);
  3842. INSERT INTO `ibrand_goods_product` VALUES ('499', '67', '0', 'KS1677-4', '68.00', '98.00', null, null, '0', '[\"4\",\"43\"]', '2018-05-16 10:12:03', '2018-05-16 10:12:03', null);
  3843. INSERT INTO `ibrand_goods_product` VALUES ('500', '67', '0', 'KS1677-5', '68.00', '98.00', null, null, '0', '[\"4\",\"44\"]', '2018-05-16 10:12:04', '2018-05-16 10:12:04', null);
  3844. INSERT INTO `ibrand_goods_product` VALUES ('501', '67', '0', 'KS1677-6', '79.00', '125.00', null, null, '0', '[\"4\",\"49\"]', '2018-05-16 10:12:04', '2018-05-16 10:12:04', null);
  3845. INSERT INTO `ibrand_goods_product` VALUES ('502', '67', '0', 'KS1677-7', '79.00', '125.00', null, null, '0', '[\"4\",\"50\"]', '2018-05-16 10:12:04', '2018-05-16 10:12:04', null);
  3846. INSERT INTO `ibrand_goods_product` VALUES ('503', '67', '0', 'KS1677-8', '68.00', '98.00', null, null, '0', '[\"11\",\"40\"]', '2018-05-16 10:12:04', '2018-05-16 10:12:04', null);
  3847. INSERT INTO `ibrand_goods_product` VALUES ('504', '67', '0', 'KS1677-9', '68.00', '98.00', null, null, '0', '[\"11\",\"41\"]', '2018-05-16 10:12:04', '2018-05-16 10:12:04', null);
  3848. INSERT INTO `ibrand_goods_product` VALUES ('505', '67', '0', 'KS1677-10', '68.00', '98.00', null, null, '0', '[\"11\",\"42\"]', '2018-05-16 10:12:04', '2018-05-16 10:12:04', null);
  3849. INSERT INTO `ibrand_goods_product` VALUES ('506', '67', '0', 'KS1677-11', '68.00', '98.00', null, null, '0', '[\"11\",\"43\"]', '2018-05-16 10:12:04', '2018-05-16 10:12:04', null);
  3850. INSERT INTO `ibrand_goods_product` VALUES ('507', '67', '0', 'KS1677-12', '68.00', '98.00', null, null, '0', '[\"11\",\"44\"]', '2018-05-16 10:12:04', '2018-05-16 10:12:04', null);
  3851. INSERT INTO `ibrand_goods_product` VALUES ('508', '67', '0', 'KS1677-13', '79.00', '125.00', null, null, '0', '[\"11\",\"49\"]', '2018-05-16 10:12:04', '2018-05-16 10:12:04', null);
  3852. INSERT INTO `ibrand_goods_product` VALUES ('509', '67', '0', 'KS1677-14', '79.00', '125.00', null, null, '0', '[\"11\",\"50\"]', '2018-05-16 10:12:04', '2018-05-16 10:12:04', null);
  3853. INSERT INTO `ibrand_goods_product` VALUES ('510', '67', '0', 'KS1677-15', '68.00', '98.00', null, null, '0', '[\"40\",\"46\"]', '2018-05-16 10:12:04', '2018-05-16 10:12:04', null);
  3854. INSERT INTO `ibrand_goods_product` VALUES ('511', '67', '0', 'KS1677-16', '68.00', '98.00', null, null, '0', '[\"41\",\"46\"]', '2018-05-16 10:12:04', '2018-05-16 10:12:04', null);
  3855. INSERT INTO `ibrand_goods_product` VALUES ('512', '67', '0', 'KS1677-17', '68.00', '98.00', null, null, '0', '[\"42\",\"46\"]', '2018-05-16 10:12:04', '2018-05-16 10:12:04', null);
  3856. INSERT INTO `ibrand_goods_product` VALUES ('513', '67', '0', 'KS1677-18', '68.00', '98.00', null, null, '0', '[\"43\",\"46\"]', '2018-05-16 10:12:04', '2018-05-16 10:12:04', null);
  3857. INSERT INTO `ibrand_goods_product` VALUES ('514', '67', '0', 'KS1677-19', '68.00', '98.00', null, null, '0', '[\"44\",\"46\"]', '2018-05-16 10:12:04', '2018-05-16 10:12:04', null);
  3858. INSERT INTO `ibrand_goods_product` VALUES ('515', '67', '0', 'KS1677-20', '79.00', '125.00', null, null, '0', '[\"46\",\"49\"]', '2018-05-16 10:12:04', '2018-05-16 10:12:04', null);
  3859. INSERT INTO `ibrand_goods_product` VALUES ('516', '67', '0', 'KS1677-21', '79.00', '125.00', null, null, '0', '[\"46\",\"50\"]', '2018-05-16 10:12:04', '2018-05-16 10:12:04', null);
  3860. INSERT INTO `ibrand_goods_product` VALUES ('517', '48', '100', 'KS1702-1', '68.00', '99.00', null, null, '1', '[\"1\",\"40\"]', '2018-05-16 10:21:29', '2018-05-16 10:21:29', null);
  3861. INSERT INTO `ibrand_goods_product` VALUES ('518', '48', '100', 'KS1702-2', '68.00', '99.00', null, null, '1', '[\"1\",\"41\"]', '2018-05-16 10:21:29', '2018-05-16 10:21:29', null);
  3862. INSERT INTO `ibrand_goods_product` VALUES ('519', '48', '100', 'KS1702-3', '68.00', '99.00', null, null, '1', '[\"1\",\"42\"]', '2018-05-16 10:21:29', '2018-05-16 10:21:29', null);
  3863. INSERT INTO `ibrand_goods_product` VALUES ('520', '48', '100', 'KS1702-4', '68.00', '99.00', null, null, '1', '[\"1\",\"43\"]', '2018-05-16 10:21:30', '2018-05-16 10:21:30', null);
  3864. INSERT INTO `ibrand_goods_product` VALUES ('521', '48', '100', 'KS1702-5', '68.00', '99.00', null, null, '1', '[\"1\",\"44\"]', '2018-05-16 10:21:30', '2018-05-16 10:21:30', null);
  3865. INSERT INTO `ibrand_goods_product` VALUES ('522', '48', '100', 'KS1702-10', '68.00', '99.00', null, null, '1', '[\"5\",\"40\"]', '2018-05-16 10:21:30', '2018-05-16 10:21:30', null);
  3866. INSERT INTO `ibrand_goods_product` VALUES ('523', '48', '99', 'KS1702-11', '68.00', '99.00', null, null, '1', '[\"5\",\"41\"]', '2018-05-16 10:21:30', '2018-05-16 10:30:03', null);
  3867. INSERT INTO `ibrand_goods_product` VALUES ('524', '48', '100', 'KS1702-12', '68.00', '99.00', null, null, '1', '[\"5\",\"42\"]', '2018-05-16 10:21:30', '2018-05-16 10:21:30', null);
  3868. INSERT INTO `ibrand_goods_product` VALUES ('525', '48', '100', 'KS1702-13', '68.00', '99.00', null, null, '1', '[\"5\",\"43\"]', '2018-05-16 10:21:30', '2018-05-16 10:21:30', null);
  3869. INSERT INTO `ibrand_goods_product` VALUES ('526', '48', '100', 'KS1702-14', '68.00', '99.00', null, null, '1', '[\"5\",\"44\"]', '2018-05-16 10:21:30', '2018-05-16 10:21:30', null);
  3870. INSERT INTO `ibrand_goods_product` VALUES ('527', '68', '10', 'KS1610-1', '139.00', '219.00', null, null, '1', '[\"17\",\"40\"]', '2018-05-16 10:21:53', '2018-05-18 17:59:23', null);
  3871. INSERT INTO `ibrand_goods_product` VALUES ('528', '68', '10', 'KS1610-2', '139.00', '219.00', null, null, '1', '[\"17\",\"41\"]', '2018-05-16 10:21:53', '2018-05-18 17:59:23', null);
  3872. INSERT INTO `ibrand_goods_product` VALUES ('529', '68', '10', 'KS1610-3', '139.00', '219.00', null, null, '1', '[\"17\",\"42\"]', '2018-05-16 10:21:53', '2018-05-18 17:59:23', null);
  3873. INSERT INTO `ibrand_goods_product` VALUES ('530', '68', '10', 'KS1610-4', '139.00', '219.00', null, null, '1', '[\"17\",\"43\"]', '2018-05-16 10:21:53', '2018-05-18 17:59:23', null);
  3874. INSERT INTO `ibrand_goods_product` VALUES ('531', '68', '10', 'KS1610-5', '139.00', '219.00', null, null, '1', '[\"17\",\"44\"]', '2018-05-16 10:21:53', '2018-05-18 17:59:23', null);
  3875. INSERT INTO `ibrand_goods_product` VALUES ('532', '54', '0', 'KS580-1', '59.00', '90.00', null, null, '0', '[\"1\",\"40\"]', '2018-05-16 10:26:17', '2018-05-16 10:26:17', null);
  3876. INSERT INTO `ibrand_goods_product` VALUES ('533', '54', '0', 'KS580-2', '59.00', '90.00', null, null, '0', '[\"1\",\"41\"]', '2018-05-16 10:26:17', '2018-05-16 10:26:17', null);
  3877. INSERT INTO `ibrand_goods_product` VALUES ('534', '54', '0', 'KS580-3', '59.00', '90.00', null, null, '0', '[\"1\",\"42\"]', '2018-05-16 10:26:17', '2018-05-16 10:26:17', null);
  3878. INSERT INTO `ibrand_goods_product` VALUES ('535', '54', '0', 'KS580-4', '59.00', '90.00', null, null, '0', '[\"1\",\"43\"]', '2018-05-16 10:26:17', '2018-05-16 10:26:17', null);
  3879. INSERT INTO `ibrand_goods_product` VALUES ('536', '54', '0', 'KS580-5', '59.00', '90.00', null, null, '0', '[\"1\",\"44\"]', '2018-05-16 10:26:17', '2018-05-16 10:26:17', null);
  3880. INSERT INTO `ibrand_goods_product` VALUES ('537', '54', '0', 'KS580-8', '59.00', '90.00', null, null, '0', '[\"40\",\"46\"]', '2018-05-16 10:26:17', '2018-05-16 10:26:17', null);
  3881. INSERT INTO `ibrand_goods_product` VALUES ('538', '54', '0', 'KS580-9', '59.00', '90.00', null, null, '0', '[\"41\",\"46\"]', '2018-05-16 10:26:17', '2018-05-16 10:26:17', null);
  3882. INSERT INTO `ibrand_goods_product` VALUES ('539', '54', '0', 'KS580-10', '59.00', '90.00', null, null, '0', '[\"42\",\"46\"]', '2018-05-16 10:26:17', '2018-05-16 10:26:17', null);
  3883. INSERT INTO `ibrand_goods_product` VALUES ('540', '54', '0', 'KS580-11', '59.00', '90.00', null, null, '0', '[\"43\",\"46\"]', '2018-05-16 10:26:17', '2018-05-16 10:26:17', null);
  3884. INSERT INTO `ibrand_goods_product` VALUES ('541', '54', '0', 'KS580-12', '59.00', '90.00', null, null, '0', '[\"44\",\"46\"]', '2018-05-16 10:26:17', '2018-05-16 10:26:17', null);
  3885. INSERT INTO `ibrand_goods_product` VALUES ('542', '69', '60', 'KS670-1', '98.00', '158.00', null, null, '1', '[\"4\",\"40\"]', '2018-05-16 10:38:51', '2018-05-16 10:38:51', null);
  3886. INSERT INTO `ibrand_goods_product` VALUES ('543', '69', '60', 'KS670-2', '98.00', '158.00', null, null, '1', '[\"4\",\"41\"]', '2018-05-16 10:38:51', '2018-05-16 10:38:51', null);
  3887. INSERT INTO `ibrand_goods_product` VALUES ('544', '69', '60', 'KS670-3', '98.00', '158.00', null, null, '1', '[\"4\",\"42\"]', '2018-05-16 10:38:51', '2018-05-16 10:38:51', null);
  3888. INSERT INTO `ibrand_goods_product` VALUES ('545', '69', '60', 'KS670-4', '98.00', '158.00', null, null, '1', '[\"4\",\"43\"]', '2018-05-16 10:38:51', '2018-05-16 10:38:51', null);
  3889. INSERT INTO `ibrand_goods_product` VALUES ('546', '69', '60', 'KS670-5', '98.00', '158.00', null, null, '1', '[\"4\",\"44\"]', '2018-05-16 10:38:51', '2018-05-16 10:38:51', null);
  3890. INSERT INTO `ibrand_goods_product` VALUES ('547', '69', '60', 'KS670-6', '98.00', '158.00', null, null, '1', '[\"37\",\"40\"]', '2018-05-16 10:38:51', '2018-05-16 10:38:51', null);
  3891. INSERT INTO `ibrand_goods_product` VALUES ('548', '69', '60', 'KS670-7', '98.00', '158.00', null, null, '1', '[\"37\",\"41\"]', '2018-05-16 10:38:51', '2018-05-16 10:38:51', null);
  3892. INSERT INTO `ibrand_goods_product` VALUES ('549', '69', '60', 'KS670-8', '98.00', '158.00', null, null, '1', '[\"37\",\"42\"]', '2018-05-16 10:38:51', '2018-05-16 10:38:51', null);
  3893. INSERT INTO `ibrand_goods_product` VALUES ('550', '69', '60', 'KS670-9', '98.00', '158.00', null, null, '1', '[\"37\",\"43\"]', '2018-05-16 10:38:51', '2018-05-16 10:38:51', null);
  3894. INSERT INTO `ibrand_goods_product` VALUES ('551', '69', '60', 'KS670-10', '98.00', '158.00', null, null, '1', '[\"37\",\"44\"]', '2018-05-16 10:38:51', '2018-05-16 10:38:51', null);
  3895. INSERT INTO `ibrand_goods_product` VALUES ('552', '70', '5', 'KS1707-1', '79.00', '129.00', null, null, '1', '[\"10\",\"40\"]', '2018-05-16 11:37:01', '2018-05-16 11:37:01', null);
  3896. INSERT INTO `ibrand_goods_product` VALUES ('553', '70', '5', 'KS1707-2', '79.00', '129.00', null, null, '1', '[\"10\",\"41\"]', '2018-05-16 11:37:01', '2018-05-16 11:37:01', null);
  3897. INSERT INTO `ibrand_goods_product` VALUES ('554', '70', '5', 'KS1707-3', '79.00', '129.00', null, null, '1', '[\"10\",\"42\"]', '2018-05-16 11:37:01', '2018-05-16 11:37:01', null);
  3898. INSERT INTO `ibrand_goods_product` VALUES ('555', '70', '5', 'KS1707-4', '79.00', '129.00', null, null, '1', '[\"10\",\"43\"]', '2018-05-16 11:37:01', '2018-05-16 11:37:01', null);
  3899. INSERT INTO `ibrand_goods_product` VALUES ('556', '70', '5', 'KS1707-5', '79.00', '129.00', null, null, '1', '[\"10\",\"44\"]', '2018-05-16 11:37:01', '2018-05-16 11:37:01', null);
  3900. INSERT INTO `ibrand_goods_product` VALUES ('557', '70', '5', 'KS1707-6', '79.00', '129.00', null, null, '1', '[\"34\",\"40\"]', '2018-05-16 11:37:01', '2018-05-18 18:01:58', null);
  3901. INSERT INTO `ibrand_goods_product` VALUES ('558', '70', '5', 'KS1707-7', '79.00', '129.00', null, null, '1', '[\"34\",\"41\"]', '2018-05-16 11:37:01', '2018-05-18 18:01:58', null);
  3902. INSERT INTO `ibrand_goods_product` VALUES ('559', '70', '5', 'KS1707-8', '79.00', '129.00', null, null, '1', '[\"34\",\"42\"]', '2018-05-16 11:37:01', '2018-05-18 18:01:58', null);
  3903. INSERT INTO `ibrand_goods_product` VALUES ('560', '70', '5', 'KS1707-9', '79.00', '129.00', null, null, '1', '[\"34\",\"43\"]', '2018-05-16 11:37:02', '2018-05-18 18:01:58', null);
  3904. INSERT INTO `ibrand_goods_product` VALUES ('561', '70', '5', 'KS1707-10', '79.00', '129.00', null, null, '1', '[\"34\",\"44\"]', '2018-05-16 11:37:02', '2018-05-18 18:01:58', null);
  3905. INSERT INTO `ibrand_goods_product` VALUES ('562', '70', '5', 'KS1707-11', '79.00', '129.00', null, null, '1', '[\"36\",\"40\"]', '2018-05-16 11:37:02', '2018-05-18 18:01:58', null);
  3906. INSERT INTO `ibrand_goods_product` VALUES ('563', '70', '5', 'KS1707-12', '79.00', '129.00', null, null, '1', '[\"36\",\"41\"]', '2018-05-16 11:37:02', '2018-05-18 18:01:58', null);
  3907. INSERT INTO `ibrand_goods_product` VALUES ('564', '70', '0', 'KS1707-13', '79.00', '129.00', null, null, '0', '[\"36\",\"42\"]', '2018-05-16 11:37:02', '2018-05-18 18:01:59', null);
  3908. INSERT INTO `ibrand_goods_product` VALUES ('565', '70', '0', 'KS1707-14', '79.00', '129.00', null, null, '0', '[\"36\",\"43\"]', '2018-05-16 11:37:02', '2018-05-18 18:01:59', null);
  3909. INSERT INTO `ibrand_goods_product` VALUES ('566', '70', '0', 'KS1707-15', '79.00', '129.00', null, null, '0', '[\"36\",\"44\"]', '2018-05-16 11:37:02', '2018-05-18 18:01:59', null);
  3910. INSERT INTO `ibrand_goods_product` VALUES ('567', '70', '5', 'KS1707-16', '79.00', '129.00', null, null, '1', '[\"40\",\"46\"]', '2018-05-16 11:37:02', '2018-05-18 18:01:59', null);
  3911. INSERT INTO `ibrand_goods_product` VALUES ('568', '70', '5', 'KS1707-17', '79.00', '129.00', null, null, '1', '[\"41\",\"46\"]', '2018-05-16 11:37:02', '2018-05-16 11:37:02', null);
  3912. INSERT INTO `ibrand_goods_product` VALUES ('569', '70', '5', 'KS1707-18', '79.00', '129.00', null, null, '1', '[\"42\",\"46\"]', '2018-05-16 11:37:02', '2018-05-18 18:01:59', null);
  3913. INSERT INTO `ibrand_goods_product` VALUES ('570', '70', '0', 'KS1707-19', '79.00', '129.00', null, null, '0', '[\"43\",\"46\"]', '2018-05-16 11:37:02', '2018-05-18 18:01:59', null);
  3914. INSERT INTO `ibrand_goods_product` VALUES ('571', '70', '5', 'KS1707-20', '79.00', '129.00', null, null, '1', '[\"44\",\"46\"]', '2018-05-16 11:37:02', '2018-05-18 18:01:59', null);
  3915. INSERT INTO `ibrand_goods_product` VALUES ('597', '72', '0', 'KS316-1', '78.00', '128.00', null, null, '1', '[\"4\",\"40\"]', '2018-05-16 11:55:31', '2018-05-16 11:55:31', null);
  3916. INSERT INTO `ibrand_goods_product` VALUES ('598', '72', '0', 'KS316-2', '78.00', '128.00', null, null, '1', '[\"4\",\"41\"]', '2018-05-16 11:55:31', '2018-05-16 11:55:31', null);
  3917. INSERT INTO `ibrand_goods_product` VALUES ('599', '72', '0', 'KS316-3', '78.00', '128.00', null, null, '1', '[\"4\",\"42\"]', '2018-05-16 11:55:31', '2018-05-16 11:55:31', null);
  3918. INSERT INTO `ibrand_goods_product` VALUES ('600', '72', '0', 'KS316-4', '78.00', '128.00', null, null, '1', '[\"4\",\"43\"]', '2018-05-16 11:55:31', '2018-05-16 11:55:31', null);
  3919. INSERT INTO `ibrand_goods_product` VALUES ('601', '72', '0', 'KS316-5', '78.00', '128.00', null, null, '1', '[\"4\",\"44\"]', '2018-05-16 11:55:31', '2018-05-16 11:55:31', null);
  3920. INSERT INTO `ibrand_goods_product` VALUES ('602', '72', '0', 'KS316-6', '78.00', '128.00', null, null, '1', '[\"17\",\"40\"]', '2018-05-16 11:55:31', '2018-05-16 11:55:31', null);
  3921. INSERT INTO `ibrand_goods_product` VALUES ('603', '72', '0', 'KS316-7', '78.00', '128.00', null, null, '1', '[\"17\",\"41\"]', '2018-05-16 11:55:31', '2018-05-16 11:55:31', null);
  3922. INSERT INTO `ibrand_goods_product` VALUES ('604', '72', '0', 'KS316-8', '78.00', '128.00', null, null, '1', '[\"17\",\"42\"]', '2018-05-16 11:55:31', '2018-05-16 11:55:31', null);
  3923. INSERT INTO `ibrand_goods_product` VALUES ('605', '72', '0', 'KS316-9', '78.00', '128.00', null, null, '1', '[\"17\",\"43\"]', '2018-05-16 11:55:31', '2018-05-16 11:55:31', null);
  3924. INSERT INTO `ibrand_goods_product` VALUES ('606', '72', '0', 'KS316-10', '78.00', '128.00', null, null, '1', '[\"17\",\"44\"]', '2018-05-16 11:55:31', '2018-05-16 11:55:31', null);
  3925. INSERT INTO `ibrand_goods_product` VALUES ('607', '72', '0', 'KS316-11', '78.00', '128.00', null, null, '1', '[\"18\",\"40\"]', '2018-05-16 11:55:31', '2018-05-16 11:55:31', null);
  3926. INSERT INTO `ibrand_goods_product` VALUES ('608', '72', '0', 'KS316-12', '78.00', '128.00', null, null, '1', '[\"18\",\"41\"]', '2018-05-16 11:55:31', '2018-05-16 11:55:31', null);
  3927. INSERT INTO `ibrand_goods_product` VALUES ('609', '72', '0', 'KS316-13', '78.00', '128.00', null, null, '1', '[\"18\",\"42\"]', '2018-05-16 11:55:31', '2018-05-16 11:55:31', null);
  3928. INSERT INTO `ibrand_goods_product` VALUES ('610', '72', '0', 'KS316-14', '78.00', '128.00', null, null, '1', '[\"18\",\"43\"]', '2018-05-16 11:55:31', '2018-05-16 11:55:31', null);
  3929. INSERT INTO `ibrand_goods_product` VALUES ('611', '72', '0', 'KS316-15', '78.00', '128.00', null, null, '1', '[\"18\",\"44\"]', '2018-05-16 11:55:32', '2018-05-16 11:55:32', null);
  3930. INSERT INTO `ibrand_goods_product` VALUES ('612', '72', '0', 'KS316-16', '78.00', '128.00', null, null, '1', '[\"40\",\"46\"]', '2018-05-16 11:55:32', '2018-05-16 11:55:32', null);
  3931. INSERT INTO `ibrand_goods_product` VALUES ('613', '72', '0', 'KS316-17', '78.00', '128.00', null, null, '1', '[\"41\",\"46\"]', '2018-05-16 11:55:32', '2018-05-16 11:55:32', null);
  3932. INSERT INTO `ibrand_goods_product` VALUES ('614', '72', '0', 'KS316-18', '78.00', '128.00', null, null, '1', '[\"42\",\"46\"]', '2018-05-16 11:55:32', '2018-05-16 11:55:32', null);
  3933. INSERT INTO `ibrand_goods_product` VALUES ('615', '72', '0', 'KS316-19', '78.00', '128.00', null, null, '1', '[\"43\",\"46\"]', '2018-05-16 11:55:32', '2018-05-16 11:55:32', null);
  3934. INSERT INTO `ibrand_goods_product` VALUES ('616', '72', '0', 'KS316-20', '78.00', '128.00', null, null, '1', '[\"44\",\"46\"]', '2018-05-16 11:55:32', '2018-05-16 11:55:32', null);
  3935. INSERT INTO `ibrand_goods_product` VALUES ('617', '72', '0', 'KS316-21', '78.00', '128.00', null, null, '1', '[\"40\",\"47\"]', '2018-05-16 11:55:32', '2018-05-16 11:55:32', null);
  3936. INSERT INTO `ibrand_goods_product` VALUES ('618', '72', '0', 'KS316-22', '78.00', '128.00', null, null, '1', '[\"41\",\"47\"]', '2018-05-16 11:55:32', '2018-05-16 11:55:32', null);
  3937. INSERT INTO `ibrand_goods_product` VALUES ('619', '72', '0', 'KS316-23', '78.00', '128.00', null, null, '1', '[\"42\",\"47\"]', '2018-05-16 11:55:32', '2018-05-16 11:55:32', null);
  3938. INSERT INTO `ibrand_goods_product` VALUES ('620', '72', '0', 'KS316-24', '78.00', '128.00', null, null, '1', '[\"43\",\"47\"]', '2018-05-16 11:55:32', '2018-05-16 11:55:32', null);
  3939. INSERT INTO `ibrand_goods_product` VALUES ('621', '72', '0', 'KS316-25', '78.00', '128.00', null, null, '1', '[\"44\",\"47\"]', '2018-05-16 11:55:32', '2018-05-16 11:55:32', null);
  3940. INSERT INTO `ibrand_goods_product` VALUES ('622', '73', '0', 'KS174-1', '88.00', '158.00', null, null, '1', '[\"18\",\"40\"]', '2018-05-16 12:11:45', '2018-05-16 12:11:45', null);
  3941. INSERT INTO `ibrand_goods_product` VALUES ('623', '73', '0', 'KS174-2', '88.00', '158.00', null, null, '1', '[\"18\",\"41\"]', '2018-05-16 12:11:45', '2018-05-16 12:11:45', null);
  3942. INSERT INTO `ibrand_goods_product` VALUES ('624', '73', '0', 'KS174-3', '88.00', '158.00', null, null, '1', '[\"18\",\"42\"]', '2018-05-16 12:11:45', '2018-05-16 12:11:45', null);
  3943. INSERT INTO `ibrand_goods_product` VALUES ('625', '73', '0', 'KS174-4', '88.00', '158.00', null, null, '1', '[\"18\",\"43\"]', '2018-05-16 12:11:45', '2018-05-16 12:11:45', null);
  3944. INSERT INTO `ibrand_goods_product` VALUES ('626', '73', '0', 'KS174-5', '88.00', '158.00', null, null, '1', '[\"18\",\"44\"]', '2018-05-16 12:11:45', '2018-05-16 12:11:45', null);
  3945. INSERT INTO `ibrand_goods_product` VALUES ('627', '73', '0', 'KS174-6', '88.00', '158.00', null, null, '1', '[\"38\",\"40\"]', '2018-05-16 12:11:45', '2018-05-16 12:11:45', null);
  3946. INSERT INTO `ibrand_goods_product` VALUES ('628', '73', '0', 'KS174-7', '88.00', '158.00', null, null, '1', '[\"38\",\"41\"]', '2018-05-16 12:11:45', '2018-05-16 12:11:45', null);
  3947. INSERT INTO `ibrand_goods_product` VALUES ('629', '73', '0', 'KS174-8', '88.00', '158.00', null, null, '1', '[\"38\",\"42\"]', '2018-05-16 12:11:45', '2018-05-16 12:11:45', null);
  3948. INSERT INTO `ibrand_goods_product` VALUES ('630', '73', '0', 'KS174-9', '88.00', '158.00', null, null, '1', '[\"38\",\"43\"]', '2018-05-16 12:11:45', '2018-05-16 12:11:45', null);
  3949. INSERT INTO `ibrand_goods_product` VALUES ('631', '73', '0', 'KS174-10', '88.00', '158.00', null, null, '1', '[\"38\",\"44\"]', '2018-05-16 12:11:46', '2018-05-16 12:11:46', null);
  3950. INSERT INTO `ibrand_goods_product` VALUES ('632', '73', '0', 'KS174-11', '88.00', '158.00', null, null, '1', '[\"40\",\"47\"]', '2018-05-16 12:11:46', '2018-05-16 12:11:46', null);
  3951. INSERT INTO `ibrand_goods_product` VALUES ('633', '73', '0', 'KS174-12', '88.00', '158.00', null, null, '1', '[\"41\",\"47\"]', '2018-05-16 12:11:46', '2018-05-16 12:11:46', null);
  3952. INSERT INTO `ibrand_goods_product` VALUES ('634', '73', '0', 'KS174-13', '88.00', '158.00', null, null, '1', '[\"42\",\"47\"]', '2018-05-16 12:11:46', '2018-05-16 12:11:46', null);
  3953. INSERT INTO `ibrand_goods_product` VALUES ('635', '73', '0', 'KS174-14', '88.00', '158.00', null, null, '1', '[\"43\",\"47\"]', '2018-05-16 12:11:46', '2018-05-16 12:11:46', null);
  3954. INSERT INTO `ibrand_goods_product` VALUES ('636', '73', '0', 'KS174-15', '88.00', '158.00', null, null, '1', '[\"44\",\"47\"]', '2018-05-16 12:11:46', '2018-05-16 12:11:46', null);
  3955. INSERT INTO `ibrand_goods_product` VALUES ('637', '74', '5', 'KS1591-1', '49.00', '79.00', null, null, '1', '[\"3\",\"40\"]', '2018-05-16 13:21:41', '2018-05-16 13:21:41', null);
  3956. INSERT INTO `ibrand_goods_product` VALUES ('638', '74', '5', 'KS1591-2', '49.00', '79.00', null, null, '1', '[\"3\",\"41\"]', '2018-05-16 13:21:41', '2018-05-16 13:21:41', null);
  3957. INSERT INTO `ibrand_goods_product` VALUES ('639', '74', '5', 'KS1591-3', '49.00', '79.00', null, null, '1', '[\"3\",\"43\"]', '2018-05-16 13:21:41', '2018-05-16 13:21:41', null);
  3958. INSERT INTO `ibrand_goods_product` VALUES ('640', '74', '5', 'KS1591-4', '49.00', '79.00', null, null, '1', '[\"3\",\"44\"]', '2018-05-16 13:21:41', '2018-05-16 13:21:41', null);
  3959. INSERT INTO `ibrand_goods_product` VALUES ('641', '74', '5', 'KS1591-5', '49.00', '79.00', null, null, '1', '[\"11\",\"40\"]', '2018-05-16 13:21:41', '2018-05-16 13:21:41', null);
  3960. INSERT INTO `ibrand_goods_product` VALUES ('642', '74', '5', 'KS1591-6', '49.00', '79.00', null, null, '1', '[\"11\",\"41\"]', '2018-05-16 13:21:41', '2018-05-16 13:21:41', null);
  3961. INSERT INTO `ibrand_goods_product` VALUES ('643', '74', '5', 'KS1591-7', '49.00', '79.00', null, null, '1', '[\"11\",\"43\"]', '2018-05-16 13:21:41', '2018-05-16 13:21:41', null);
  3962. INSERT INTO `ibrand_goods_product` VALUES ('644', '74', '5', 'KS1591-8', '49.00', '79.00', null, null, '1', '[\"11\",\"44\"]', '2018-05-16 13:21:41', '2018-05-16 13:21:41', null);
  3963. INSERT INTO `ibrand_goods_product` VALUES ('645', '74', '5', 'KS1591-9', '49.00', '79.00', null, null, '1', '[\"37\",\"40\"]', '2018-05-16 13:21:41', '2018-05-16 13:21:41', null);
  3964. INSERT INTO `ibrand_goods_product` VALUES ('646', '74', '5', 'KS1591-10', '49.00', '79.00', null, null, '1', '[\"37\",\"41\"]', '2018-05-16 13:21:42', '2018-05-16 13:21:42', null);
  3965. INSERT INTO `ibrand_goods_product` VALUES ('647', '74', '5', 'KS1591-11', '49.00', '79.00', null, null, '1', '[\"37\",\"43\"]', '2018-05-16 13:21:42', '2018-05-16 13:21:42', null);
  3966. INSERT INTO `ibrand_goods_product` VALUES ('648', '74', '5', 'KS1591-12', '49.00', '79.00', null, null, '1', '[\"37\",\"44\"]', '2018-05-16 13:21:42', '2018-05-16 13:21:42', null);
  3967. INSERT INTO `ibrand_goods_product` VALUES ('649', '75', '2', 'KS1607-1', '78.00', '128.00', null, null, '1', '[\"18\",\"40\"]', '2018-05-16 13:30:20', '2018-05-16 13:30:20', null);
  3968. INSERT INTO `ibrand_goods_product` VALUES ('650', '75', '2', 'KS1607-2', '78.00', '128.00', null, null, '1', '[\"18\",\"41\"]', '2018-05-16 13:30:20', '2018-05-16 13:30:20', null);
  3969. INSERT INTO `ibrand_goods_product` VALUES ('651', '75', '2', 'KS1607-3', '78.00', '128.00', null, null, '1', '[\"18\",\"42\"]', '2018-05-16 13:30:20', '2018-05-16 13:30:20', null);
  3970. INSERT INTO `ibrand_goods_product` VALUES ('652', '75', '2', 'KS1607-4', '78.00', '128.00', null, null, '1', '[\"18\",\"43\"]', '2018-05-16 13:30:20', '2018-05-16 13:30:20', null);
  3971. INSERT INTO `ibrand_goods_product` VALUES ('653', '75', '2', 'KS1607-5', '78.00', '128.00', null, null, '1', '[\"18\",\"44\"]', '2018-05-16 13:30:20', '2018-05-16 13:30:20', null);
  3972. INSERT INTO `ibrand_goods_product` VALUES ('654', '76', '80', 'KS666-1', '89.00', '139.00', null, null, '1', '[\"14\",\"40\"]', '2018-05-16 13:39:59', '2018-05-16 13:39:59', null);
  3973. INSERT INTO `ibrand_goods_product` VALUES ('655', '76', '80', 'KS666-2', '89.00', '139.00', null, null, '1', '[\"14\",\"41\"]', '2018-05-16 13:39:59', '2018-05-16 13:39:59', null);
  3974. INSERT INTO `ibrand_goods_product` VALUES ('656', '76', '80', 'KS666-3', '89.00', '139.00', null, null, '1', '[\"14\",\"42\"]', '2018-05-16 13:39:59', '2018-05-16 13:39:59', null);
  3975. INSERT INTO `ibrand_goods_product` VALUES ('657', '76', '80', 'KS666-4', '89.00', '139.00', null, null, '1', '[\"14\",\"43\"]', '2018-05-16 13:39:59', '2018-05-16 13:39:59', null);
  3976. INSERT INTO `ibrand_goods_product` VALUES ('658', '76', '80', 'KS666-5', '89.00', '139.00', null, null, '1', '[\"14\",\"44\"]', '2018-05-16 13:39:59', '2018-05-16 13:39:59', null);
  3977. INSERT INTO `ibrand_goods_product` VALUES ('659', '77', '4', 'test-1', '9.00', '29.00', null, null, '1', '[\"1\",\"40\"]', '2018-05-16 14:33:59', '2018-05-16 22:11:42', null);
  3978. INSERT INTO `ibrand_goods_product` VALUES ('660', '78', '5', '8172101193-1', '58.00', '79.00', null, null, '1', '[\"38\",\"40\"]', '2018-05-21 15:34:49', '2018-05-21 15:34:49', null);
  3979. INSERT INTO `ibrand_goods_product` VALUES ('661', '78', '5', '8172101193-2', '58.00', '79.00', null, null, '1', '[\"38\",\"41\"]', '2018-05-21 15:34:49', '2018-05-21 15:34:49', null);
  3980. INSERT INTO `ibrand_goods_product` VALUES ('662', '78', '5', '8172101193-3', '58.00', '79.00', null, null, '1', '[\"38\",\"42\"]', '2018-05-21 15:34:49', '2018-05-21 15:34:49', null);
  3981. INSERT INTO `ibrand_goods_product` VALUES ('663', '78', '5', '8172101193-4', '58.00', '79.00', null, null, '1', '[\"38\",\"43\"]', '2018-05-21 15:34:49', '2018-05-21 15:34:49', null);
  3982. INSERT INTO `ibrand_goods_product` VALUES ('664', '78', '5', '8172101193-5', '58.00', '79.00', null, null, '1', '[\"38\",\"44\"]', '2018-05-21 15:34:49', '2018-05-21 15:34:49', null);
  3983. INSERT INTO `ibrand_goods_product` VALUES ('665', '78', '5', '8172101193-6', '58.00', '79.00', null, null, '1', '[\"38\",\"45\"]', '2018-05-21 15:34:50', '2018-05-21 15:34:50', null);
  3984. INSERT INTO `ibrand_goods_product` VALUES ('666', '78', '5', '8172101193-7', '58.00', '79.00', null, null, '1', '[\"40\",\"46\"]', '2018-05-21 15:34:50', '2018-05-21 15:34:50', null);
  3985. INSERT INTO `ibrand_goods_product` VALUES ('667', '78', '5', '8172101193-8', '58.00', '79.00', null, null, '1', '[\"41\",\"46\"]', '2018-05-21 15:34:50', '2018-05-21 15:34:50', null);
  3986. INSERT INTO `ibrand_goods_product` VALUES ('668', '78', '5', '8172101193-9', '58.00', '79.00', null, null, '1', '[\"42\",\"46\"]', '2018-05-21 15:34:50', '2018-05-21 15:34:50', null);
  3987. INSERT INTO `ibrand_goods_product` VALUES ('669', '78', '5', '8172101193-10', '58.00', '79.00', null, null, '1', '[\"43\",\"46\"]', '2018-05-21 15:34:50', '2018-05-21 15:34:50', null);
  3988. INSERT INTO `ibrand_goods_product` VALUES ('670', '78', '5', '8172101193-11', '58.00', '79.00', null, null, '1', '[\"44\",\"46\"]', '2018-05-21 15:34:50', '2018-05-21 15:34:50', null);
  3989. INSERT INTO `ibrand_goods_product` VALUES ('671', '78', '5', '8172101193-12', '58.00', '79.00', null, null, '1', '[\"45\",\"46\"]', '2018-05-21 15:34:50', '2018-05-21 15:34:50', null);
  3990. INSERT INTO `ibrand_goods_product` VALUES ('672', '79', '100', 'KS1781-1', '88.00', '134.00', null, null, '1', '[\"17\",\"40\"]', '2018-05-21 15:35:37', '2018-05-21 15:35:37', null);
  3991. INSERT INTO `ibrand_goods_product` VALUES ('673', '79', '100', 'KS1781-2', '88.00', '134.00', null, null, '1', '[\"17\",\"41\"]', '2018-05-21 15:35:37', '2018-05-21 15:35:37', null);
  3992. INSERT INTO `ibrand_goods_product` VALUES ('674', '79', '100', 'KS1781-3', '88.00', '134.00', null, null, '1', '[\"17\",\"42\"]', '2018-05-21 15:35:37', '2018-05-21 15:35:37', null);
  3993. INSERT INTO `ibrand_goods_product` VALUES ('675', '79', '100', 'KS1781-4', '88.00', '134.00', null, null, '1', '[\"17\",\"43\"]', '2018-05-21 15:35:37', '2018-05-21 15:35:37', null);
  3994. INSERT INTO `ibrand_goods_product` VALUES ('676', '79', '100', 'KS1781-5', '88.00', '134.00', null, null, '1', '[\"17\",\"44\"]', '2018-05-21 15:35:37', '2018-05-21 15:35:37', null);
  3995. INSERT INTO `ibrand_goods_product` VALUES ('677', '80', '100', 'KS1582-1', '98.00', '150.00', null, null, '1', '[\"17\",\"40\"]', '2018-05-21 15:53:01', '2018-05-21 15:53:01', null);
  3996. INSERT INTO `ibrand_goods_product` VALUES ('678', '80', '100', 'KS1582-2', '98.00', '150.00', null, null, '1', '[\"17\",\"41\"]', '2018-05-21 15:53:01', '2018-05-21 15:53:01', null);
  3997. INSERT INTO `ibrand_goods_product` VALUES ('679', '80', '100', 'KS1582-3', '98.00', '150.00', null, null, '1', '[\"17\",\"42\"]', '2018-05-21 15:53:01', '2018-05-21 15:53:01', null);
  3998. INSERT INTO `ibrand_goods_product` VALUES ('680', '80', '100', 'KS1582-4', '98.00', '150.00', null, null, '1', '[\"17\",\"43\"]', '2018-05-21 15:53:01', '2018-05-21 15:53:01', null);
  3999. INSERT INTO `ibrand_goods_product` VALUES ('681', '80', '100', 'KS1582-5', '98.00', '150.00', null, null, '1', '[\"17\",\"44\"]', '2018-05-21 15:53:01', '2018-05-21 15:53:01', null);
  4000. INSERT INTO `ibrand_goods_product` VALUES ('682', '81', '100', '17189-1', '69.00', '99.00', null, null, '1', '[\"4\",\"40\"]', '2018-05-21 15:54:33', '2018-05-21 15:54:33', null);
  4001. INSERT INTO `ibrand_goods_product` VALUES ('683', '81', '100', '17189-2', '69.00', '99.00', null, null, '1', '[\"4\",\"41\"]', '2018-05-21 15:54:33', '2018-05-21 15:54:33', null);
  4002. INSERT INTO `ibrand_goods_product` VALUES ('684', '81', '100', '17189-3', '69.00', '99.00', null, null, '1', '[\"4\",\"42\"]', '2018-05-21 15:54:33', '2018-05-21 15:54:33', null);
  4003. INSERT INTO `ibrand_goods_product` VALUES ('685', '81', '100', '17189-4', '69.00', '99.00', null, null, '1', '[\"4\",\"43\"]', '2018-05-21 15:54:33', '2018-05-21 15:54:33', null);
  4004. INSERT INTO `ibrand_goods_product` VALUES ('686', '81', '100', '17189-5', '69.00', '99.00', null, null, '1', '[\"4\",\"44\"]', '2018-05-21 15:54:33', '2018-05-21 15:54:33', null);
  4005. INSERT INTO `ibrand_goods_product` VALUES ('687', '81', '100', '17189-6', '69.00', '99.00', null, null, '1', '[\"20\",\"40\"]', '2018-05-21 15:54:34', '2018-05-21 15:54:34', null);
  4006. INSERT INTO `ibrand_goods_product` VALUES ('688', '81', '100', '17189-7', '69.00', '99.00', null, null, '1', '[\"20\",\"41\"]', '2018-05-21 15:54:34', '2018-05-21 15:54:34', null);
  4007. INSERT INTO `ibrand_goods_product` VALUES ('689', '81', '100', '17189-8', '69.00', '99.00', null, null, '1', '[\"20\",\"42\"]', '2018-05-21 15:54:34', '2018-05-21 15:54:34', null);
  4008. INSERT INTO `ibrand_goods_product` VALUES ('690', '81', '100', '17189-9', '69.00', '99.00', null, null, '1', '[\"20\",\"43\"]', '2018-05-21 15:54:34', '2018-05-21 15:54:34', null);
  4009. INSERT INTO `ibrand_goods_product` VALUES ('691', '81', '100', '17189-10', '69.00', '99.00', null, null, '1', '[\"20\",\"44\"]', '2018-05-21 15:54:34', '2018-05-21 15:54:34', null);
  4010. INSERT INTO `ibrand_goods_product` VALUES ('692', '81', '100', '17189-11', '69.00', '99.00', null, null, '1', '[\"40\",\"46\"]', '2018-05-21 15:54:34', '2018-05-21 15:54:34', null);
  4011. INSERT INTO `ibrand_goods_product` VALUES ('693', '81', '100', '17189-12', '69.00', '99.00', null, null, '1', '[\"41\",\"46\"]', '2018-05-21 15:54:34', '2018-05-21 15:54:34', null);
  4012. INSERT INTO `ibrand_goods_product` VALUES ('694', '81', '100', '17189-13', '69.00', '99.00', null, null, '1', '[\"42\",\"46\"]', '2018-05-21 15:54:34', '2018-05-21 15:54:34', null);
  4013. INSERT INTO `ibrand_goods_product` VALUES ('695', '81', '100', '17189-14', '69.00', '99.00', null, null, '1', '[\"43\",\"46\"]', '2018-05-21 15:54:34', '2018-05-21 15:54:34', null);
  4014. INSERT INTO `ibrand_goods_product` VALUES ('696', '81', '100', '17189-15', '69.00', '99.00', null, null, '1', '[\"44\",\"46\"]', '2018-05-21 15:54:34', '2018-05-21 15:54:34', null);
  4015. INSERT INTO `ibrand_goods_product` VALUES ('697', '81', '100', '17189-16', '69.00', '99.00', null, null, '1', '[\"40\",\"47\"]', '2018-05-21 15:54:34', '2018-05-21 15:54:34', null);
  4016. INSERT INTO `ibrand_goods_product` VALUES ('698', '81', '100', '17189-17', '69.00', '99.00', null, null, '1', '[\"41\",\"47\"]', '2018-05-21 15:54:34', '2018-05-21 15:54:34', null);
  4017. INSERT INTO `ibrand_goods_product` VALUES ('699', '81', '100', '17189-18', '69.00', '99.00', null, null, '1', '[\"42\",\"47\"]', '2018-05-21 15:54:34', '2018-05-21 15:54:34', null);
  4018. INSERT INTO `ibrand_goods_product` VALUES ('700', '81', '100', '17189-19', '69.00', '99.00', null, null, '1', '[\"43\",\"47\"]', '2018-05-21 15:54:34', '2018-05-21 15:54:34', null);
  4019. INSERT INTO `ibrand_goods_product` VALUES ('701', '81', '100', '17189-20', '69.00', '99.00', null, null, '1', '[\"44\",\"47\"]', '2018-05-21 15:54:34', '2018-05-21 15:54:34', null);
  4020. INSERT INTO `ibrand_goods_product` VALUES ('702', '82', '100', '17078-1', '68.00', '98.00', null, null, '1', '[\"35\",\"40\"]', '2018-05-21 16:04:42', '2018-05-21 16:04:42', null);
  4021. INSERT INTO `ibrand_goods_product` VALUES ('703', '82', '100', '17078-2', '68.00', '98.00', null, null, '1', '[\"35\",\"41\"]', '2018-05-21 16:04:42', '2018-05-21 16:04:42', null);
  4022. INSERT INTO `ibrand_goods_product` VALUES ('704', '82', '100', '17078-3', '68.00', '98.00', null, null, '1', '[\"35\",\"42\"]', '2018-05-21 16:04:42', '2018-05-21 16:04:42', null);
  4023. INSERT INTO `ibrand_goods_product` VALUES ('705', '82', '100', '17078-4', '68.00', '98.00', null, null, '1', '[\"35\",\"43\"]', '2018-05-21 16:04:42', '2018-05-21 16:04:42', null);
  4024. INSERT INTO `ibrand_goods_product` VALUES ('706', '82', '100', '17078-5', '68.00', '98.00', null, null, '1', '[\"35\",\"44\"]', '2018-05-21 16:04:42', '2018-05-21 16:04:42', null);
  4025. INSERT INTO `ibrand_goods_product` VALUES ('707', '82', '100', '17078-6', '68.00', '98.00', null, null, '1', '[\"40\",\"46\"]', '2018-05-21 16:04:42', '2018-05-21 16:04:42', null);
  4026. INSERT INTO `ibrand_goods_product` VALUES ('708', '82', '100', '17078-7', '68.00', '98.00', null, null, '1', '[\"41\",\"46\"]', '2018-05-21 16:04:42', '2018-05-21 16:04:42', null);
  4027. INSERT INTO `ibrand_goods_product` VALUES ('709', '82', '100', '17078-8', '68.00', '98.00', null, null, '1', '[\"42\",\"46\"]', '2018-05-21 16:04:42', '2018-05-21 16:04:42', null);
  4028. INSERT INTO `ibrand_goods_product` VALUES ('710', '82', '100', '17078-9', '68.00', '98.00', null, null, '1', '[\"43\",\"46\"]', '2018-05-21 16:04:42', '2018-05-21 16:04:42', null);
  4029. INSERT INTO `ibrand_goods_product` VALUES ('711', '82', '100', '17078-10', '68.00', '98.00', null, null, '1', '[\"44\",\"46\"]', '2018-05-21 16:04:42', '2018-05-21 16:04:42', null);
  4030. INSERT INTO `ibrand_goods_product` VALUES ('712', '83', '100', 'KS1710-1', '59.00', '90.00', null, null, '1', '[\"4\",\"40\"]', '2018-05-21 16:06:29', '2018-05-21 16:06:29', null);
  4031. INSERT INTO `ibrand_goods_product` VALUES ('713', '83', '100', 'KS1710-2', '59.00', '90.00', null, null, '1', '[\"4\",\"41\"]', '2018-05-21 16:06:29', '2018-05-21 16:06:29', null);
  4032. INSERT INTO `ibrand_goods_product` VALUES ('714', '83', '100', 'KS1710-3', '59.00', '90.00', null, null, '1', '[\"4\",\"42\"]', '2018-05-21 16:06:29', '2018-05-21 16:06:29', null);
  4033. INSERT INTO `ibrand_goods_product` VALUES ('715', '83', '100', 'KS1710-4', '59.00', '90.00', null, null, '1', '[\"4\",\"43\"]', '2018-05-21 16:06:29', '2018-05-21 16:06:29', null);
  4034. INSERT INTO `ibrand_goods_product` VALUES ('716', '83', '100', 'KS1710-5', '59.00', '90.00', null, null, '1', '[\"4\",\"44\"]', '2018-05-21 16:06:29', '2018-05-21 16:06:29', null);
  4035. INSERT INTO `ibrand_goods_product` VALUES ('717', '83', '100', 'KS1710-6', '59.00', '90.00', null, null, '1', '[\"40\",\"46\"]', '2018-05-21 16:06:29', '2018-05-21 16:06:29', null);
  4036. INSERT INTO `ibrand_goods_product` VALUES ('718', '83', '100', 'KS1710-7', '59.00', '90.00', null, null, '1', '[\"41\",\"46\"]', '2018-05-21 16:06:29', '2018-05-21 16:06:29', null);
  4037. INSERT INTO `ibrand_goods_product` VALUES ('719', '83', '100', 'KS1710-8', '59.00', '90.00', null, null, '1', '[\"42\",\"46\"]', '2018-05-21 16:06:29', '2018-05-21 16:06:29', null);
  4038. INSERT INTO `ibrand_goods_product` VALUES ('720', '83', '100', 'KS1710-9', '59.00', '90.00', null, null, '1', '[\"43\",\"46\"]', '2018-05-21 16:06:29', '2018-05-21 16:06:29', null);
  4039. INSERT INTO `ibrand_goods_product` VALUES ('721', '83', '100', 'KS1710-10', '59.00', '90.00', null, null, '1', '[\"44\",\"46\"]', '2018-05-21 16:06:29', '2018-05-21 16:06:29', null);
  4040. INSERT INTO `ibrand_goods_product` VALUES ('722', '84', '100', '17180-1', '59.00', '118.00', null, null, '1', '[\"4\",\"40\"]', '2018-05-21 16:14:34', '2018-06-13 15:23:00', null);
  4041. INSERT INTO `ibrand_goods_product` VALUES ('723', '84', '100', '17180-2', '59.00', '118.00', null, null, '1', '[\"4\",\"41\"]', '2018-05-21 16:14:34', '2018-06-13 15:23:00', null);
  4042. INSERT INTO `ibrand_goods_product` VALUES ('724', '84', '100', '17180-3', '59.00', '118.00', null, null, '1', '[\"4\",\"42\"]', '2018-05-21 16:14:34', '2018-06-13 15:23:00', null);
  4043. INSERT INTO `ibrand_goods_product` VALUES ('725', '84', '100', '17180-4', '59.00', '118.00', null, null, '1', '[\"4\",\"43\"]', '2018-05-21 16:14:34', '2018-06-13 15:23:00', null);
  4044. INSERT INTO `ibrand_goods_product` VALUES ('726', '84', '100', '17180-5', '59.00', '118.00', null, null, '1', '[\"4\",\"44\"]', '2018-05-21 16:14:34', '2018-06-13 15:23:00', null);
  4045. INSERT INTO `ibrand_goods_product` VALUES ('727', '84', '100', '17180-6', '59.00', '118.00', null, null, '1', '[\"40\",\"46\"]', '2018-05-21 16:14:34', '2018-06-13 15:23:00', null);
  4046. INSERT INTO `ibrand_goods_product` VALUES ('728', '84', '100', '17180-7', '59.00', '118.00', null, null, '1', '[\"41\",\"46\"]', '2018-05-21 16:14:34', '2018-06-13 15:23:00', null);
  4047. INSERT INTO `ibrand_goods_product` VALUES ('729', '84', '100', '17180-8', '59.00', '118.00', null, null, '1', '[\"42\",\"46\"]', '2018-05-21 16:14:34', '2018-06-13 15:23:00', null);
  4048. INSERT INTO `ibrand_goods_product` VALUES ('730', '84', '100', '17180-9', '59.00', '118.00', null, null, '1', '[\"43\",\"46\"]', '2018-05-21 16:14:34', '2018-06-13 15:23:00', null);
  4049. INSERT INTO `ibrand_goods_product` VALUES ('731', '84', '100', '17180-10', '59.00', '118.00', null, null, '1', '[\"44\",\"46\"]', '2018-05-21 16:14:34', '2018-06-13 15:23:00', null);
  4050. INSERT INTO `ibrand_goods_product` VALUES ('752', '87', '100', 'KS1773-1', '59.00', '90.00', null, null, '1', '[\"4\",\"40\"]', '2018-05-21 16:19:54', '2018-05-21 16:19:54', null);
  4051. INSERT INTO `ibrand_goods_product` VALUES ('753', '87', '100', 'KS1773-2', '59.00', '90.00', null, null, '1', '[\"4\",\"41\"]', '2018-05-21 16:19:54', '2018-05-21 16:19:54', null);
  4052. INSERT INTO `ibrand_goods_product` VALUES ('754', '87', '100', 'KS1773-3', '59.00', '90.00', null, null, '1', '[\"4\",\"42\"]', '2018-05-21 16:19:54', '2018-05-21 16:19:54', null);
  4053. INSERT INTO `ibrand_goods_product` VALUES ('755', '87', '100', 'KS1773-4', '59.00', '90.00', null, null, '1', '[\"4\",\"43\"]', '2018-05-21 16:19:54', '2018-05-21 16:19:54', null);
  4054. INSERT INTO `ibrand_goods_product` VALUES ('756', '87', '100', 'KS1773-5', '59.00', '90.00', null, null, '1', '[\"4\",\"44\"]', '2018-05-21 16:19:54', '2018-05-21 16:19:54', null);
  4055. INSERT INTO `ibrand_goods_product` VALUES ('757', '87', '100', 'KS1773-6', '88.00', '136.00', null, null, '1', '[\"4\",\"49\"]', '2018-05-21 16:19:54', '2018-05-21 16:19:54', null);
  4056. INSERT INTO `ibrand_goods_product` VALUES ('758', '87', '100', 'KS1773-7', '88.00', '136.00', null, null, '1', '[\"4\",\"50\"]', '2018-05-21 16:19:54', '2018-05-21 16:19:54', null);
  4057. INSERT INTO `ibrand_goods_product` VALUES ('759', '87', '100', 'KS1773-8', '59.00', '90.00', null, null, '1', '[\"40\",\"47\"]', '2018-05-21 16:19:54', '2018-05-21 16:19:54', null);
  4058. INSERT INTO `ibrand_goods_product` VALUES ('760', '87', '100', 'KS1773-9', '59.00', '90.00', null, null, '1', '[\"41\",\"47\"]', '2018-05-21 16:19:54', '2018-05-21 16:19:54', null);
  4059. INSERT INTO `ibrand_goods_product` VALUES ('761', '87', '100', 'KS1773-10', '59.00', '90.00', null, null, '1', '[\"42\",\"47\"]', '2018-05-21 16:19:54', '2018-05-21 16:19:54', null);
  4060. INSERT INTO `ibrand_goods_product` VALUES ('762', '87', '100', 'KS1773-11', '59.00', '90.00', null, null, '1', '[\"43\",\"47\"]', '2018-05-21 16:19:54', '2018-05-21 16:19:54', null);
  4061. INSERT INTO `ibrand_goods_product` VALUES ('763', '87', '100', 'KS1773-12', '59.00', '90.00', null, null, '1', '[\"44\",\"47\"]', '2018-05-21 16:19:54', '2018-05-21 16:19:54', null);
  4062. INSERT INTO `ibrand_goods_product` VALUES ('764', '87', '100', 'KS1773-13', '88.00', '136.00', null, null, '1', '[\"47\",\"49\"]', '2018-05-21 16:19:54', '2018-05-21 16:19:54', null);
  4063. INSERT INTO `ibrand_goods_product` VALUES ('765', '87', '100', 'KS1773-14', '88.00', '136.00', null, null, '1', '[\"47\",\"50\"]', '2018-05-21 16:19:54', '2018-05-21 16:19:54', null);
  4064. INSERT INTO `ibrand_goods_product` VALUES ('766', '88', '100', 'KS1782-1', '59.00', '95.00', null, null, '1', '[\"18\",\"40\"]', '2018-05-21 16:33:38', '2018-05-21 16:33:38', null);
  4065. INSERT INTO `ibrand_goods_product` VALUES ('767', '88', '100', 'KS1782-2', '59.00', '95.00', null, null, '1', '[\"18\",\"41\"]', '2018-05-21 16:33:38', '2018-05-21 16:33:38', null);
  4066. INSERT INTO `ibrand_goods_product` VALUES ('768', '88', '100', 'KS1782-3', '59.00', '95.00', null, null, '1', '[\"18\",\"42\"]', '2018-05-21 16:33:38', '2018-05-21 16:33:38', null);
  4067. INSERT INTO `ibrand_goods_product` VALUES ('769', '88', '100', 'KS1782-4', '59.00', '95.00', null, null, '1', '[\"18\",\"43\"]', '2018-05-21 16:33:38', '2018-05-21 16:33:38', null);
  4068. INSERT INTO `ibrand_goods_product` VALUES ('770', '88', '100', 'KS1782-5', '59.00', '95.00', null, null, '1', '[\"18\",\"44\"]', '2018-05-21 16:33:38', '2018-05-21 16:33:38', null);
  4069. INSERT INTO `ibrand_goods_product` VALUES ('771', '88', '100', 'KS1782-6', '89.00', '145.00', null, null, '1', '[\"18\",\"49\"]', '2018-05-21 16:33:38', '2018-05-21 16:33:38', null);
  4070. INSERT INTO `ibrand_goods_product` VALUES ('772', '88', '100', 'KS1782-7', '89.00', '145.00', null, null, '1', '[\"18\",\"50\"]', '2018-05-21 16:33:38', '2018-05-21 16:33:38', null);
  4071. INSERT INTO `ibrand_goods_product` VALUES ('773', '88', '100', 'KS1782-8', '59.00', '145.00', null, null, '1', '[\"18\",\"51\"]', '2018-05-21 16:33:38', '2018-05-21 16:33:38', null);
  4072. INSERT INTO `ibrand_goods_product` VALUES ('774', '88', '100', 'KS1782-9', '59.00', '145.00', null, null, '1', '[\"18\",\"52\"]', '2018-05-21 16:33:38', '2018-05-21 16:33:38', null);
  4073. INSERT INTO `ibrand_goods_product` VALUES ('775', '88', '100', 'KS1782-10', '59.00', '95.00', null, null, '1', '[\"40\",\"46\"]', '2018-05-21 16:33:38', '2018-05-21 16:33:38', null);
  4074. INSERT INTO `ibrand_goods_product` VALUES ('776', '88', '100', 'KS1782-11', '59.00', '95.00', null, null, '1', '[\"41\",\"46\"]', '2018-05-21 16:33:38', '2018-05-21 16:33:38', null);
  4075. INSERT INTO `ibrand_goods_product` VALUES ('777', '88', '100', 'KS1782-12', '59.00', '95.00', null, null, '1', '[\"42\",\"46\"]', '2018-05-21 16:33:39', '2018-05-21 16:33:39', null);
  4076. INSERT INTO `ibrand_goods_product` VALUES ('778', '88', '100', 'KS1782-13', '59.00', '95.00', null, null, '1', '[\"43\",\"46\"]', '2018-05-21 16:33:39', '2018-05-21 16:33:39', null);
  4077. INSERT INTO `ibrand_goods_product` VALUES ('779', '88', '100', 'KS1782-14', '59.00', '95.00', null, null, '1', '[\"44\",\"46\"]', '2018-05-21 16:33:39', '2018-05-21 16:33:39', null);
  4078. INSERT INTO `ibrand_goods_product` VALUES ('780', '88', '100', 'KS1782-15', '89.00', '145.00', null, null, '1', '[\"46\",\"49\"]', '2018-05-21 16:33:39', '2018-05-21 16:33:39', null);
  4079. INSERT INTO `ibrand_goods_product` VALUES ('781', '88', '100', 'KS1782-16', '89.00', '145.00', null, null, '1', '[\"46\",\"50\"]', '2018-05-21 16:33:39', '2018-05-21 16:33:39', null);
  4080. INSERT INTO `ibrand_goods_product` VALUES ('782', '88', '100', 'KS1782-17', '89.00', '145.00', null, null, '1', '[\"46\",\"51\"]', '2018-05-21 16:33:39', '2018-05-21 16:33:39', null);
  4081. INSERT INTO `ibrand_goods_product` VALUES ('783', '88', '100', 'KS1782-18', '89.00', '145.00', null, null, '1', '[\"46\",\"52\"]', '2018-05-21 16:33:39', '2018-05-21 16:33:39', null);
  4082. INSERT INTO `ibrand_goods_product` VALUES ('784', '89', '20', 'un8ssiw061501-1', '98.00', '158.00', null, null, '1', '[\"6\",\"40\"]', '2018-05-21 16:39:49', '2018-05-21 16:39:49', null);
  4083. INSERT INTO `ibrand_goods_product` VALUES ('785', '89', '20', 'un8ssiw061501-2', '98.00', '158.00', null, null, '1', '[\"6\",\"41\"]', '2018-05-21 16:39:49', '2018-05-21 16:39:49', null);
  4084. INSERT INTO `ibrand_goods_product` VALUES ('786', '89', '20', 'un8ssiw061501-3', '98.00', '158.00', null, null, '1', '[\"6\",\"42\"]', '2018-05-21 16:39:49', '2018-05-21 16:39:49', null);
  4085. INSERT INTO `ibrand_goods_product` VALUES ('787', '89', '20', 'un8ssiw061501-4', '98.00', '158.00', null, null, '1', '[\"6\",\"43\"]', '2018-05-21 16:39:49', '2018-05-21 16:39:49', null);
  4086. INSERT INTO `ibrand_goods_product` VALUES ('788', '89', '20', 'un8ssiw061501-5', '98.00', '158.00', null, null, '1', '[\"6\",\"44\"]', '2018-05-21 16:39:49', '2018-05-21 16:39:49', null);
  4087. INSERT INTO `ibrand_goods_product` VALUES ('789', '89', '20', 'un8ssiw061501-6', '98.00', '158.00', null, null, '1', '[\"7\",\"40\"]', '2018-05-21 16:39:49', '2018-05-21 16:39:49', null);
  4088. INSERT INTO `ibrand_goods_product` VALUES ('790', '89', '20', 'un8ssiw061501-7', '98.00', '158.00', null, null, '1', '[\"7\",\"41\"]', '2018-05-21 16:39:49', '2018-05-21 16:39:49', null);
  4089. INSERT INTO `ibrand_goods_product` VALUES ('791', '89', '20', 'un8ssiw061501-8', '98.00', '158.00', null, null, '1', '[\"7\",\"42\"]', '2018-05-21 16:39:49', '2018-05-21 16:39:49', null);
  4090. INSERT INTO `ibrand_goods_product` VALUES ('792', '89', '20', 'un8ssiw061501-9', '98.00', '158.00', null, null, '1', '[\"7\",\"43\"]', '2018-05-21 16:39:49', '2018-05-21 16:39:49', null);
  4091. INSERT INTO `ibrand_goods_product` VALUES ('793', '89', '20', 'un8ssiw061501-10', '98.00', '158.00', null, null, '1', '[\"7\",\"44\"]', '2018-05-21 16:39:49', '2018-05-21 16:39:49', null);
  4092. INSERT INTO `ibrand_goods_product` VALUES ('794', '89', '20', 'un8ssiw061501-11', '98.00', '158.00', null, null, '1', '[\"15\",\"40\"]', '2018-05-21 16:39:49', '2018-05-21 16:39:49', null);
  4093. INSERT INTO `ibrand_goods_product` VALUES ('795', '89', '20', 'un8ssiw061501-12', '98.00', '158.00', null, null, '1', '[\"15\",\"41\"]', '2018-05-21 16:39:49', '2018-05-21 16:39:49', null);
  4094. INSERT INTO `ibrand_goods_product` VALUES ('796', '89', '20', 'un8ssiw061501-13', '98.00', '158.00', null, null, '1', '[\"15\",\"42\"]', '2018-05-21 16:39:49', '2018-05-21 16:39:49', null);
  4095. INSERT INTO `ibrand_goods_product` VALUES ('797', '89', '20', 'un8ssiw061501-14', '98.00', '158.00', null, null, '1', '[\"15\",\"43\"]', '2018-05-21 16:39:49', '2018-05-21 16:39:49', null);
  4096. INSERT INTO `ibrand_goods_product` VALUES ('798', '89', '20', 'un8ssiw061501-15', '98.00', '158.00', null, null, '1', '[\"15\",\"44\"]', '2018-05-21 16:39:49', '2018-05-21 16:39:49', null);
  4097. INSERT INTO `ibrand_goods_product` VALUES ('799', '89', '20', 'un8ssiw061501-16', '98.00', '158.00', null, null, '1', '[\"17\",\"40\"]', '2018-05-21 16:39:49', '2018-05-21 16:39:49', null);
  4098. INSERT INTO `ibrand_goods_product` VALUES ('800', '89', '20', 'un8ssiw061501-17', '98.00', '158.00', null, null, '1', '[\"17\",\"41\"]', '2018-05-21 16:39:49', '2018-05-21 16:39:49', null);
  4099. INSERT INTO `ibrand_goods_product` VALUES ('801', '89', '20', 'un8ssiw061501-18', '98.00', '158.00', null, null, '1', '[\"17\",\"42\"]', '2018-05-21 16:39:49', '2018-05-21 16:39:49', null);
  4100. INSERT INTO `ibrand_goods_product` VALUES ('802', '89', '20', 'un8ssiw061501-19', '98.00', '158.00', null, null, '1', '[\"17\",\"43\"]', '2018-05-21 16:39:49', '2018-05-21 16:39:49', null);
  4101. INSERT INTO `ibrand_goods_product` VALUES ('803', '89', '20', 'un8ssiw061501-20', '98.00', '158.00', null, null, '1', '[\"17\",\"44\"]', '2018-05-21 16:39:49', '2018-05-21 16:39:49', null);
  4102. INSERT INTO `ibrand_goods_product` VALUES ('804', '89', '20', 'un8ssiw061501-26', '98.00', '158.00', null, null, '1', '[\"22\",\"40\"]', '2018-05-21 16:39:49', '2018-05-21 16:39:49', null);
  4103. INSERT INTO `ibrand_goods_product` VALUES ('805', '89', '20', 'un8ssiw061501-27', '98.00', '158.00', null, null, '1', '[\"22\",\"41\"]', '2018-05-21 16:39:49', '2018-05-21 16:39:49', null);
  4104. INSERT INTO `ibrand_goods_product` VALUES ('806', '89', '20', 'un8ssiw061501-28', '98.00', '158.00', null, null, '1', '[\"22\",\"42\"]', '2018-05-21 16:39:49', '2018-05-21 16:39:49', null);
  4105. INSERT INTO `ibrand_goods_product` VALUES ('807', '89', '20', 'un8ssiw061501-29', '98.00', '158.00', null, null, '1', '[\"22\",\"43\"]', '2018-05-21 16:39:49', '2018-05-21 16:39:49', null);
  4106. INSERT INTO `ibrand_goods_product` VALUES ('808', '89', '20', 'un8ssiw061501-30', '98.00', '158.00', null, null, '1', '[\"22\",\"44\"]', '2018-05-21 16:39:49', '2018-05-21 16:39:49', null);
  4107. INSERT INTO `ibrand_goods_product` VALUES ('809', '89', '20', 'un8ssiw061501-21', '98.00', '158.00', null, null, '1', '[\"40\",\"47\"]', '2018-05-21 16:39:49', '2018-05-21 16:39:49', null);
  4108. INSERT INTO `ibrand_goods_product` VALUES ('810', '89', '20', 'un8ssiw061501-22', '98.00', '158.00', null, null, '1', '[\"41\",\"47\"]', '2018-05-21 16:39:49', '2018-05-21 16:39:49', null);
  4109. INSERT INTO `ibrand_goods_product` VALUES ('811', '89', '20', 'un8ssiw061501-23', '98.00', '158.00', null, null, '1', '[\"42\",\"47\"]', '2018-05-21 16:39:49', '2018-05-21 16:39:49', null);
  4110. INSERT INTO `ibrand_goods_product` VALUES ('812', '89', '20', 'un8ssiw061501-24', '98.00', '158.00', null, null, '1', '[\"43\",\"47\"]', '2018-05-21 16:39:49', '2018-05-21 16:39:49', null);
  4111. INSERT INTO `ibrand_goods_product` VALUES ('813', '89', '20', 'un8ssiw061501-25', '98.00', '158.00', null, null, '1', '[\"44\",\"47\"]', '2018-05-21 16:39:49', '2018-05-21 16:39:49', null);
  4112. INSERT INTO `ibrand_goods_product` VALUES ('814', '90', '0', '9092-1', '28.00', '38.00', null, null, '0', '[\"16\",\"40\"]', '2018-05-21 16:49:44', '2018-05-21 16:49:44', null);
  4113. INSERT INTO `ibrand_goods_product` VALUES ('815', '90', '0', '9092-2', '28.00', '38.00', null, null, '0', '[\"16\",\"41\"]', '2018-05-21 16:49:44', '2018-05-21 16:49:44', null);
  4114. INSERT INTO `ibrand_goods_product` VALUES ('816', '90', '0', '9092-3', '28.00', '38.00', null, null, '0', '[\"16\",\"42\"]', '2018-05-21 16:49:44', '2018-05-21 16:49:44', null);
  4115. INSERT INTO `ibrand_goods_product` VALUES ('817', '90', '0', '9092-4', '28.00', '38.00', null, null, '0', '[\"16\",\"43\"]', '2018-05-21 16:49:44', '2018-05-21 16:49:44', null);
  4116. INSERT INTO `ibrand_goods_product` VALUES ('818', '90', '0', '9092-5', '28.00', '38.00', null, null, '0', '[\"16\",\"44\"]', '2018-05-21 16:49:44', '2018-05-21 16:49:44', null);
  4117. INSERT INTO `ibrand_goods_product` VALUES ('819', '90', '0', '9092-6', '28.00', '38.00', null, null, '0', '[\"16\",\"45\"]', '2018-05-21 16:49:44', '2018-05-21 16:49:44', null);
  4118. INSERT INTO `ibrand_goods_product` VALUES ('820', '90', '1', '9092-7', '28.00', '38.00', null, null, '1', '[\"40\",\"46\"]', '2018-05-21 16:49:44', '2018-05-21 16:49:44', null);
  4119. INSERT INTO `ibrand_goods_product` VALUES ('821', '90', '5', '9092-8', '28.00', '38.00', null, null, '1', '[\"41\",\"46\"]', '2018-05-21 16:49:44', '2018-05-21 16:49:44', null);
  4120. INSERT INTO `ibrand_goods_product` VALUES ('822', '90', '3', '9092-9', '28.00', '38.00', null, null, '1', '[\"42\",\"46\"]', '2018-05-21 16:49:44', '2018-05-21 16:49:44', null);
  4121. INSERT INTO `ibrand_goods_product` VALUES ('823', '90', '3', '9092-10', '28.00', '38.00', null, null, '1', '[\"43\",\"46\"]', '2018-05-21 16:49:44', '2018-05-29 15:23:18', null);
  4122. INSERT INTO `ibrand_goods_product` VALUES ('824', '90', '0', '9092-11', '28.00', '38.00', null, null, '0', '[\"44\",\"46\"]', '2018-05-21 16:49:44', '2018-05-21 16:49:44', null);
  4123. INSERT INTO `ibrand_goods_product` VALUES ('825', '90', '0', '9092-12', '28.00', '38.00', null, null, '0', '[\"45\",\"46\"]', '2018-05-21 16:49:44', '2018-05-21 16:49:44', null);
  4124. INSERT INTO `ibrand_goods_product` VALUES ('826', '91', '10', 'un8sssw020501-1', '88.00', '138.00', null, null, '1', '[\"37\",\"39\"]', '2018-05-21 17:03:06', '2018-05-21 17:03:06', null);
  4125. INSERT INTO `ibrand_goods_product` VALUES ('827', '91', '50', 'un8sssw020501-2', '88.00', '138.00', null, null, '1', '[\"37\",\"40\"]', '2018-05-21 17:03:06', '2018-05-21 17:03:06', null);
  4126. INSERT INTO `ibrand_goods_product` VALUES ('828', '91', '50', 'un8sssw020501-3', '88.00', '138.00', null, null, '1', '[\"37\",\"41\"]', '2018-05-21 17:03:06', '2018-05-21 17:03:06', null);
  4127. INSERT INTO `ibrand_goods_product` VALUES ('829', '91', '50', 'un8sssw020501-4', '88.00', '138.00', null, null, '1', '[\"37\",\"42\"]', '2018-05-21 17:03:06', '2018-05-21 17:03:06', null);
  4128. INSERT INTO `ibrand_goods_product` VALUES ('830', '91', '50', 'un8sssw020501-5', '88.00', '138.00', null, null, '1', '[\"37\",\"43\"]', '2018-05-21 17:03:06', '2018-05-21 17:03:06', null);
  4129. INSERT INTO `ibrand_goods_product` VALUES ('831', '91', '50', 'un8sssw020501-6', '88.00', '138.00', null, null, '1', '[\"37\",\"44\"]', '2018-05-21 17:03:06', '2018-05-21 17:03:06', null);
  4130. INSERT INTO `ibrand_goods_product` VALUES ('832', '91', '50', 'un8sssw020501-7', '88.00', '138.00', null, null, '1', '[\"37\",\"45\"]', '2018-05-21 17:03:06', '2018-05-21 17:03:06', null);
  4131. INSERT INTO `ibrand_goods_product` VALUES ('833', '91', '10', 'un8sssw020501-8', '88.00', '138.00', null, null, '1', '[\"39\",\"47\"]', '2018-05-21 17:03:06', '2018-05-21 17:03:06', null);
  4132. INSERT INTO `ibrand_goods_product` VALUES ('834', '91', '50', 'un8sssw020501-9', '88.00', '138.00', null, null, '1', '[\"40\",\"47\"]', '2018-05-21 17:03:06', '2018-05-21 17:03:06', null);
  4133. INSERT INTO `ibrand_goods_product` VALUES ('835', '91', '50', 'un8sssw020501-10', '88.00', '138.00', null, null, '1', '[\"41\",\"47\"]', '2018-05-21 17:03:06', '2018-05-21 17:03:06', null);
  4134. INSERT INTO `ibrand_goods_product` VALUES ('836', '91', '50', 'un8sssw020501-11', '88.00', '138.00', null, null, '1', '[\"42\",\"47\"]', '2018-05-21 17:03:06', '2018-05-21 17:03:06', null);
  4135. INSERT INTO `ibrand_goods_product` VALUES ('837', '91', '50', 'un8sssw020501-12', '88.00', '138.00', null, null, '1', '[\"43\",\"47\"]', '2018-05-21 17:03:06', '2018-05-21 17:03:06', null);
  4136. INSERT INTO `ibrand_goods_product` VALUES ('838', '91', '50', 'un8sssw020501-13', '88.00', '138.00', null, null, '1', '[\"44\",\"47\"]', '2018-05-21 17:03:06', '2018-05-21 17:03:06', null);
  4137. INSERT INTO `ibrand_goods_product` VALUES ('839', '91', '50', 'un8sssw020501-14', '88.00', '138.00', null, null, '1', '[\"45\",\"47\"]', '2018-05-21 17:03:06', '2018-05-21 17:03:06', null);
  4138. INSERT INTO `ibrand_goods_product` VALUES ('840', '92', '50', '9075-1', '28.00', '38.00', null, null, '1', '[\"17\",\"40\"]', '2018-05-21 17:03:14', '2018-05-21 17:03:14', null);
  4139. INSERT INTO `ibrand_goods_product` VALUES ('841', '92', '50', '9075-2', '28.00', '38.00', null, null, '1', '[\"17\",\"41\"]', '2018-05-21 17:03:14', '2018-05-21 17:03:14', null);
  4140. INSERT INTO `ibrand_goods_product` VALUES ('842', '92', '50', '9075-3', '28.00', '38.00', null, null, '1', '[\"17\",\"42\"]', '2018-05-21 17:03:14', '2018-05-21 17:03:14', null);
  4141. INSERT INTO `ibrand_goods_product` VALUES ('843', '92', '49', '9075-4', '28.00', '38.00', null, null, '1', '[\"17\",\"43\"]', '2018-05-21 17:03:14', '2018-05-30 12:06:12', null);
  4142. INSERT INTO `ibrand_goods_product` VALUES ('844', '92', '50', '9075-5', '28.00', '38.00', null, null, '1', '[\"17\",\"44\"]', '2018-05-21 17:03:15', '2018-05-21 17:03:15', null);
  4143. INSERT INTO `ibrand_goods_product` VALUES ('845', '92', '20', '9075-6', '28.00', '38.00', null, null, '1', '[\"17\",\"45\"]', '2018-05-21 17:03:15', '2018-05-21 17:03:15', null);
  4144. INSERT INTO `ibrand_goods_product` VALUES ('846', '92', '10', '9075-7', '28.00', '38.00', null, null, '1', '[\"31\",\"40\"]', '2018-05-21 17:03:15', '2018-05-21 17:03:15', null);
  4145. INSERT INTO `ibrand_goods_product` VALUES ('847', '92', '50', '9075-8', '28.00', '38.00', null, null, '1', '[\"31\",\"41\"]', '2018-05-21 17:03:15', '2018-05-21 17:03:15', null);
  4146. INSERT INTO `ibrand_goods_product` VALUES ('848', '92', '20', '9075-9', '28.00', '38.00', null, null, '1', '[\"31\",\"42\"]', '2018-05-21 17:03:15', '2018-05-21 17:03:15', null);
  4147. INSERT INTO `ibrand_goods_product` VALUES ('849', '92', '20', '9075-10', '28.00', '38.00', null, null, '1', '[\"31\",\"43\"]', '2018-05-21 17:03:15', '2018-05-21 17:03:15', null);
  4148. INSERT INTO `ibrand_goods_product` VALUES ('850', '92', '20', '9075-11', '28.00', '38.00', null, null, '1', '[\"31\",\"44\"]', '2018-05-21 17:03:15', '2018-05-21 17:03:15', null);
  4149. INSERT INTO `ibrand_goods_product` VALUES ('851', '92', '0', '9075-12', '28.00', '38.00', null, null, '0', '[\"31\",\"45\"]', '2018-05-21 17:03:15', '2018-05-21 17:03:15', null);
  4150. INSERT INTO `ibrand_goods_product` VALUES ('852', '93', '30', '6205-1', '38.00', '55.00', null, null, '1', '[\"11\",\"40\"]', '2018-05-21 17:17:39', '2018-05-21 17:17:39', null);
  4151. INSERT INTO `ibrand_goods_product` VALUES ('853', '93', '20', '6205-2', '38.00', '55.00', null, null, '1', '[\"11\",\"41\"]', '2018-05-21 17:17:39', '2018-05-21 17:17:39', null);
  4152. INSERT INTO `ibrand_goods_product` VALUES ('854', '93', '10', '6205-3', '38.00', '55.00', null, null, '1', '[\"11\",\"42\"]', '2018-05-21 17:17:39', '2018-05-21 17:17:39', null);
  4153. INSERT INTO `ibrand_goods_product` VALUES ('855', '93', '10', '6205-4', '38.00', '55.00', null, null, '1', '[\"11\",\"43\"]', '2018-05-21 17:17:39', '2018-05-21 17:17:39', null);
  4154. INSERT INTO `ibrand_goods_product` VALUES ('856', '93', '3', '6205-5', '38.00', '55.00', null, null, '1', '[\"11\",\"44\"]', '2018-05-21 17:17:39', '2018-05-21 17:17:39', null);
  4155. INSERT INTO `ibrand_goods_product` VALUES ('857', '93', '0', '6205-6', '38.00', '55.00', null, null, '0', '[\"11\",\"45\"]', '2018-05-21 17:17:39', '2018-05-21 17:17:39', null);
  4156. INSERT INTO `ibrand_goods_product` VALUES ('858', '93', '30', '6205-7', '38.00', '55.00', null, null, '1', '[\"31\",\"40\"]', '2018-05-21 17:17:39', '2018-05-21 17:17:39', null);
  4157. INSERT INTO `ibrand_goods_product` VALUES ('859', '93', '50', '6205-8', '38.00', '55.00', null, null, '1', '[\"31\",\"41\"]', '2018-05-21 17:17:39', '2018-05-21 17:17:39', null);
  4158. INSERT INTO `ibrand_goods_product` VALUES ('860', '93', '50', '6205-9', '38.00', '55.00', null, null, '1', '[\"31\",\"42\"]', '2018-05-21 17:17:39', '2018-05-21 17:17:39', null);
  4159. INSERT INTO `ibrand_goods_product` VALUES ('861', '93', '50', '6205-10', '38.00', '55.00', null, null, '1', '[\"31\",\"43\"]', '2018-05-21 17:17:39', '2018-05-21 17:17:39', null);
  4160. INSERT INTO `ibrand_goods_product` VALUES ('862', '93', '30', '6205-11', '38.00', '55.00', null, null, '1', '[\"31\",\"44\"]', '2018-05-21 17:17:39', '2018-05-21 17:17:39', null);
  4161. INSERT INTO `ibrand_goods_product` VALUES ('863', '93', '40', '6205-12', '38.00', '55.00', null, null, '1', '[\"31\",\"45\"]', '2018-05-21 17:17:39', '2018-05-21 17:17:39', null);
  4162. INSERT INTO `ibrand_goods_product` VALUES ('864', '93', '30', '6205-13', '38.00', '55.00', null, null, '1', '[\"35\",\"40\"]', '2018-05-21 17:17:39', '2018-05-21 17:17:39', null);
  4163. INSERT INTO `ibrand_goods_product` VALUES ('865', '93', '50', '6205-14', '38.00', '55.00', null, null, '1', '[\"35\",\"41\"]', '2018-05-21 17:17:39', '2018-05-21 17:17:39', null);
  4164. INSERT INTO `ibrand_goods_product` VALUES ('866', '93', '50', '6205-15', '38.00', '55.00', null, null, '1', '[\"35\",\"42\"]', '2018-05-21 17:17:39', '2018-05-21 17:17:39', null);
  4165. INSERT INTO `ibrand_goods_product` VALUES ('867', '93', '50', '6205-16', '38.00', '55.00', null, null, '1', '[\"35\",\"43\"]', '2018-05-21 17:17:39', '2018-05-21 17:17:39', null);
  4166. INSERT INTO `ibrand_goods_product` VALUES ('868', '93', '30', '6205-17', '38.00', '55.00', null, null, '1', '[\"35\",\"44\"]', '2018-05-21 17:17:39', '2018-05-21 17:17:39', null);
  4167. INSERT INTO `ibrand_goods_product` VALUES ('869', '93', '30', '6205-18', '38.00', '55.00', null, null, '1', '[\"35\",\"45\"]', '2018-05-21 17:17:39', '2018-05-21 17:17:39', null);
  4168. INSERT INTO `ibrand_goods_product` VALUES ('870', '94', '10', 'un8sssw060601-1', '79.00', '129.00', null, null, '1', '[\"6\",\"40\"]', '2018-05-21 17:20:46', '2018-05-21 17:20:46', null);
  4169. INSERT INTO `ibrand_goods_product` VALUES ('871', '94', '10', 'un8sssw060601-2', '79.00', '129.00', null, null, '1', '[\"6\",\"41\"]', '2018-05-21 17:20:46', '2018-05-21 17:20:46', null);
  4170. INSERT INTO `ibrand_goods_product` VALUES ('872', '94', '10', 'un8sssw060601-3', '79.00', '129.00', null, null, '1', '[\"6\",\"42\"]', '2018-05-21 17:20:46', '2018-05-21 17:20:46', null);
  4171. INSERT INTO `ibrand_goods_product` VALUES ('873', '94', '10', 'un8sssw060601-4', '79.00', '129.00', null, null, '1', '[\"6\",\"43\"]', '2018-05-21 17:20:46', '2018-05-21 17:20:46', null);
  4172. INSERT INTO `ibrand_goods_product` VALUES ('874', '94', '10', 'un8sssw060601-5', '79.00', '129.00', null, null, '1', '[\"6\",\"44\"]', '2018-05-21 17:20:46', '2018-05-21 17:20:46', null);
  4173. INSERT INTO `ibrand_goods_product` VALUES ('875', '94', '10', 'un8sssw060601-6', '79.00', '129.00', null, null, '1', '[\"6\",\"45\"]', '2018-05-21 17:20:46', '2018-05-21 17:20:46', null);
  4174. INSERT INTO `ibrand_goods_product` VALUES ('876', '94', '10', 'un8sssw060601-7', '79.00', '129.00', null, null, '1', '[\"7\",\"40\"]', '2018-05-21 17:20:46', '2018-05-21 17:20:46', null);
  4175. INSERT INTO `ibrand_goods_product` VALUES ('877', '94', '10', 'un8sssw060601-8', '79.00', '129.00', null, null, '1', '[\"7\",\"41\"]', '2018-05-21 17:20:46', '2018-05-21 17:20:46', null);
  4176. INSERT INTO `ibrand_goods_product` VALUES ('878', '94', '10', 'un8sssw060601-9', '79.00', '129.00', null, null, '1', '[\"7\",\"42\"]', '2018-05-21 17:20:46', '2018-05-21 17:20:46', null);
  4177. INSERT INTO `ibrand_goods_product` VALUES ('879', '94', '10', 'un8sssw060601-10', '79.00', '129.00', null, null, '1', '[\"7\",\"43\"]', '2018-05-21 17:20:46', '2018-05-21 17:20:46', null);
  4178. INSERT INTO `ibrand_goods_product` VALUES ('880', '94', '10', 'un8sssw060601-11', '79.00', '129.00', null, null, '1', '[\"7\",\"44\"]', '2018-05-21 17:20:46', '2018-05-21 17:20:46', null);
  4179. INSERT INTO `ibrand_goods_product` VALUES ('881', '94', '10', 'un8sssw060601-12', '79.00', '129.00', null, null, '1', '[\"7\",\"45\"]', '2018-05-21 17:20:46', '2018-05-21 17:20:46', null);
  4180. INSERT INTO `ibrand_goods_product` VALUES ('882', '94', '10', 'un8sssw060601-13', '79.00', '129.00', null, null, '1', '[\"14\",\"40\"]', '2018-05-21 17:20:46', '2018-05-21 17:20:46', null);
  4181. INSERT INTO `ibrand_goods_product` VALUES ('883', '94', '10', 'un8sssw060601-14', '79.00', '129.00', null, null, '1', '[\"14\",\"41\"]', '2018-05-21 17:20:46', '2018-05-21 17:20:46', null);
  4182. INSERT INTO `ibrand_goods_product` VALUES ('884', '94', '10', 'un8sssw060601-15', '79.00', '129.00', null, null, '1', '[\"14\",\"42\"]', '2018-05-21 17:20:46', '2018-05-21 17:20:46', null);
  4183. INSERT INTO `ibrand_goods_product` VALUES ('885', '94', '10', 'un8sssw060601-16', '79.00', '129.00', null, null, '1', '[\"14\",\"43\"]', '2018-05-21 17:20:46', '2018-05-21 17:20:46', null);
  4184. INSERT INTO `ibrand_goods_product` VALUES ('886', '94', '10', 'un8sssw060601-17', '79.00', '129.00', null, null, '1', '[\"14\",\"44\"]', '2018-05-21 17:20:46', '2018-05-21 17:20:46', null);
  4185. INSERT INTO `ibrand_goods_product` VALUES ('887', '94', '10', 'un8sssw060601-18', '79.00', '129.00', null, null, '1', '[\"14\",\"45\"]', '2018-05-21 17:20:46', '2018-05-21 17:20:46', null);
  4186. INSERT INTO `ibrand_goods_product` VALUES ('888', '94', '10', 'un8sssw060601-19', '79.00', '129.00', null, null, '1', '[\"38\",\"40\"]', '2018-05-21 17:20:46', '2018-05-21 17:20:46', null);
  4187. INSERT INTO `ibrand_goods_product` VALUES ('889', '94', '10', 'un8sssw060601-20', '79.00', '129.00', null, null, '1', '[\"38\",\"41\"]', '2018-05-21 17:20:47', '2018-05-21 17:20:47', null);
  4188. INSERT INTO `ibrand_goods_product` VALUES ('890', '94', '10', 'un8sssw060601-21', '79.00', '129.00', null, null, '1', '[\"38\",\"42\"]', '2018-05-21 17:20:47', '2018-05-21 17:20:47', null);
  4189. INSERT INTO `ibrand_goods_product` VALUES ('891', '94', '10', 'un8sssw060601-22', '79.00', '129.00', null, null, '1', '[\"38\",\"43\"]', '2018-05-21 17:20:47', '2018-05-21 17:20:47', null);
  4190. INSERT INTO `ibrand_goods_product` VALUES ('892', '94', '10', 'un8sssw060601-23', '79.00', '129.00', null, null, '1', '[\"38\",\"44\"]', '2018-05-21 17:20:47', '2018-05-21 17:20:47', null);
  4191. INSERT INTO `ibrand_goods_product` VALUES ('893', '94', '10', 'un8sssw060601-24', '79.00', '129.00', null, null, '1', '[\"38\",\"45\"]', '2018-05-21 17:20:47', '2018-05-21 17:20:47', null);
  4192. INSERT INTO `ibrand_goods_product` VALUES ('894', '95', '5', '8172100283-1', '59.00', '79.00', null, null, '1', '[\"4\",\"40\"]', '2018-05-25 13:03:57', '2018-05-25 13:03:57', null);
  4193. INSERT INTO `ibrand_goods_product` VALUES ('895', '95', '5', '8172100283-2', '59.00', '79.00', null, null, '1', '[\"4\",\"41\"]', '2018-05-25 13:03:57', '2018-05-25 13:03:57', null);
  4194. INSERT INTO `ibrand_goods_product` VALUES ('896', '95', '5', '8172100283-3', '59.00', '79.00', null, null, '1', '[\"4\",\"42\"]', '2018-05-25 13:03:57', '2018-05-25 13:03:57', null);
  4195. INSERT INTO `ibrand_goods_product` VALUES ('897', '95', '5', '8172100283-4', '59.00', '79.00', null, null, '1', '[\"4\",\"43\"]', '2018-05-25 13:03:57', '2018-05-25 13:03:57', null);
  4196. INSERT INTO `ibrand_goods_product` VALUES ('898', '95', '5', '8172100283-5', '59.00', '79.00', null, null, '1', '[\"4\",\"44\"]', '2018-05-25 13:03:57', '2018-05-25 13:03:57', null);
  4197. INSERT INTO `ibrand_goods_product` VALUES ('899', '95', '10', '8172100283-6', '59.00', '79.00', null, null, '1', '[\"31\",\"40\"]', '2018-05-25 13:03:57', '2018-05-25 13:03:57', null);
  4198. INSERT INTO `ibrand_goods_product` VALUES ('900', '95', '5', '8172100283-7', '59.00', '79.00', null, null, '1', '[\"31\",\"41\"]', '2018-05-25 13:03:57', '2018-05-25 13:03:57', null);
  4199. INSERT INTO `ibrand_goods_product` VALUES ('901', '95', '5', '8172100283-8', '59.00', '79.00', null, null, '1', '[\"31\",\"42\"]', '2018-05-25 13:03:57', '2018-05-25 13:03:57', null);
  4200. INSERT INTO `ibrand_goods_product` VALUES ('902', '95', '10', '8172100283-9', '59.00', '79.00', null, null, '1', '[\"31\",\"43\"]', '2018-05-25 13:03:57', '2018-05-25 13:03:57', null);
  4201. INSERT INTO `ibrand_goods_product` VALUES ('903', '95', '10', '8172100283-10', '59.00', '79.00', null, null, '1', '[\"31\",\"44\"]', '2018-05-25 13:03:57', '2018-05-25 13:03:57', null);
  4202. INSERT INTO `ibrand_goods_product` VALUES ('904', '95', '5', '8172100283-11', '59.00', '79.00', null, null, '1', '[\"36\",\"40\"]', '2018-05-25 13:03:57', '2018-05-25 13:03:57', null);
  4203. INSERT INTO `ibrand_goods_product` VALUES ('905', '95', '5', '8172100283-12', '59.00', '79.00', null, null, '1', '[\"36\",\"41\"]', '2018-05-25 13:03:57', '2018-05-25 13:03:57', null);
  4204. INSERT INTO `ibrand_goods_product` VALUES ('906', '95', '5', '8172100283-13', '59.00', '79.00', null, null, '1', '[\"36\",\"42\"]', '2018-05-25 13:03:57', '2018-05-25 13:03:57', null);
  4205. INSERT INTO `ibrand_goods_product` VALUES ('907', '95', '5', '8172100283-14', '59.00', '79.00', null, null, '1', '[\"36\",\"43\"]', '2018-05-25 13:03:57', '2018-05-25 13:03:57', null);
  4206. INSERT INTO `ibrand_goods_product` VALUES ('908', '95', '5', '8172100283-15', '59.00', '79.00', null, null, '1', '[\"36\",\"44\"]', '2018-05-25 13:03:57', '2018-05-25 13:03:57', null);
  4207. INSERT INTO `ibrand_goods_product` VALUES ('909', '96', '5', '8182100133-1', '99.00', '145.00', null, null, '1', '[\"16\",\"40\"]', '2018-05-25 13:12:50', '2018-05-25 13:12:50', null);
  4208. INSERT INTO `ibrand_goods_product` VALUES ('910', '96', '10', '8182100133-2', '99.00', '145.00', null, null, '1', '[\"16\",\"41\"]', '2018-05-25 13:12:50', '2018-05-25 13:12:50', null);
  4209. INSERT INTO `ibrand_goods_product` VALUES ('911', '96', '10', '8182100133-3', '99.00', '145.00', null, null, '1', '[\"16\",\"42\"]', '2018-05-25 13:12:50', '2018-05-25 13:12:50', null);
  4210. INSERT INTO `ibrand_goods_product` VALUES ('912', '96', '10', '8182100133-4', '99.00', '145.00', null, null, '1', '[\"16\",\"43\"]', '2018-05-25 13:12:50', '2018-05-25 13:12:50', null);
  4211. INSERT INTO `ibrand_goods_product` VALUES ('913', '96', '10', '8182100133-5', '99.00', '145.00', null, null, '1', '[\"16\",\"44\"]', '2018-05-25 13:12:50', '2018-05-25 13:12:50', null);
  4212. INSERT INTO `ibrand_goods_product` VALUES ('914', '96', '5', '8182100133-6', '99.00', '145.00', null, null, '1', '[\"35\",\"40\"]', '2018-05-25 13:12:50', '2018-05-25 13:12:50', null);
  4213. INSERT INTO `ibrand_goods_product` VALUES ('915', '96', '5', '8182100133-7', '99.00', '145.00', null, null, '1', '[\"35\",\"41\"]', '2018-05-25 13:12:50', '2018-05-25 13:12:50', null);
  4214. INSERT INTO `ibrand_goods_product` VALUES ('916', '96', '5', '8182100133-8', '99.00', '145.00', null, null, '1', '[\"35\",\"42\"]', '2018-05-25 13:12:50', '2018-05-25 13:12:50', null);
  4215. INSERT INTO `ibrand_goods_product` VALUES ('917', '96', '10', '8182100133-9', '99.00', '145.00', null, null, '1', '[\"35\",\"43\"]', '2018-05-25 13:12:50', '2018-05-25 13:12:50', null);
  4216. INSERT INTO `ibrand_goods_product` VALUES ('918', '96', '5', '8182100133-10', '99.00', '145.00', null, null, '1', '[\"35\",\"44\"]', '2018-05-25 13:12:50', '2018-05-25 13:12:50', null);
  4217. INSERT INTO `ibrand_goods_product` VALUES ('919', '97', '0', '8182101293-1', '89.00', '135.00', null, null, '0', '[\"11\",\"40\"]', '2018-05-25 13:46:09', '2018-05-25 13:46:09', null);
  4218. INSERT INTO `ibrand_goods_product` VALUES ('920', '97', '10', '8182101293-2', '89.00', '135.00', null, null, '1', '[\"11\",\"41\"]', '2018-05-25 13:46:09', '2018-05-25 13:46:09', null);
  4219. INSERT INTO `ibrand_goods_product` VALUES ('921', '97', '10', '8182101293-3', '89.00', '135.00', null, null, '1', '[\"11\",\"42\"]', '2018-05-25 13:46:09', '2018-05-25 13:46:09', null);
  4220. INSERT INTO `ibrand_goods_product` VALUES ('922', '97', '10', '8182101293-4', '89.00', '135.00', null, null, '1', '[\"11\",\"43\"]', '2018-05-25 13:46:10', '2018-05-25 13:46:10', null);
  4221. INSERT INTO `ibrand_goods_product` VALUES ('923', '97', '10', '8182101293-5', '89.00', '135.00', null, null, '1', '[\"11\",\"44\"]', '2018-05-25 13:46:10', '2018-05-25 13:46:10', null);
  4222. INSERT INTO `ibrand_goods_product` VALUES ('924', '97', '0', '8182101293-6', '89.00', '135.00', null, null, '0', '[\"20\",\"40\"]', '2018-05-25 13:46:10', '2018-05-25 13:46:10', null);
  4223. INSERT INTO `ibrand_goods_product` VALUES ('925', '97', '5', '8182101293-7', '89.00', '135.00', null, null, '1', '[\"20\",\"41\"]', '2018-05-25 13:46:10', '2018-05-25 13:46:10', null);
  4224. INSERT INTO `ibrand_goods_product` VALUES ('926', '97', '5', '8182101293-8', '89.00', '135.00', null, null, '1', '[\"20\",\"42\"]', '2018-05-25 13:46:10', '2018-05-25 13:46:10', null);
  4225. INSERT INTO `ibrand_goods_product` VALUES ('927', '97', '5', '8182101293-9', '89.00', '135.00', null, null, '1', '[\"20\",\"43\"]', '2018-05-25 13:46:10', '2018-05-25 13:46:10', null);
  4226. INSERT INTO `ibrand_goods_product` VALUES ('928', '97', '5', '8182101293-10', '89.00', '135.00', null, null, '1', '[\"20\",\"44\"]', '2018-05-25 13:46:10', '2018-05-25 13:46:10', null);
  4227. INSERT INTO `ibrand_goods_product` VALUES ('929', '97', '0', '8182101293-11', '89.00', '135.00', null, null, '0', '[\"27\",\"40\"]', '2018-05-25 13:46:10', '2018-05-25 13:46:10', null);
  4228. INSERT INTO `ibrand_goods_product` VALUES ('930', '97', '10', '8182101293-12', '89.00', '135.00', null, null, '1', '[\"27\",\"41\"]', '2018-05-25 13:46:10', '2018-05-25 13:46:10', null);
  4229. INSERT INTO `ibrand_goods_product` VALUES ('931', '97', '10', '8182101293-13', '89.00', '135.00', null, null, '1', '[\"27\",\"42\"]', '2018-05-25 13:46:10', '2018-05-25 13:46:10', null);
  4230. INSERT INTO `ibrand_goods_product` VALUES ('932', '97', '10', '8182101293-14', '89.00', '135.00', null, null, '1', '[\"27\",\"43\"]', '2018-05-25 13:46:10', '2018-05-25 13:46:10', null);
  4231. INSERT INTO `ibrand_goods_product` VALUES ('933', '97', '10', '8182101293-15', '89.00', '135.00', null, null, '1', '[\"27\",\"44\"]', '2018-05-25 13:46:10', '2018-05-25 13:46:10', null);
  4232. INSERT INTO `ibrand_goods_product` VALUES ('934', '98', '5', '18182101333-1', '99.00', '145.00', null, null, '1', '[\"11\",\"40\"]', '2018-05-25 14:00:05', '2018-05-28 15:12:33', null);
  4233. INSERT INTO `ibrand_goods_product` VALUES ('935', '98', '5', '18182101333-2', '99.00', '145.00', null, null, '1', '[\"11\",\"41\"]', '2018-05-25 14:00:05', '2018-05-28 15:12:33', null);
  4234. INSERT INTO `ibrand_goods_product` VALUES ('936', '98', '5', '18182101333-3', '99.00', '145.00', null, null, '1', '[\"11\",\"42\"]', '2018-05-25 14:00:05', '2018-05-28 15:12:33', null);
  4235. INSERT INTO `ibrand_goods_product` VALUES ('937', '98', '5', '18182101333-4', '99.00', '145.00', null, null, '1', '[\"11\",\"43\"]', '2018-05-25 14:00:05', '2018-05-28 15:12:33', null);
  4236. INSERT INTO `ibrand_goods_product` VALUES ('938', '98', '5', '18182101333-5', '99.00', '145.00', null, null, '1', '[\"11\",\"44\"]', '2018-05-25 14:00:05', '2018-05-28 15:12:33', null);
  4237. INSERT INTO `ibrand_goods_product` VALUES ('939', '98', '5', '18182101333-6', '99.00', '145.00', null, null, '1', '[\"20\",\"40\"]', '2018-05-25 14:00:05', '2018-05-28 15:12:33', null);
  4238. INSERT INTO `ibrand_goods_product` VALUES ('940', '98', '10', '18182101333-7', '99.00', '145.00', null, null, '1', '[\"20\",\"41\"]', '2018-05-25 14:00:05', '2018-05-28 15:12:33', null);
  4239. INSERT INTO `ibrand_goods_product` VALUES ('941', '98', '10', '18182101333-8', '99.00', '145.00', null, null, '1', '[\"20\",\"42\"]', '2018-05-25 14:00:05', '2018-05-28 15:12:33', null);
  4240. INSERT INTO `ibrand_goods_product` VALUES ('942', '98', '10', '18182101333-9', '99.00', '145.00', null, null, '1', '[\"20\",\"43\"]', '2018-05-25 14:00:05', '2018-05-28 15:12:33', null);
  4241. INSERT INTO `ibrand_goods_product` VALUES ('943', '98', '10', '18182101333-10', '99.00', '145.00', null, null, '1', '[\"20\",\"44\"]', '2018-05-25 14:00:06', '2018-05-28 15:12:33', null);
  4242. INSERT INTO `ibrand_goods_product` VALUES ('944', '98', '1', '18182101333-11', '99.00', '145.00', null, null, '1', '[\"31\",\"40\"]', '2018-05-25 14:00:06', '2018-05-28 15:12:33', null);
  4243. INSERT INTO `ibrand_goods_product` VALUES ('945', '98', '5', '18182101333-12', '99.00', '145.00', null, null, '1', '[\"31\",\"41\"]', '2018-05-25 14:00:06', '2018-05-28 15:12:33', null);
  4244. INSERT INTO `ibrand_goods_product` VALUES ('946', '98', '0', '18182101333-13', '99.00', '145.00', null, null, '0', '[\"31\",\"42\"]', '2018-05-25 14:00:06', '2018-05-28 15:12:33', null);
  4245. INSERT INTO `ibrand_goods_product` VALUES ('947', '98', '1', '18182101333-14', '99.00', '145.00', null, null, '1', '[\"31\",\"43\"]', '2018-05-25 14:00:06', '2018-05-28 15:12:33', null);
  4246. INSERT INTO `ibrand_goods_product` VALUES ('948', '98', '5', '18182101333-15', '99.00', '145.00', null, null, '1', '[\"31\",\"44\"]', '2018-05-25 14:00:06', '2018-05-28 15:12:33', null);
  4247. INSERT INTO `ibrand_goods_product` VALUES ('949', '99', '20', '8182101323-1', '69.00', '105.00', null, null, '1', '[\"11\",\"40\"]', '2018-05-25 14:18:24', '2018-05-25 14:18:24', null);
  4248. INSERT INTO `ibrand_goods_product` VALUES ('950', '99', '20', '8182101323-2', '69.00', '105.00', null, null, '1', '[\"11\",\"41\"]', '2018-05-25 14:18:24', '2018-05-25 14:18:24', null);
  4249. INSERT INTO `ibrand_goods_product` VALUES ('951', '99', '20', '8182101323-3', '69.00', '105.00', null, null, '1', '[\"11\",\"42\"]', '2018-05-25 14:18:24', '2018-05-25 14:18:24', null);
  4250. INSERT INTO `ibrand_goods_product` VALUES ('952', '99', '20', '8182101323-4', '69.00', '105.00', null, null, '1', '[\"11\",\"43\"]', '2018-05-25 14:18:24', '2018-05-25 14:18:24', null);
  4251. INSERT INTO `ibrand_goods_product` VALUES ('953', '99', '20', '8182101323-5', '69.00', '105.00', null, null, '1', '[\"11\",\"44\"]', '2018-05-25 14:18:24', '2018-05-25 14:18:24', null);
  4252. INSERT INTO `ibrand_goods_product` VALUES ('954', '99', '20', '8182101323-6', '69.00', '105.00', null, null, '1', '[\"40\",\"46\"]', '2018-05-25 14:18:24', '2018-05-25 14:18:24', null);
  4253. INSERT INTO `ibrand_goods_product` VALUES ('955', '99', '20', '8182101323-7', '69.00', '105.00', null, null, '1', '[\"41\",\"46\"]', '2018-05-25 14:18:24', '2018-05-25 14:18:24', null);
  4254. INSERT INTO `ibrand_goods_product` VALUES ('956', '99', '20', '8182101323-8', '69.00', '105.00', null, null, '1', '[\"42\",\"46\"]', '2018-05-25 14:18:24', '2018-05-25 14:18:24', null);
  4255. INSERT INTO `ibrand_goods_product` VALUES ('957', '99', '20', '8182101323-9', '69.00', '105.00', null, null, '1', '[\"43\",\"46\"]', '2018-05-25 14:18:24', '2018-05-25 14:18:24', null);
  4256. INSERT INTO `ibrand_goods_product` VALUES ('958', '99', '20', '8182101323-10', '69.00', '105.00', null, null, '1', '[\"44\",\"46\"]', '2018-05-25 14:18:24', '2018-05-25 14:18:24', null);
  4257. INSERT INTO `ibrand_goods_product` VALUES ('959', '100', '5', '18172100373-1', '49.00', '75.00', null, null, '1', '[\"15\",\"40\"]', '2018-05-25 14:35:24', '2018-05-28 15:10:23', null);
  4258. INSERT INTO `ibrand_goods_product` VALUES ('960', '100', '5', '18172100373-2', '49.00', '75.00', null, null, '1', '[\"15\",\"41\"]', '2018-05-25 14:35:24', '2018-05-28 15:10:23', null);
  4259. INSERT INTO `ibrand_goods_product` VALUES ('961', '100', '5', '18172100373-3', '49.00', '75.00', null, null, '1', '[\"15\",\"42\"]', '2018-05-25 14:35:24', '2018-05-28 15:10:23', null);
  4260. INSERT INTO `ibrand_goods_product` VALUES ('962', '100', '5', '18172100373-4', '49.00', '75.00', null, null, '1', '[\"15\",\"43\"]', '2018-05-25 14:35:24', '2018-05-28 15:10:23', null);
  4261. INSERT INTO `ibrand_goods_product` VALUES ('963', '100', '5', '18172100373-5', '49.00', '75.00', null, null, '1', '[\"15\",\"44\"]', '2018-05-25 14:35:25', '2018-05-28 15:10:23', null);
  4262. INSERT INTO `ibrand_goods_product` VALUES ('964', '100', '5', '18172100373-6', '49.00', '75.00', null, null, '1', '[\"40\",\"46\"]', '2018-05-25 14:35:25', '2018-05-28 15:10:23', null);
  4263. INSERT INTO `ibrand_goods_product` VALUES ('965', '100', '5', '18172100373-7', '49.00', '75.00', null, null, '1', '[\"41\",\"46\"]', '2018-05-25 14:35:25', '2018-05-28 15:10:23', null);
  4264. INSERT INTO `ibrand_goods_product` VALUES ('966', '100', '5', '18172100373-8', '49.00', '75.00', null, null, '1', '[\"42\",\"46\"]', '2018-05-25 14:35:25', '2018-05-28 15:10:23', null);
  4265. INSERT INTO `ibrand_goods_product` VALUES ('967', '100', '5', '18172100373-9', '49.00', '75.00', null, null, '1', '[\"43\",\"46\"]', '2018-05-25 14:35:25', '2018-05-28 15:10:23', null);
  4266. INSERT INTO `ibrand_goods_product` VALUES ('968', '100', '5', '18172100373-10', '49.00', '75.00', null, null, '1', '[\"44\",\"46\"]', '2018-05-25 14:35:25', '2018-05-28 15:10:23', null);
  4267. INSERT INTO `ibrand_goods_product` VALUES ('969', '101', '0', '8182101223-1', '119.00', '190.00', null, null, '0', '[\"20\",\"40\"]', '2018-05-25 14:57:19', '2018-05-25 14:57:19', null);
  4268. INSERT INTO `ibrand_goods_product` VALUES ('970', '101', '2', '8182101223-2', '119.00', '190.00', null, null, '1', '[\"20\",\"41\"]', '2018-05-25 14:57:19', '2018-05-25 14:57:19', null);
  4269. INSERT INTO `ibrand_goods_product` VALUES ('971', '101', '0', '8182101223-3', '119.00', '190.00', null, null, '0', '[\"20\",\"42\"]', '2018-05-25 14:57:19', '2018-05-25 14:57:19', null);
  4270. INSERT INTO `ibrand_goods_product` VALUES ('972', '101', '0', '8182101223-4', '119.00', '190.00', null, null, '0', '[\"20\",\"43\"]', '2018-05-25 14:57:19', '2018-05-25 14:57:19', null);
  4271. INSERT INTO `ibrand_goods_product` VALUES ('973', '101', '5', '8182101223-5', '119.00', '190.00', null, null, '1', '[\"20\",\"44\"]', '2018-05-25 14:57:19', '2018-05-25 14:57:19', null);
  4272. INSERT INTO `ibrand_goods_product` VALUES ('974', '101', '0', '8182101223-6', '119.00', '190.00', null, null, '0', '[\"40\",\"46\"]', '2018-05-25 14:57:19', '2018-05-25 14:57:19', null);
  4273. INSERT INTO `ibrand_goods_product` VALUES ('975', '101', '2', '8182101223-7', '119.00', '190.00', null, null, '1', '[\"41\",\"46\"]', '2018-05-25 14:57:19', '2018-05-25 14:57:19', null);
  4274. INSERT INTO `ibrand_goods_product` VALUES ('976', '101', '0', '8182101223-8', '119.00', '190.00', null, null, '0', '[\"42\",\"46\"]', '2018-05-25 14:57:19', '2018-05-25 14:57:19', null);
  4275. INSERT INTO `ibrand_goods_product` VALUES ('977', '101', '5', '8182101223-9', '119.00', '190.00', null, null, '1', '[\"43\",\"46\"]', '2018-05-25 14:57:19', '2018-05-25 14:57:19', null);
  4276. INSERT INTO `ibrand_goods_product` VALUES ('978', '101', '2', '8182101223-10', '119.00', '190.00', null, null, '1', '[\"44\",\"46\"]', '2018-05-25 14:57:20', '2018-05-25 14:57:20', null);
  4277. INSERT INTO `ibrand_goods_product` VALUES ('979', '102', '1', '8182101533-1', '119.00', '190.00', null, null, '1', '[\"5\",\"40\"]', '2018-05-25 15:13:58', '2018-05-25 15:13:58', null);
  4278. INSERT INTO `ibrand_goods_product` VALUES ('980', '102', '3', '8182101533-2', '119.00', '190.00', null, null, '1', '[\"5\",\"41\"]', '2018-05-25 15:13:58', '2018-05-25 15:13:58', null);
  4279. INSERT INTO `ibrand_goods_product` VALUES ('981', '102', '5', '8182101533-3', '119.00', '190.00', null, null, '1', '[\"5\",\"42\"]', '2018-05-25 15:13:58', '2018-05-25 15:13:58', null);
  4280. INSERT INTO `ibrand_goods_product` VALUES ('982', '102', '5', '8182101533-4', '119.00', '190.00', null, null, '1', '[\"5\",\"43\"]', '2018-05-25 15:13:58', '2018-05-25 15:13:58', null);
  4281. INSERT INTO `ibrand_goods_product` VALUES ('983', '102', '5', '8182101533-5', '119.00', '190.00', null, null, '1', '[\"5\",\"44\"]', '2018-05-25 15:13:58', '2018-05-25 15:13:58', null);
  4282. INSERT INTO `ibrand_goods_product` VALUES ('984', '102', '0', '8182101533-6', '119.00', '190.00', null, null, '0', '[\"11\",\"40\"]', '2018-05-25 15:13:58', '2018-05-25 15:13:58', null);
  4283. INSERT INTO `ibrand_goods_product` VALUES ('985', '102', '3', '8182101533-7', '119.00', '190.00', null, null, '1', '[\"11\",\"41\"]', '2018-05-25 15:13:58', '2018-05-25 15:13:58', null);
  4284. INSERT INTO `ibrand_goods_product` VALUES ('986', '102', '5', '8182101533-8', '119.00', '190.00', null, null, '1', '[\"11\",\"42\"]', '2018-05-25 15:13:58', '2018-05-25 15:13:58', null);
  4285. INSERT INTO `ibrand_goods_product` VALUES ('987', '102', '3', '8182101533-9', '119.00', '190.00', null, null, '1', '[\"11\",\"43\"]', '2018-05-25 15:13:58', '2018-05-25 15:13:58', null);
  4286. INSERT INTO `ibrand_goods_product` VALUES ('988', '102', '5', '8182101533-10', '119.00', '190.00', null, null, '1', '[\"11\",\"44\"]', '2018-05-25 15:13:58', '2018-05-25 15:13:58', null);
  4287. INSERT INTO `ibrand_goods_product` VALUES ('989', '103', '5', '18182101233-1', '139.00', '219.00', null, null, '1', '[\"37\",\"40\"]', '2018-05-28 15:36:29', '2018-05-28 15:36:29', null);
  4288. INSERT INTO `ibrand_goods_product` VALUES ('990', '103', '10', '18182101233-2', '139.00', '219.00', null, null, '1', '[\"37\",\"41\"]', '2018-05-28 15:36:29', '2018-05-28 15:36:29', null);
  4289. INSERT INTO `ibrand_goods_product` VALUES ('991', '103', '10', '18182101233-3', '139.00', '219.00', null, null, '1', '[\"37\",\"42\"]', '2018-05-28 15:36:29', '2018-05-28 15:36:29', null);
  4290. INSERT INTO `ibrand_goods_product` VALUES ('992', '103', '10', '18182101233-4', '139.00', '219.00', null, null, '1', '[\"37\",\"43\"]', '2018-05-28 15:36:29', '2018-05-28 15:36:29', null);
  4291. INSERT INTO `ibrand_goods_product` VALUES ('993', '103', '10', '18182101233-5', '139.00', '219.00', null, null, '1', '[\"37\",\"44\"]', '2018-05-28 15:36:29', '2018-05-28 15:36:29', null);
  4292. INSERT INTO `ibrand_goods_product` VALUES ('994', '103', '5', '18182101233-6', '139.00', '219.00', null, null, '1', '[\"40\",\"46\"]', '2018-05-28 15:36:29', '2018-05-28 15:36:29', null);
  4293. INSERT INTO `ibrand_goods_product` VALUES ('995', '103', '10', '18182101233-7', '139.00', '219.00', null, null, '1', '[\"41\",\"46\"]', '2018-05-28 15:36:29', '2018-05-28 15:36:29', null);
  4294. INSERT INTO `ibrand_goods_product` VALUES ('996', '103', '10', '18182101233-8', '139.00', '219.00', null, null, '1', '[\"42\",\"46\"]', '2018-05-28 15:36:29', '2018-05-28 15:36:29', null);
  4295. INSERT INTO `ibrand_goods_product` VALUES ('997', '103', '10', '18182101233-9', '139.00', '219.00', null, null, '1', '[\"43\",\"46\"]', '2018-05-28 15:36:29', '2018-05-28 15:36:29', null);
  4296. INSERT INTO `ibrand_goods_product` VALUES ('998', '103', '10', '18182101233-10', '139.00', '219.00', null, null, '1', '[\"44\",\"46\"]', '2018-05-28 15:36:29', '2018-05-28 15:36:29', null);
  4297. INSERT INTO `ibrand_goods_product` VALUES ('999', '104', '1', '18172100073-1', '78.00', '118.00', null, null, '1', '[\"21\",\"40\"]', '2018-05-28 15:55:08', '2018-05-28 15:55:08', null);
  4298. INSERT INTO `ibrand_goods_product` VALUES ('1000', '104', '0', '18172100073-2', '78.00', '118.00', null, null, '0', '[\"21\",\"41\"]', '2018-05-28 15:55:08', '2018-05-28 15:55:08', null);
  4299. INSERT INTO `ibrand_goods_product` VALUES ('1001', '104', '0', '18172100073-3', '78.00', '118.00', null, null, '0', '[\"21\",\"42\"]', '2018-05-28 15:55:08', '2018-05-28 15:55:08', null);
  4300. INSERT INTO `ibrand_goods_product` VALUES ('1002', '104', '0', '18172100073-4', '78.00', '118.00', null, null, '0', '[\"21\",\"43\"]', '2018-05-28 15:55:08', '2018-05-28 15:55:08', null);
  4301. INSERT INTO `ibrand_goods_product` VALUES ('1003', '104', '0', '18172100073-5', '78.00', '118.00', null, null, '0', '[\"21\",\"44\"]', '2018-05-28 15:55:08', '2018-05-28 15:55:08', null);
  4302. INSERT INTO `ibrand_goods_product` VALUES ('1004', '104', '2', '18172100073-6', '78.00', '118.00', null, null, '1', '[\"27\",\"40\"]', '2018-05-28 15:55:08', '2018-05-28 15:55:08', null);
  4303. INSERT INTO `ibrand_goods_product` VALUES ('1005', '104', '3', '18172100073-7', '78.00', '118.00', null, null, '1', '[\"27\",\"41\"]', '2018-05-28 15:55:08', '2018-05-28 15:55:08', null);
  4304. INSERT INTO `ibrand_goods_product` VALUES ('1006', '104', '3', '18172100073-8', '78.00', '118.00', null, null, '1', '[\"27\",\"42\"]', '2018-05-28 15:55:08', '2018-05-28 15:55:08', null);
  4305. INSERT INTO `ibrand_goods_product` VALUES ('1007', '104', '2', '18172100073-9', '78.00', '118.00', null, null, '1', '[\"27\",\"43\"]', '2018-05-28 15:55:08', '2018-05-28 15:55:08', null);
  4306. INSERT INTO `ibrand_goods_product` VALUES ('1008', '104', '3', '18172100073-10', '78.00', '118.00', null, null, '1', '[\"27\",\"44\"]', '2018-05-28 15:55:08', '2018-05-28 15:55:08', null);
  4307. INSERT INTO `ibrand_goods_product` VALUES ('1009', '104', '2', '18172100073-11', '78.00', '118.00', null, null, '1', '[\"37\",\"40\"]', '2018-05-28 15:55:08', '2018-05-28 15:55:08', null);
  4308. INSERT INTO `ibrand_goods_product` VALUES ('1010', '104', '1', '18172100073-12', '78.00', '118.00', null, null, '1', '[\"37\",\"41\"]', '2018-05-28 15:55:08', '2018-05-28 15:55:08', null);
  4309. INSERT INTO `ibrand_goods_product` VALUES ('1011', '104', '0', '18172100073-13', '78.00', '118.00', null, null, '0', '[\"37\",\"42\"]', '2018-05-28 15:55:08', '2018-05-28 15:55:08', null);
  4310. INSERT INTO `ibrand_goods_product` VALUES ('1012', '104', '0', '18172100073-14', '78.00', '118.00', null, null, '0', '[\"37\",\"43\"]', '2018-05-28 15:55:08', '2018-05-28 15:55:08', null);
  4311. INSERT INTO `ibrand_goods_product` VALUES ('1013', '104', '2', '18172100073-15', '78.00', '118.00', null, null, '1', '[\"37\",\"44\"]', '2018-05-28 15:55:08', '2018-05-28 15:55:08', null);
  4312. INSERT INTO `ibrand_goods_product` VALUES ('1014', '105', '2', '18182101553-1', '119.00', '179.00', null, null, '1', '[\"7\",\"40\"]', '2018-05-28 17:52:26', '2018-05-28 17:52:26', null);
  4313. INSERT INTO `ibrand_goods_product` VALUES ('1015', '105', '5', '18182101553-2', '119.00', '179.00', null, null, '1', '[\"7\",\"41\"]', '2018-05-28 17:52:26', '2018-05-28 17:52:26', null);
  4314. INSERT INTO `ibrand_goods_product` VALUES ('1016', '105', '5', '18182101553-3', '119.00', '179.00', null, null, '1', '[\"7\",\"42\"]', '2018-05-28 17:52:27', '2018-05-28 17:52:27', null);
  4315. INSERT INTO `ibrand_goods_product` VALUES ('1017', '105', '5', '18182101553-4', '119.00', '179.00', null, null, '1', '[\"7\",\"43\"]', '2018-05-28 17:52:27', '2018-05-28 17:52:27', null);
  4316. INSERT INTO `ibrand_goods_product` VALUES ('1018', '105', '10', '18182101553-5', '119.00', '179.00', null, null, '1', '[\"7\",\"44\"]', '2018-05-28 17:52:27', '2018-05-28 17:52:27', null);
  4317. INSERT INTO `ibrand_goods_product` VALUES ('1019', '105', '0', '18182101553-6', '119.00', '179.00', null, null, '0', '[\"19\",\"40\"]', '2018-05-28 17:52:27', '2018-05-28 17:52:49', null);
  4318. INSERT INTO `ibrand_goods_product` VALUES ('1020', '105', '0', '18182101553-7', '119.00', '179.00', null, null, '0', '[\"19\",\"41\"]', '2018-05-28 17:52:27', '2018-05-28 17:52:49', null);
  4319. INSERT INTO `ibrand_goods_product` VALUES ('1021', '105', '0', '18182101553-8', '119.00', '179.00', null, null, '0', '[\"19\",\"42\"]', '2018-05-28 17:52:27', '2018-05-28 17:52:49', null);
  4320. INSERT INTO `ibrand_goods_product` VALUES ('1022', '105', '0', '18182101553-9', '119.00', '179.00', null, null, '0', '[\"19\",\"43\"]', '2018-05-28 17:52:27', '2018-05-28 17:52:49', null);
  4321. INSERT INTO `ibrand_goods_product` VALUES ('1023', '105', '0', '18182101553-10', '119.00', '179.00', null, null, '0', '[\"19\",\"44\"]', '2018-05-28 17:52:27', '2018-05-28 17:52:49', null);
  4322. INSERT INTO `ibrand_goods_product` VALUES ('1024', '106', '10', '8172100553-1', '59.00', '79.00', null, null, '1', '[\"22\",\"40\"]', '2018-05-28 18:03:05', '2018-05-28 18:03:05', null);
  4323. INSERT INTO `ibrand_goods_product` VALUES ('1025', '106', '10', '8172100553-2', '59.00', '79.00', null, null, '1', '[\"22\",\"41\"]', '2018-05-28 18:03:05', '2018-05-28 18:03:05', null);
  4324. INSERT INTO `ibrand_goods_product` VALUES ('1026', '106', '10', '8172100553-3', '59.00', '79.00', null, null, '1', '[\"22\",\"42\"]', '2018-05-28 18:03:05', '2018-05-28 18:03:05', null);
  4325. INSERT INTO `ibrand_goods_product` VALUES ('1027', '106', '10', '8172100553-4', '59.00', '79.00', null, null, '1', '[\"22\",\"43\"]', '2018-05-28 18:03:05', '2018-05-28 18:03:05', null);
  4326. INSERT INTO `ibrand_goods_product` VALUES ('1028', '106', '10', '8172100553-5', '59.00', '79.00', null, null, '1', '[\"22\",\"44\"]', '2018-05-28 18:03:05', '2018-05-28 18:03:05', null);
  4327. INSERT INTO `ibrand_goods_product` VALUES ('1029', '106', '2', '8172100553-6', '59.00', '79.00', null, null, '1', '[\"36\",\"40\"]', '2018-05-28 18:03:05', '2018-05-28 18:03:05', null);
  4328. INSERT INTO `ibrand_goods_product` VALUES ('1030', '106', '2', '8172100553-7', '59.00', '79.00', null, null, '1', '[\"36\",\"41\"]', '2018-05-28 18:03:05', '2018-05-28 18:03:05', null);
  4329. INSERT INTO `ibrand_goods_product` VALUES ('1031', '106', '1', '8172100553-8', '59.00', '79.00', null, null, '1', '[\"36\",\"42\"]', '2018-05-28 18:03:05', '2018-05-28 18:03:05', null);
  4330. INSERT INTO `ibrand_goods_product` VALUES ('1032', '106', '0', '8172100553-9', '59.00', '79.00', null, null, '0', '[\"36\",\"43\"]', '2018-05-28 18:03:05', '2018-05-28 18:03:05', null);
  4331. INSERT INTO `ibrand_goods_product` VALUES ('1033', '106', '0', '8172100553-10', '59.00', '79.00', null, null, '0', '[\"36\",\"44\"]', '2018-05-28 18:03:05', '2018-05-28 18:03:05', null);
  4332. INSERT INTO `ibrand_goods_product` VALUES ('1034', '107', '5', '8172101393-1', '49.00', '75.00', null, null, '1', '[\"4\",\"40\"]', '2018-05-28 18:11:36', '2018-05-28 18:11:36', null);
  4333. INSERT INTO `ibrand_goods_product` VALUES ('1035', '107', '5', '8172101393-2', '49.00', '75.00', null, null, '1', '[\"4\",\"41\"]', '2018-05-28 18:11:36', '2018-05-28 18:11:36', null);
  4334. INSERT INTO `ibrand_goods_product` VALUES ('1036', '107', '5', '8172101393-3', '49.00', '75.00', null, null, '1', '[\"4\",\"42\"]', '2018-05-28 18:11:36', '2018-05-28 18:11:36', null);
  4335. INSERT INTO `ibrand_goods_product` VALUES ('1037', '107', '5', '8172101393-4', '49.00', '75.00', null, null, '1', '[\"4\",\"43\"]', '2018-05-28 18:11:36', '2018-05-28 18:11:36', null);
  4336. INSERT INTO `ibrand_goods_product` VALUES ('1038', '107', '5', '8172101393-5', '49.00', '75.00', null, null, '1', '[\"4\",\"44\"]', '2018-05-28 18:11:36', '2018-05-28 18:11:36', null);
  4337. INSERT INTO `ibrand_goods_product` VALUES ('1039', '107', '10', '8172101393-6', '49.00', '75.00', null, null, '1', '[\"31\",\"40\"]', '2018-05-28 18:11:36', '2018-05-28 18:11:36', null);
  4338. INSERT INTO `ibrand_goods_product` VALUES ('1040', '107', '10', '8172101393-7', '49.00', '75.00', null, null, '1', '[\"31\",\"41\"]', '2018-05-28 18:11:36', '2018-05-28 18:11:36', null);
  4339. INSERT INTO `ibrand_goods_product` VALUES ('1041', '107', '10', '8172101393-8', '49.00', '75.00', null, null, '1', '[\"31\",\"42\"]', '2018-05-28 18:11:36', '2018-05-28 18:11:36', null);
  4340. INSERT INTO `ibrand_goods_product` VALUES ('1042', '107', '10', '8172101393-9', '49.00', '75.00', null, null, '1', '[\"31\",\"43\"]', '2018-05-28 18:11:36', '2018-05-28 18:11:36', null);
  4341. INSERT INTO `ibrand_goods_product` VALUES ('1043', '107', '10', '8172101393-10', '49.00', '75.00', null, null, '1', '[\"31\",\"44\"]', '2018-05-28 18:11:36', '2018-05-28 18:11:36', null);
  4342. INSERT INTO `ibrand_goods_product` VALUES ('1044', '108', '100', '54080/54081-1', '79.00', '119.00', null, null, '1', '[\"4\",\"62\"]', '2018-06-05 16:26:05', '2018-06-05 16:26:05', null);
  4343. INSERT INTO `ibrand_goods_product` VALUES ('1045', '108', '100', '54080/54081-2', '79.00', '119.00', null, null, '1', '[\"14\",\"62\"]', '2018-06-05 16:26:05', '2018-06-05 16:26:05', null);
  4344. INSERT INTO `ibrand_goods_product` VALUES ('1046', '109', '100', '201865-1', '89.00', '139.00', null, null, '1', '[\"1\",\"53\"]', '2018-06-05 17:27:17', '2018-06-05 17:27:17', null);
  4345. INSERT INTO `ibrand_goods_product` VALUES ('1047', '109', '100', '201865-2', '89.00', '139.00', null, null, '1', '[\"1\",\"54\"]', '2018-06-05 17:27:17', '2018-06-05 17:27:17', null);
  4346. INSERT INTO `ibrand_goods_product` VALUES ('1048', '109', '100', '201865-3', '89.00', '139.00', null, null, '1', '[\"1\",\"55\"]', '2018-06-05 17:27:17', '2018-06-05 17:27:17', null);
  4347. INSERT INTO `ibrand_goods_product` VALUES ('1049', '109', '100', '201865-4', '89.00', '139.00', null, null, '1', '[\"1\",\"56\"]', '2018-06-05 17:27:17', '2018-06-05 17:27:17', null);
  4348. INSERT INTO `ibrand_goods_product` VALUES ('1050', '109', '100', '201865-5', '89.00', '139.00', null, null, '1', '[\"1\",\"57\"]', '2018-06-05 17:27:17', '2018-06-05 17:27:17', null);
  4349. INSERT INTO `ibrand_goods_product` VALUES ('1051', '109', '100', '201865-6', '89.00', '139.00', null, null, '1', '[\"4\",\"53\"]', '2018-06-05 17:27:17', '2018-06-05 17:27:17', null);
  4350. INSERT INTO `ibrand_goods_product` VALUES ('1052', '109', '100', '201865-7', '89.00', '139.00', null, null, '1', '[\"4\",\"54\"]', '2018-06-05 17:27:17', '2018-06-05 17:27:17', null);
  4351. INSERT INTO `ibrand_goods_product` VALUES ('1053', '109', '100', '201865-8', '89.00', '139.00', null, null, '1', '[\"4\",\"55\"]', '2018-06-05 17:27:17', '2018-06-05 17:27:17', null);
  4352. INSERT INTO `ibrand_goods_product` VALUES ('1054', '109', '100', '201865-9', '89.00', '139.00', null, null, '1', '[\"4\",\"56\"]', '2018-06-05 17:27:17', '2018-06-05 17:27:17', null);
  4353. INSERT INTO `ibrand_goods_product` VALUES ('1055', '109', '100', '201865-10', '89.00', '139.00', null, null, '1', '[\"4\",\"57\"]', '2018-06-05 17:27:17', '2018-06-05 17:27:17', null);
  4354. INSERT INTO `ibrand_goods_product` VALUES ('1056', '109', '100', '201865-11', '89.00', '139.00', null, null, '1', '[\"19\",\"53\"]', '2018-06-05 17:27:17', '2018-06-05 17:27:17', null);
  4355. INSERT INTO `ibrand_goods_product` VALUES ('1057', '109', '100', '201865-12', '89.00', '139.00', null, null, '1', '[\"19\",\"54\"]', '2018-06-05 17:27:17', '2018-06-05 17:27:17', null);
  4356. INSERT INTO `ibrand_goods_product` VALUES ('1058', '109', '100', '201865-13', '89.00', '139.00', null, null, '1', '[\"19\",\"55\"]', '2018-06-05 17:27:17', '2018-06-05 17:27:17', null);
  4357. INSERT INTO `ibrand_goods_product` VALUES ('1059', '109', '100', '201865-14', '89.00', '139.00', null, null, '1', '[\"19\",\"56\"]', '2018-06-05 17:27:17', '2018-06-05 17:27:17', null);
  4358. INSERT INTO `ibrand_goods_product` VALUES ('1060', '109', '100', '201865-15', '89.00', '139.00', null, null, '1', '[\"19\",\"57\"]', '2018-06-05 17:27:17', '2018-06-05 17:27:17', null);
  4359. INSERT INTO `ibrand_goods_product` VALUES ('1061', '109', '100', '201865-16', '89.00', '139.00', null, null, '1', '[\"34\",\"53\"]', '2018-06-05 17:27:17', '2018-06-05 17:27:17', null);
  4360. INSERT INTO `ibrand_goods_product` VALUES ('1062', '109', '100', '201865-17', '89.00', '139.00', null, null, '1', '[\"34\",\"54\"]', '2018-06-05 17:27:17', '2018-06-05 17:27:17', null);
  4361. INSERT INTO `ibrand_goods_product` VALUES ('1063', '109', '100', '201865-18', '89.00', '139.00', null, null, '1', '[\"34\",\"55\"]', '2018-06-05 17:27:17', '2018-06-05 17:27:17', null);
  4362. INSERT INTO `ibrand_goods_product` VALUES ('1064', '109', '100', '201865-19', '89.00', '139.00', null, null, '1', '[\"34\",\"56\"]', '2018-06-05 17:27:17', '2018-06-05 17:27:17', null);
  4363. INSERT INTO `ibrand_goods_product` VALUES ('1065', '109', '100', '201865-20', '89.00', '139.00', null, null, '1', '[\"34\",\"57\"]', '2018-06-05 17:27:17', '2018-06-05 17:27:17', null);
  4364. INSERT INTO `ibrand_goods_product` VALUES ('1066', '109', '100', '201865-21', '89.00', '139.00', null, null, '1', '[\"35\",\"53\"]', '2018-06-05 17:27:17', '2018-06-05 17:27:17', null);
  4365. INSERT INTO `ibrand_goods_product` VALUES ('1067', '109', '100', '201865-22', '89.00', '139.00', null, null, '1', '[\"35\",\"54\"]', '2018-06-05 17:27:17', '2018-06-05 17:27:17', null);
  4366. INSERT INTO `ibrand_goods_product` VALUES ('1068', '109', '100', '201865-23', '89.00', '139.00', null, null, '1', '[\"35\",\"55\"]', '2018-06-05 17:27:17', '2018-06-05 17:27:17', null);
  4367. INSERT INTO `ibrand_goods_product` VALUES ('1069', '109', '100', '201865-24', '89.00', '139.00', null, null, '1', '[\"35\",\"56\"]', '2018-06-05 17:27:17', '2018-06-05 17:27:17', null);
  4368. INSERT INTO `ibrand_goods_product` VALUES ('1070', '109', '100', '201865-25', '89.00', '139.00', null, null, '1', '[\"35\",\"57\"]', '2018-06-05 17:27:17', '2018-06-05 17:27:17', null);
  4369. INSERT INTO `ibrand_goods_product` VALUES ('1071', '109', '100', '201865-26', '89.00', '139.00', null, null, '1', '[\"47\",\"53\"]', '2018-06-05 17:27:17', '2018-06-05 17:27:17', null);
  4370. INSERT INTO `ibrand_goods_product` VALUES ('1072', '109', '100', '201865-27', '89.00', '139.00', null, null, '1', '[\"47\",\"54\"]', '2018-06-05 17:27:17', '2018-06-05 17:27:17', null);
  4371. INSERT INTO `ibrand_goods_product` VALUES ('1073', '109', '100', '201865-28', '89.00', '139.00', null, null, '1', '[\"47\",\"55\"]', '2018-06-05 17:27:17', '2018-06-05 17:27:17', null);
  4372. INSERT INTO `ibrand_goods_product` VALUES ('1074', '109', '100', '201865-29', '89.00', '139.00', null, null, '1', '[\"47\",\"56\"]', '2018-06-05 17:27:17', '2018-06-05 17:27:17', null);
  4373. INSERT INTO `ibrand_goods_product` VALUES ('1075', '109', '100', '201865-30', '89.00', '139.00', null, null, '1', '[\"47\",\"57\"]', '2018-06-05 17:27:18', '2018-06-05 17:27:18', null);
  4374. INSERT INTO `ibrand_goods_product` VALUES ('1076', '110', '50', '0040000010', '89.00', '149.00', null, null, '1', '[\"7\",\"39\"]', '2018-06-05 18:03:14', '2018-06-05 18:03:14', null);
  4375. INSERT INTO `ibrand_goods_product` VALUES ('1077', '111', '100', 'KQ1543-1', '39.00', '98.00', null, null, '1', '[\"4\",\"39\"]', '2018-06-06 12:43:28', '2018-06-07 10:38:39', null);
  4376. INSERT INTO `ibrand_goods_product` VALUES ('1078', '111', '100', 'KQ1543-2', '39.00', '98.00', null, null, '1', '[\"4\",\"40\"]', '2018-06-06 12:43:29', '2018-06-07 10:38:39', null);
  4377. INSERT INTO `ibrand_goods_product` VALUES ('1079', '111', '100', 'KQ1543-3', '39.00', '98.00', null, null, '1', '[\"4\",\"41\"]', '2018-06-06 12:43:29', '2018-06-07 10:38:39', null);
  4378. INSERT INTO `ibrand_goods_product` VALUES ('1080', '111', '100', 'KQ1543-4', '39.00', '98.00', null, null, '1', '[\"18\",\"39\"]', '2018-06-06 12:43:29', '2018-06-07 10:38:39', null);
  4379. INSERT INTO `ibrand_goods_product` VALUES ('1081', '111', '30', 'KQ1543-5', '39.00', '98.00', null, null, '1', '[\"18\",\"40\"]', '2018-06-06 12:43:29', '2018-06-07 10:38:39', null);
  4380. INSERT INTO `ibrand_goods_product` VALUES ('1082', '111', '100', 'KQ1543-6', '39.00', '98.00', null, null, '1', '[\"18\",\"41\"]', '2018-06-06 12:43:29', '2018-06-07 10:38:39', null);
  4381. INSERT INTO `ibrand_goods_product` VALUES ('1083', '111', '100', 'KQ1543-7', '39.00', '98.00', null, null, '1', '[\"19\",\"39\"]', '2018-06-06 12:43:29', '2018-06-07 10:38:39', null);
  4382. INSERT INTO `ibrand_goods_product` VALUES ('1084', '111', '100', 'KQ1543-8', '39.00', '98.00', null, null, '1', '[\"19\",\"40\"]', '2018-06-06 12:43:29', '2018-06-07 10:38:39', null);
  4383. INSERT INTO `ibrand_goods_product` VALUES ('1085', '111', '100', 'KQ1543-9', '39.00', '98.00', null, null, '1', '[\"19\",\"41\"]', '2018-06-06 12:43:29', '2018-06-07 10:38:39', null);
  4384. INSERT INTO `ibrand_goods_product` VALUES ('1086', '111', '100', 'KQ1543-10', '39.00', '98.00', null, null, '1', '[\"23\",\"39\"]', '2018-06-06 12:43:29', '2018-06-07 10:38:39', null);
  4385. INSERT INTO `ibrand_goods_product` VALUES ('1087', '111', '100', 'KQ1543-11', '39.00', '98.00', null, null, '1', '[\"23\",\"40\"]', '2018-06-06 12:43:29', '2018-06-07 10:38:39', null);
  4386. INSERT INTO `ibrand_goods_product` VALUES ('1088', '111', '100', 'KQ1543-12', '39.00', '98.00', null, null, '1', '[\"23\",\"41\"]', '2018-06-06 12:43:29', '2018-06-07 10:38:39', null);
  4387. INSERT INTO `ibrand_goods_product` VALUES ('1089', '111', '50', 'KQ1543-13', '39.00', '98.00', null, null, '1', '[\"25\",\"39\"]', '2018-06-06 12:43:29', '2018-06-07 10:38:39', null);
  4388. INSERT INTO `ibrand_goods_product` VALUES ('1090', '111', '50', 'KQ1543-14', '39.00', '98.00', null, null, '1', '[\"25\",\"40\"]', '2018-06-06 12:43:29', '2018-06-07 10:38:39', null);
  4389. INSERT INTO `ibrand_goods_product` VALUES ('1091', '111', '50', 'KQ1543-15', '39.00', '98.00', null, null, '1', '[\"25\",\"41\"]', '2018-06-06 12:43:29', '2018-06-07 10:38:39', null);
  4390. INSERT INTO `ibrand_goods_product` VALUES ('1092', '112', '100', 'MR369-1', '35.00', '68.00', null, null, '1', '[\"1\",\"39\"]', '2018-06-06 14:44:42', '2018-06-07 10:38:56', null);
  4391. INSERT INTO `ibrand_goods_product` VALUES ('1093', '112', '100', 'MR369-2', '35.00', '68.00', null, null, '1', '[\"2\",\"39\"]', '2018-06-06 14:44:42', '2018-06-07 10:38:56', null);
  4392. INSERT INTO `ibrand_goods_product` VALUES ('1094', '112', '100', 'MR369-3', '35.00', '68.00', null, null, '1', '[\"3\",\"39\"]', '2018-06-06 14:44:42', '2018-06-07 10:38:56', null);
  4393. INSERT INTO `ibrand_goods_product` VALUES ('1095', '112', '100', 'MR369-4', '35.00', '68.00', null, null, '1', '[\"4\",\"39\"]', '2018-06-06 14:44:42', '2018-06-07 10:38:56', null);
  4394. INSERT INTO `ibrand_goods_product` VALUES ('1096', '112', '100', 'MR369-5', '35.00', '68.00', null, null, '1', '[\"9\",\"39\"]', '2018-06-06 14:44:42', '2018-06-07 10:38:56', null);
  4395. INSERT INTO `ibrand_goods_product` VALUES ('1097', '112', '100', 'MR369-6', '35.00', '68.00', null, null, '1', '[\"21\",\"39\"]', '2018-06-06 14:44:42', '2018-06-07 10:38:56', null);
  4396. INSERT INTO `ibrand_goods_product` VALUES ('1098', '112', '100', 'MR369-7', '35.00', '68.00', null, null, '1', '[\"26\",\"39\"]', '2018-06-06 14:44:42', '2018-06-07 10:38:56', null);
  4397. INSERT INTO `ibrand_goods_product` VALUES ('1099', '113', '100', '2018671', '88.00', '230.00', null, null, '1', '[\"20\",\"39\"]', '2018-06-07 12:02:47', '2018-06-13 15:19:00', null);
  4398. INSERT INTO `ibrand_goods_product` VALUES ('1100', '114', '99', '2018672-1', '10.00', '28.80', null, null, '1', '[\"17\",\"39\"]', '2018-06-07 14:50:10', '2018-06-15 21:44:31', null);
  4399. INSERT INTO `ibrand_goods_product` VALUES ('1101', '114', '100', '2018672-2', '10.00', '28.80', null, null, '1', '[\"25\",\"39\"]', '2018-06-07 14:50:10', '2018-06-14 11:33:04', null);
  4400. INSERT INTO `ibrand_goods_product` VALUES ('1102', '114', '99', '2018672-3', '10.00', '28.80', null, null, '1', '[\"39\",\"46\"]', '2018-06-07 14:50:10', '2018-06-26 15:32:55', null);
  4401. INSERT INTO `ibrand_goods_product` VALUES ('1103', '115', '100', 'T006-1', '39.00', '98.00', null, null, '1', '[\"2\",\"39\"]', '2018-06-07 16:09:15', '2018-06-07 16:09:15', null);
  4402. INSERT INTO `ibrand_goods_product` VALUES ('1104', '115', '100', 'T006-2', '39.00', '98.00', null, null, '1', '[\"4\",\"39\"]', '2018-06-07 16:09:15', '2018-06-07 16:09:15', null);
  4403. INSERT INTO `ibrand_goods_product` VALUES ('1105', '115', '100', 'T006-3', '39.00', '98.00', null, null, '1', '[\"6\",\"39\"]', '2018-06-07 16:09:15', '2018-06-07 16:09:15', null);
  4404. INSERT INTO `ibrand_goods_product` VALUES ('1106', '115', '100', 'T006-4', '39.00', '98.00', null, null, '1', '[\"7\",\"39\"]', '2018-06-07 16:09:15', '2018-06-07 16:09:15', null);
  4405. INSERT INTO `ibrand_goods_product` VALUES ('1107', '115', '100', 'T006-5', '39.00', '98.00', null, null, '1', '[\"13\",\"39\"]', '2018-06-07 16:09:15', '2018-06-07 16:09:15', null);
  4406. INSERT INTO `ibrand_goods_product` VALUES ('1108', '115', '100', 'T006-6', '39.00', '98.00', null, null, '1', '[\"16\",\"39\"]', '2018-06-07 16:09:15', '2018-06-07 16:09:15', null);
  4407. INSERT INTO `ibrand_goods_product` VALUES ('1109', '115', '100', 'T006-7', '39.00', '98.00', null, null, '1', '[\"20\",\"39\"]', '2018-06-07 16:09:15', '2018-06-07 16:09:15', null);
  4408. INSERT INTO `ibrand_goods_product` VALUES ('1110', '116', '100', 'D002-1', '18.80', '58.80', null, null, '1', '[\"1\",\"39\"]', '2018-06-07 17:01:15', '2018-06-07 17:01:15', null);
  4409. INSERT INTO `ibrand_goods_product` VALUES ('1111', '116', '100', 'D002-2', '18.80', '58.80', null, null, '1', '[\"20\",\"39\"]', '2018-06-07 17:01:15', '2018-06-07 17:01:15', null);
  4410. INSERT INTO `ibrand_goods_product` VALUES ('1112', '116', '100', 'D002-3', '18.80', '58.80', null, null, '1', '[\"21\",\"39\"]', '2018-06-07 17:01:15', '2018-06-07 17:01:15', null);
  4411. INSERT INTO `ibrand_goods_product` VALUES ('1113', '116', '100', 'D002-4', '18.80', '58.80', null, null, '1', '[\"28\",\"39\"]', '2018-06-07 17:01:15', '2018-06-07 17:01:15', null);
  4412. INSERT INTO `ibrand_goods_product` VALUES ('1114', '116', '100', 'D002-5', '18.80', '58.80', null, null, '1', '[\"30\",\"39\"]', '2018-06-07 17:01:15', '2018-06-07 17:01:15', null);
  4413. INSERT INTO `ibrand_goods_product` VALUES ('1115', '116', '100', 'D002-6', '18.80', '58.80', null, null, '1', '[\"39\",\"47\"]', '2018-06-07 17:01:15', '2018-06-07 17:01:15', null);
  4414. INSERT INTO `ibrand_goods_product` VALUES ('1116', '117', '100', '2018673', '58.00', '128.00', null, null, '1', '[\"18\",\"39\"]', '2018-06-07 17:19:29', '2018-06-07 17:19:29', null);
  4415. INSERT INTO `ibrand_goods_product` VALUES ('1117', '118', '30', 'C0121-1', '29.90', '88.00', null, null, '1', '[\"2\",\"40\"]', '2018-06-07 18:06:45', '2018-06-15 10:33:15', null);
  4416. INSERT INTO `ibrand_goods_product` VALUES ('1118', '118', '30', 'C0121-2', '29.90', '88.00', null, null, '1', '[\"2\",\"41\"]', '2018-06-07 18:06:45', '2018-06-15 10:33:15', null);
  4417. INSERT INTO `ibrand_goods_product` VALUES ('1119', '118', '30', 'C0121-3', '29.90', '88.00', null, null, '1', '[\"2\",\"42\"]', '2018-06-07 18:06:45', '2018-06-15 10:33:15', null);
  4418. INSERT INTO `ibrand_goods_product` VALUES ('1120', '118', '30', 'C0121-4', '29.90', '88.00', null, null, '1', '[\"2\",\"43\"]', '2018-06-07 18:06:45', '2018-06-15 10:33:16', null);
  4419. INSERT INTO `ibrand_goods_product` VALUES ('1121', '118', '30', 'C0121-5', '29.90', '88.00', null, null, '1', '[\"2\",\"44\"]', '2018-06-07 18:06:45', '2018-06-15 10:33:16', null);
  4420. INSERT INTO `ibrand_goods_product` VALUES ('1122', '118', '30', 'C0121-6', '29.90', '88.00', null, null, '1', '[\"2\",\"45\"]', '2018-06-07 18:06:45', '2018-06-15 10:33:16', null);
  4421. INSERT INTO `ibrand_goods_product` VALUES ('1123', '118', '30', 'C0121-7', '29.90', '88.00', null, null, '1', '[\"2\",\"48\"]', '2018-06-07 18:06:45', '2018-06-15 10:33:16', null);
  4422. INSERT INTO `ibrand_goods_product` VALUES ('1124', '118', '30', 'C0121-8', '29.90', '88.00', null, null, '1', '[\"2\",\"49\"]', '2018-06-07 18:06:45', '2018-06-15 10:33:16', null);
  4423. INSERT INTO `ibrand_goods_product` VALUES ('1125', '118', '30', 'C0121-9', '29.90', '88.00', null, null, '1', '[\"6\",\"40\"]', '2018-06-07 18:06:45', '2018-06-15 10:33:16', null);
  4424. INSERT INTO `ibrand_goods_product` VALUES ('1126', '118', '30', 'C0121-10', '29.90', '88.00', null, null, '1', '[\"6\",\"41\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:16', null);
  4425. INSERT INTO `ibrand_goods_product` VALUES ('1127', '118', '30', 'C0121-11', '29.90', '88.00', null, null, '1', '[\"6\",\"42\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:16', null);
  4426. INSERT INTO `ibrand_goods_product` VALUES ('1129', '118', '30', 'C0121-12', '29.90', '88.00', null, null, '1', '[\"6\",\"43\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:16', null);
  4427. INSERT INTO `ibrand_goods_product` VALUES ('1131', '118', '30', 'C0121-13', '29.90', '88.00', null, null, '1', '[\"6\",\"44\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:16', null);
  4428. INSERT INTO `ibrand_goods_product` VALUES ('1133', '118', '30', 'C0121-14', '29.90', '88.00', null, null, '1', '[\"6\",\"45\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:16', null);
  4429. INSERT INTO `ibrand_goods_product` VALUES ('1136', '118', '30', 'C0121-15', '29.90', '88.00', null, null, '1', '[\"6\",\"48\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:16', null);
  4430. INSERT INTO `ibrand_goods_product` VALUES ('1139', '118', '30', 'C0121-16', '29.90', '88.00', null, null, '1', '[\"6\",\"49\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:16', null);
  4431. INSERT INTO `ibrand_goods_product` VALUES ('1142', '118', '30', 'C0121-17', '29.90', '88.00', null, null, '1', '[\"11\",\"40\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:16', null);
  4432. INSERT INTO `ibrand_goods_product` VALUES ('1146', '118', '30', 'C0121-18', '29.90', '88.00', null, null, '1', '[\"11\",\"41\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:16', null);
  4433. INSERT INTO `ibrand_goods_product` VALUES ('1149', '118', '30', 'C0121-19', '29.90', '88.00', null, null, '1', '[\"11\",\"42\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:16', null);
  4434. INSERT INTO `ibrand_goods_product` VALUES ('1152', '118', '30', 'C0121-20', '29.90', '88.00', null, null, '1', '[\"11\",\"43\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:16', null);
  4435. INSERT INTO `ibrand_goods_product` VALUES ('1155', '118', '30', 'C0121-21', '29.90', '88.00', null, null, '1', '[\"11\",\"44\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:16', null);
  4436. INSERT INTO `ibrand_goods_product` VALUES ('1158', '118', '30', 'C0121-22', '29.90', '88.00', null, null, '1', '[\"11\",\"45\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:16', null);
  4437. INSERT INTO `ibrand_goods_product` VALUES ('1161', '118', '30', 'C0121-23', '29.90', '88.00', null, null, '1', '[\"11\",\"48\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:16', null);
  4438. INSERT INTO `ibrand_goods_product` VALUES ('1164', '118', '30', 'C0121-24', '29.90', '88.00', null, null, '1', '[\"11\",\"49\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:16', null);
  4439. INSERT INTO `ibrand_goods_product` VALUES ('1168', '118', '30', 'C0121-25', '29.90', '88.00', null, null, '1', '[\"17\",\"40\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:16', null);
  4440. INSERT INTO `ibrand_goods_product` VALUES ('1171', '118', '30', 'C0121-26', '29.90', '88.00', null, null, '1', '[\"17\",\"41\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:16', null);
  4441. INSERT INTO `ibrand_goods_product` VALUES ('1175', '118', '30', 'C0121-27', '29.90', '88.00', null, null, '1', '[\"17\",\"42\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:16', null);
  4442. INSERT INTO `ibrand_goods_product` VALUES ('1178', '118', '30', 'C0121-28', '29.90', '88.00', null, null, '1', '[\"17\",\"43\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:16', null);
  4443. INSERT INTO `ibrand_goods_product` VALUES ('1181', '118', '30', 'C0121-29', '29.90', '88.00', null, null, '1', '[\"17\",\"44\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:16', null);
  4444. INSERT INTO `ibrand_goods_product` VALUES ('1184', '118', '30', 'C0121-30', '29.90', '88.00', null, null, '1', '[\"17\",\"45\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:16', null);
  4445. INSERT INTO `ibrand_goods_product` VALUES ('1187', '118', '30', 'C0121-31', '29.90', '88.00', null, null, '1', '[\"17\",\"48\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:16', null);
  4446. INSERT INTO `ibrand_goods_product` VALUES ('1190', '118', '30', 'C0121-32', '29.90', '88.00', null, null, '1', '[\"17\",\"49\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:16', null);
  4447. INSERT INTO `ibrand_goods_product` VALUES ('1194', '118', '30', 'C0121-33', '29.90', '88.00', null, null, '1', '[\"25\",\"40\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:16', null);
  4448. INSERT INTO `ibrand_goods_product` VALUES ('1197', '118', '30', 'C0121-34', '29.90', '88.00', null, null, '1', '[\"25\",\"41\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:16', null);
  4449. INSERT INTO `ibrand_goods_product` VALUES ('1200', '118', '30', 'C0121-35', '29.90', '88.00', null, null, '1', '[\"25\",\"42\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:16', null);
  4450. INSERT INTO `ibrand_goods_product` VALUES ('1204', '118', '30', 'C0121-36', '29.90', '88.00', null, null, '1', '[\"25\",\"43\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:17', null);
  4451. INSERT INTO `ibrand_goods_product` VALUES ('1207', '118', '30', 'C0121-37', '29.90', '88.00', null, null, '1', '[\"25\",\"44\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:17', null);
  4452. INSERT INTO `ibrand_goods_product` VALUES ('1210', '118', '30', 'C0121-38', '29.90', '88.00', null, null, '1', '[\"25\",\"45\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:17', null);
  4453. INSERT INTO `ibrand_goods_product` VALUES ('1213', '118', '30', 'C0121-39', '29.90', '88.00', null, null, '1', '[\"25\",\"48\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:17', null);
  4454. INSERT INTO `ibrand_goods_product` VALUES ('1217', '118', '30', 'C0121-40', '29.90', '88.00', null, null, '1', '[\"25\",\"49\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:17', null);
  4455. INSERT INTO `ibrand_goods_product` VALUES ('1220', '118', '30', 'C0121-41', '29.90', '88.00', null, null, '1', '[\"34\",\"40\"]', '2018-06-07 18:06:46', '2018-06-15 10:33:17', null);
  4456. INSERT INTO `ibrand_goods_product` VALUES ('1223', '118', '30', 'C0121-42', '29.90', '88.00', null, null, '1', '[\"34\",\"41\"]', '2018-06-07 18:06:47', '2018-06-15 10:33:17', null);
  4457. INSERT INTO `ibrand_goods_product` VALUES ('1226', '118', '30', 'C0121-43', '29.90', '88.00', null, null, '1', '[\"34\",\"42\"]', '2018-06-07 18:06:47', '2018-06-15 10:33:17', null);
  4458. INSERT INTO `ibrand_goods_product` VALUES ('1229', '118', '30', 'C0121-44', '29.90', '88.00', null, null, '1', '[\"34\",\"43\"]', '2018-06-07 18:06:47', '2018-06-15 10:33:17', null);
  4459. INSERT INTO `ibrand_goods_product` VALUES ('1232', '118', '30', 'C0121-45', '29.90', '88.00', null, null, '1', '[\"34\",\"44\"]', '2018-06-07 18:06:47', '2018-06-15 10:33:17', null);
  4460. INSERT INTO `ibrand_goods_product` VALUES ('1235', '118', '30', 'C0121-46', '29.90', '88.00', null, null, '1', '[\"34\",\"45\"]', '2018-06-07 18:06:47', '2018-06-15 10:33:17', null);
  4461. INSERT INTO `ibrand_goods_product` VALUES ('1238', '118', '30', 'C0121-47', '29.90', '88.00', null, null, '1', '[\"34\",\"48\"]', '2018-06-07 18:06:47', '2018-06-15 10:33:17', null);
  4462. INSERT INTO `ibrand_goods_product` VALUES ('1242', '118', '30', 'C0121-48', '29.90', '88.00', null, null, '1', '[\"34\",\"49\"]', '2018-06-07 18:06:47', '2018-06-15 10:33:17', null);
  4463. INSERT INTO `ibrand_goods_product` VALUES ('1245', '118', '30', 'C0121-49', '29.90', '88.00', null, null, '1', '[\"37\",\"40\"]', '2018-06-07 18:06:47', '2018-06-15 10:33:17', null);
  4464. INSERT INTO `ibrand_goods_product` VALUES ('1248', '118', '30', 'C0121-50', '29.90', '88.00', null, null, '1', '[\"37\",\"41\"]', '2018-06-07 18:06:47', '2018-06-15 10:33:17', null);
  4465. INSERT INTO `ibrand_goods_product` VALUES ('1251', '118', '30', 'C0121-51', '29.90', '88.00', null, null, '1', '[\"37\",\"42\"]', '2018-06-07 18:06:47', '2018-06-15 10:33:17', null);
  4466. INSERT INTO `ibrand_goods_product` VALUES ('1254', '118', '30', 'C0121-52', '29.90', '88.00', null, null, '1', '[\"37\",\"43\"]', '2018-06-07 18:06:47', '2018-06-15 10:33:17', null);
  4467. INSERT INTO `ibrand_goods_product` VALUES ('1257', '118', '30', 'C0121-53', '29.90', '88.00', null, null, '1', '[\"37\",\"44\"]', '2018-06-07 18:06:47', '2018-06-15 10:33:17', null);
  4468. INSERT INTO `ibrand_goods_product` VALUES ('1260', '118', '30', 'C0121-54', '29.90', '88.00', null, null, '1', '[\"37\",\"45\"]', '2018-06-07 18:06:47', '2018-06-15 10:33:17', null);
  4469. INSERT INTO `ibrand_goods_product` VALUES ('1263', '118', '30', 'C0121-55', '29.90', '88.00', null, null, '1', '[\"37\",\"48\"]', '2018-06-07 18:06:47', '2018-06-15 10:33:17', null);
  4470. INSERT INTO `ibrand_goods_product` VALUES ('1266', '118', '30', 'C0121-56', '29.90', '88.00', null, null, '1', '[\"37\",\"49\"]', '2018-06-07 18:06:47', '2018-06-15 10:33:17', null);
  4471. INSERT INTO `ibrand_goods_product` VALUES ('1269', '118', '30', 'C0121-57', '29.90', '88.00', null, null, '1', '[\"38\",\"40\"]', '2018-06-07 18:06:47', '2018-06-15 10:33:17', null);
  4472. INSERT INTO `ibrand_goods_product` VALUES ('1273', '118', '30', 'C0121-58', '29.90', '88.00', null, null, '1', '[\"38\",\"41\"]', '2018-06-07 18:06:47', '2018-06-15 10:33:17', null);
  4473. INSERT INTO `ibrand_goods_product` VALUES ('1276', '118', '30', 'C0121-59', '29.90', '88.00', null, null, '1', '[\"38\",\"42\"]', '2018-06-07 18:06:47', '2018-06-15 10:33:17', null);
  4474. INSERT INTO `ibrand_goods_product` VALUES ('1279', '118', '30', 'C0121-60', '29.90', '88.00', null, null, '1', '[\"38\",\"43\"]', '2018-06-07 18:06:47', '2018-06-15 10:33:17', null);
  4475. INSERT INTO `ibrand_goods_product` VALUES ('1282', '118', '30', 'C0121-61', '29.90', '88.00', null, null, '1', '[\"38\",\"44\"]', '2018-06-07 18:06:47', '2018-06-15 10:33:17', null);
  4476. INSERT INTO `ibrand_goods_product` VALUES ('1286', '118', '30', 'C0121-62', '29.90', '88.00', null, null, '1', '[\"38\",\"45\"]', '2018-06-07 18:06:47', '2018-06-15 10:33:17', null);
  4477. INSERT INTO `ibrand_goods_product` VALUES ('1289', '118', '30', 'C0121-63', '29.90', '88.00', null, null, '1', '[\"38\",\"48\"]', '2018-06-07 18:06:47', '2018-06-15 10:33:17', null);
  4478. INSERT INTO `ibrand_goods_product` VALUES ('1292', '118', '30', 'C0121-64', '29.90', '88.00', null, null, '1', '[\"38\",\"49\"]', '2018-06-07 18:06:47', '2018-06-15 10:33:17', null);
  4479. INSERT INTO `ibrand_goods_product` VALUES ('1295', '118', '30', 'C0121-65', '29.90', '88.00', null, null, '1', '[\"40\",\"46\"]', '2018-06-07 18:06:47', '2018-06-15 10:33:17', null);
  4480. INSERT INTO `ibrand_goods_product` VALUES ('1298', '118', '30', 'C0121-66', '29.90', '88.00', null, null, '1', '[\"41\",\"46\"]', '2018-06-07 18:06:47', '2018-06-15 10:33:18', null);
  4481. INSERT INTO `ibrand_goods_product` VALUES ('1302', '118', '30', 'C0121-67', '29.90', '88.00', null, null, '1', '[\"42\",\"46\"]', '2018-06-07 18:06:47', '2018-06-15 10:33:18', null);
  4482. INSERT INTO `ibrand_goods_product` VALUES ('1305', '118', '30', 'C0121-68', '29.90', '88.00', null, null, '1', '[\"43\",\"46\"]', '2018-06-07 18:06:47', '2018-06-15 10:33:18', null);
  4483. INSERT INTO `ibrand_goods_product` VALUES ('1308', '118', '30', 'C0121-69', '29.90', '88.00', null, null, '1', '[\"44\",\"46\"]', '2018-06-07 18:06:47', '2018-06-15 10:33:18', null);
  4484. INSERT INTO `ibrand_goods_product` VALUES ('1311', '118', '30', 'C0121-70', '29.90', '88.00', null, null, '1', '[\"45\",\"46\"]', '2018-06-07 18:06:47', '2018-06-15 10:33:18', null);
  4485. INSERT INTO `ibrand_goods_product` VALUES ('1314', '118', '30', 'C0121-71', '29.90', '88.00', null, null, '1', '[\"46\",\"48\"]', '2018-06-07 18:06:47', '2018-06-15 10:33:18', null);
  4486. INSERT INTO `ibrand_goods_product` VALUES ('1318', '118', '30', 'C0121-72', '29.90', '88.00', null, null, '1', '[\"46\",\"49\"]', '2018-06-07 18:06:47', '2018-06-15 10:33:18', null);
  4487. INSERT INTO `ibrand_goods_product` VALUES ('1477', '123', '100', 'C0111-1', '29.90', '89.00', null, null, '1', '[\"6\",\"40\"]', '2018-06-08 11:37:44', '2018-06-15 10:33:51', null);
  4488. INSERT INTO `ibrand_goods_product` VALUES ('1478', '123', '100', 'C0111-2', '29.90', '89.00', null, null, '1', '[\"6\",\"41\"]', '2018-06-08 11:37:44', '2018-06-15 10:33:52', null);
  4489. INSERT INTO `ibrand_goods_product` VALUES ('1479', '123', '100', 'C0111-3', '29.90', '89.00', null, null, '1', '[\"6\",\"42\"]', '2018-06-08 11:37:44', '2018-06-15 10:33:52', null);
  4490. INSERT INTO `ibrand_goods_product` VALUES ('1480', '123', '100', 'C0111-4', '29.90', '89.00', null, null, '1', '[\"6\",\"43\"]', '2018-06-08 11:37:44', '2018-06-15 10:33:52', null);
  4491. INSERT INTO `ibrand_goods_product` VALUES ('1481', '123', '100', 'C0111-5', '29.90', '89.00', null, null, '1', '[\"6\",\"44\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:52', null);
  4492. INSERT INTO `ibrand_goods_product` VALUES ('1482', '123', '100', 'C0111-6', '29.90', '89.00', null, null, '1', '[\"6\",\"45\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:52', null);
  4493. INSERT INTO `ibrand_goods_product` VALUES ('1483', '123', '100', 'C0111-7', '29.90', '89.00', null, null, '1', '[\"6\",\"48\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:52', null);
  4494. INSERT INTO `ibrand_goods_product` VALUES ('1484', '123', '100', 'C0111-8', '29.90', '89.00', null, null, '1', '[\"6\",\"49\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:52', null);
  4495. INSERT INTO `ibrand_goods_product` VALUES ('1485', '123', '100', 'C0111-9', '29.90', '89.00', null, null, '1', '[\"17\",\"40\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:52', null);
  4496. INSERT INTO `ibrand_goods_product` VALUES ('1486', '123', '100', 'C0111-10', '29.90', '89.00', null, null, '1', '[\"17\",\"41\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:52', null);
  4497. INSERT INTO `ibrand_goods_product` VALUES ('1487', '123', '100', 'C0111-11', '29.90', '89.00', null, null, '1', '[\"17\",\"42\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:52', null);
  4498. INSERT INTO `ibrand_goods_product` VALUES ('1488', '123', '100', 'C0111-12', '29.90', '89.00', null, null, '1', '[\"17\",\"43\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:52', null);
  4499. INSERT INTO `ibrand_goods_product` VALUES ('1489', '123', '100', 'C0111-13', '29.90', '89.00', null, null, '1', '[\"17\",\"44\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:52', null);
  4500. INSERT INTO `ibrand_goods_product` VALUES ('1490', '123', '100', 'C0111-14', '29.90', '89.00', null, null, '1', '[\"17\",\"45\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:52', null);
  4501. INSERT INTO `ibrand_goods_product` VALUES ('1491', '123', '100', 'C0111-15', '29.90', '89.00', null, null, '1', '[\"17\",\"48\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:52', null);
  4502. INSERT INTO `ibrand_goods_product` VALUES ('1492', '123', '100', 'C0111-16', '29.90', '89.00', null, null, '1', '[\"17\",\"49\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:52', null);
  4503. INSERT INTO `ibrand_goods_product` VALUES ('1493', '123', '100', 'C0111-17', '29.90', '89.00', null, null, '1', '[\"19\",\"40\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:52', null);
  4504. INSERT INTO `ibrand_goods_product` VALUES ('1494', '123', '100', 'C0111-18', '29.90', '89.00', null, null, '1', '[\"19\",\"41\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:52', null);
  4505. INSERT INTO `ibrand_goods_product` VALUES ('1495', '123', '100', 'C0111-19', '29.90', '89.00', null, null, '1', '[\"19\",\"42\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:52', null);
  4506. INSERT INTO `ibrand_goods_product` VALUES ('1496', '123', '100', 'C0111-20', '29.90', '89.00', null, null, '1', '[\"19\",\"43\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:52', null);
  4507. INSERT INTO `ibrand_goods_product` VALUES ('1497', '123', '100', 'C0111-21', '29.90', '89.00', null, null, '1', '[\"19\",\"44\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:52', null);
  4508. INSERT INTO `ibrand_goods_product` VALUES ('1498', '123', '100', 'C0111-22', '29.90', '89.00', null, null, '1', '[\"19\",\"45\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:52', null);
  4509. INSERT INTO `ibrand_goods_product` VALUES ('1499', '123', '100', 'C0111-23', '29.90', '89.00', null, null, '1', '[\"19\",\"48\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:52', null);
  4510. INSERT INTO `ibrand_goods_product` VALUES ('1500', '123', '100', 'C0111-24', '29.90', '89.00', null, null, '1', '[\"19\",\"49\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:52', null);
  4511. INSERT INTO `ibrand_goods_product` VALUES ('1501', '123', '100', 'C0111-25', '29.90', '89.00', null, null, '1', '[\"24\",\"40\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:52', null);
  4512. INSERT INTO `ibrand_goods_product` VALUES ('1502', '123', '100', 'C0111-26', '29.90', '89.00', null, null, '1', '[\"24\",\"41\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:52', null);
  4513. INSERT INTO `ibrand_goods_product` VALUES ('1503', '123', '100', 'C0111-27', '29.90', '89.00', null, null, '1', '[\"24\",\"42\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:52', null);
  4514. INSERT INTO `ibrand_goods_product` VALUES ('1504', '123', '100', 'C0111-28', '29.90', '89.00', null, null, '1', '[\"24\",\"43\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:52', null);
  4515. INSERT INTO `ibrand_goods_product` VALUES ('1505', '123', '100', 'C0111-29', '29.90', '89.00', null, null, '1', '[\"24\",\"44\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:52', null);
  4516. INSERT INTO `ibrand_goods_product` VALUES ('1506', '123', '100', 'C0111-30', '29.90', '89.00', null, null, '1', '[\"24\",\"45\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:52', null);
  4517. INSERT INTO `ibrand_goods_product` VALUES ('1507', '123', '100', 'C0111-31', '29.90', '89.00', null, null, '1', '[\"24\",\"48\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:52', null);
  4518. INSERT INTO `ibrand_goods_product` VALUES ('1508', '123', '100', 'C0111-32', '29.90', '89.00', null, null, '1', '[\"24\",\"49\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:53', null);
  4519. INSERT INTO `ibrand_goods_product` VALUES ('1509', '123', '100', 'C0111-33', '29.90', '89.00', null, null, '1', '[\"34\",\"40\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:53', null);
  4520. INSERT INTO `ibrand_goods_product` VALUES ('1510', '123', '100', 'C0111-34', '29.90', '89.00', null, null, '1', '[\"34\",\"41\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:53', null);
  4521. INSERT INTO `ibrand_goods_product` VALUES ('1511', '123', '100', 'C0111-35', '29.90', '89.00', null, null, '1', '[\"34\",\"42\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:53', null);
  4522. INSERT INTO `ibrand_goods_product` VALUES ('1512', '123', '100', 'C0111-36', '29.90', '89.00', null, null, '1', '[\"34\",\"43\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:53', null);
  4523. INSERT INTO `ibrand_goods_product` VALUES ('1513', '123', '100', 'C0111-37', '29.90', '89.00', null, null, '1', '[\"34\",\"44\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:53', null);
  4524. INSERT INTO `ibrand_goods_product` VALUES ('1514', '123', '100', 'C0111-38', '29.90', '89.00', null, null, '1', '[\"34\",\"45\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:53', null);
  4525. INSERT INTO `ibrand_goods_product` VALUES ('1515', '123', '100', 'C0111-39', '29.90', '89.00', null, null, '1', '[\"34\",\"48\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:53', null);
  4526. INSERT INTO `ibrand_goods_product` VALUES ('1516', '123', '100', 'C0111-40', '29.90', '89.00', null, null, '1', '[\"34\",\"49\"]', '2018-06-08 11:37:45', '2018-06-15 10:33:53', null);
  4527. INSERT INTO `ibrand_goods_product` VALUES ('1517', '123', '100', 'C0111-41', '29.90', '89.00', null, null, '1', '[\"35\",\"40\"]', '2018-06-08 11:37:46', '2018-06-15 10:33:53', null);
  4528. INSERT INTO `ibrand_goods_product` VALUES ('1518', '123', '100', 'C0111-42', '29.90', '89.00', null, null, '1', '[\"35\",\"41\"]', '2018-06-08 11:37:46', '2018-06-15 10:33:53', null);
  4529. INSERT INTO `ibrand_goods_product` VALUES ('1519', '123', '100', 'C0111-43', '29.90', '89.00', null, null, '1', '[\"35\",\"42\"]', '2018-06-08 11:37:46', '2018-06-15 10:33:53', null);
  4530. INSERT INTO `ibrand_goods_product` VALUES ('1520', '123', '100', 'C0111-44', '29.90', '89.00', null, null, '1', '[\"35\",\"43\"]', '2018-06-08 11:37:46', '2018-06-15 10:33:53', null);
  4531. INSERT INTO `ibrand_goods_product` VALUES ('1521', '123', '100', 'C0111-45', '29.90', '89.00', null, null, '1', '[\"35\",\"44\"]', '2018-06-08 11:37:46', '2018-06-15 10:33:53', null);
  4532. INSERT INTO `ibrand_goods_product` VALUES ('1522', '123', '100', 'C0111-46', '29.90', '89.00', null, null, '1', '[\"35\",\"45\"]', '2018-06-08 11:37:46', '2018-06-15 10:33:53', null);
  4533. INSERT INTO `ibrand_goods_product` VALUES ('1523', '123', '100', 'C0111-47', '29.90', '89.00', null, null, '1', '[\"35\",\"48\"]', '2018-06-08 11:37:46', '2018-06-15 10:33:53', null);
  4534. INSERT INTO `ibrand_goods_product` VALUES ('1524', '123', '100', 'C0111-48', '29.90', '89.00', null, null, '1', '[\"35\",\"49\"]', '2018-06-08 11:37:46', '2018-06-15 10:33:53', null);
  4535. INSERT INTO `ibrand_goods_product` VALUES ('1525', '123', '100', 'C0111-49', '29.90', '89.00', null, null, '1', '[\"38\",\"40\"]', '2018-06-08 11:37:46', '2018-06-15 10:33:53', null);
  4536. INSERT INTO `ibrand_goods_product` VALUES ('1526', '123', '100', 'C0111-50', '29.90', '89.00', null, null, '1', '[\"38\",\"41\"]', '2018-06-08 11:37:46', '2018-06-15 10:33:53', null);
  4537. INSERT INTO `ibrand_goods_product` VALUES ('1527', '123', '100', 'C0111-51', '29.90', '89.00', null, null, '1', '[\"38\",\"42\"]', '2018-06-08 11:37:46', '2018-06-15 10:33:53', null);
  4538. INSERT INTO `ibrand_goods_product` VALUES ('1528', '123', '100', 'C0111-52', '29.90', '89.00', null, null, '1', '[\"38\",\"43\"]', '2018-06-08 11:37:46', '2018-06-15 10:33:53', null);
  4539. INSERT INTO `ibrand_goods_product` VALUES ('1529', '123', '100', 'C0111-53', '29.90', '89.00', null, null, '1', '[\"38\",\"44\"]', '2018-06-08 11:37:46', '2018-06-15 10:33:53', null);
  4540. INSERT INTO `ibrand_goods_product` VALUES ('1530', '123', '100', 'C0111-54', '29.90', '89.00', null, null, '1', '[\"38\",\"45\"]', '2018-06-08 11:37:46', '2018-06-15 10:33:53', null);
  4541. INSERT INTO `ibrand_goods_product` VALUES ('1531', '123', '100', 'C0111-55', '29.90', '89.00', null, null, '1', '[\"38\",\"48\"]', '2018-06-08 11:37:46', '2018-06-15 10:33:53', null);
  4542. INSERT INTO `ibrand_goods_product` VALUES ('1532', '123', '100', 'C0111-56', '29.90', '89.00', null, null, '1', '[\"38\",\"49\"]', '2018-06-08 11:37:46', '2018-06-15 10:33:53', null);
  4543. INSERT INTO `ibrand_goods_product` VALUES ('1533', '123', '100', 'C0111-57', '29.90', '89.00', null, null, '1', '[\"40\",\"46\"]', '2018-06-08 11:37:46', '2018-06-15 10:33:53', null);
  4544. INSERT INTO `ibrand_goods_product` VALUES ('1534', '123', '100', 'C0111-58', '29.90', '89.00', null, null, '1', '[\"41\",\"46\"]', '2018-06-08 11:37:46', '2018-06-15 10:33:53', null);
  4545. INSERT INTO `ibrand_goods_product` VALUES ('1535', '123', '100', 'C0111-59', '29.90', '89.00', null, null, '1', '[\"42\",\"46\"]', '2018-06-08 11:37:46', '2018-06-15 10:33:53', null);
  4546. INSERT INTO `ibrand_goods_product` VALUES ('1536', '123', '100', 'C0111-60', '29.90', '89.00', null, null, '1', '[\"43\",\"46\"]', '2018-06-08 11:37:46', '2018-06-15 10:33:54', null);
  4547. INSERT INTO `ibrand_goods_product` VALUES ('1537', '123', '100', 'C0111-61', '29.90', '89.00', null, null, '1', '[\"44\",\"46\"]', '2018-06-08 11:37:46', '2018-06-15 10:33:54', null);
  4548. INSERT INTO `ibrand_goods_product` VALUES ('1538', '123', '100', 'C0111-62', '29.90', '89.00', null, null, '1', '[\"45\",\"46\"]', '2018-06-08 11:37:46', '2018-06-15 10:33:54', null);
  4549. INSERT INTO `ibrand_goods_product` VALUES ('1539', '123', '100', 'C0111-63', '29.90', '89.00', null, null, '1', '[\"46\",\"48\"]', '2018-06-08 11:37:46', '2018-06-15 10:33:54', null);
  4550. INSERT INTO `ibrand_goods_product` VALUES ('1540', '123', '100', 'C0111-64', '29.90', '89.00', null, null, '1', '[\"46\",\"49\"]', '2018-06-08 11:37:46', '2018-06-15 10:33:54', null);
  4551. INSERT INTO `ibrand_goods_product` VALUES ('1541', '124', '100', 'D014-1', '29.90', '119.00', null, null, '1', '[\"1\",\"39\"]', '2018-06-08 12:09:32', '2018-06-14 11:50:59', null);
  4552. INSERT INTO `ibrand_goods_product` VALUES ('1542', '124', '100', 'D014-2', '29.90', '119.00', null, null, '1', '[\"1\",\"40\"]', '2018-06-08 12:09:32', '2018-06-14 11:50:59', null);
  4553. INSERT INTO `ibrand_goods_product` VALUES ('1543', '124', '100', 'D014-3', '29.90', '119.00', null, null, '1', '[\"1\",\"41\"]', '2018-06-08 12:09:32', '2018-06-14 11:50:59', null);
  4554. INSERT INTO `ibrand_goods_product` VALUES ('1544', '124', '100', 'D014-4', '29.90', '119.00', null, null, '1', '[\"1\",\"42\"]', '2018-06-08 12:09:32', '2018-06-14 11:50:59', null);
  4555. INSERT INTO `ibrand_goods_product` VALUES ('1545', '124', '100', 'D014-5', '29.90', '119.00', null, null, '1', '[\"2\",\"39\"]', '2018-06-08 12:09:32', '2018-06-14 11:50:59', null);
  4556. INSERT INTO `ibrand_goods_product` VALUES ('1546', '124', '100', 'D014-6', '29.90', '119.00', null, null, '1', '[\"2\",\"40\"]', '2018-06-08 12:09:32', '2018-06-14 11:50:59', null);
  4557. INSERT INTO `ibrand_goods_product` VALUES ('1547', '124', '100', 'D014-7', '29.90', '119.00', null, null, '1', '[\"2\",\"41\"]', '2018-06-08 12:09:32', '2018-06-14 11:50:59', null);
  4558. INSERT INTO `ibrand_goods_product` VALUES ('1548', '124', '100', 'D014-8', '29.90', '119.00', null, null, '1', '[\"2\",\"42\"]', '2018-06-08 12:09:32', '2018-06-14 11:50:59', null);
  4559. INSERT INTO `ibrand_goods_product` VALUES ('1549', '124', '100', 'D014-9', '29.90', '119.00', null, null, '1', '[\"4\",\"39\"]', '2018-06-08 12:09:32', '2018-06-14 11:50:59', null);
  4560. INSERT INTO `ibrand_goods_product` VALUES ('1550', '124', '100', 'D014-10', '29.90', '119.00', null, null, '1', '[\"4\",\"40\"]', '2018-06-08 12:09:32', '2018-06-14 11:50:59', null);
  4561. INSERT INTO `ibrand_goods_product` VALUES ('1551', '124', '100', 'D014-11', '29.90', '119.00', null, null, '1', '[\"4\",\"41\"]', '2018-06-08 12:09:32', '2018-06-14 11:50:59', null);
  4562. INSERT INTO `ibrand_goods_product` VALUES ('1552', '124', '100', 'D014-12', '29.90', '119.00', null, null, '1', '[\"4\",\"42\"]', '2018-06-08 12:09:32', '2018-06-14 11:50:59', null);
  4563. INSERT INTO `ibrand_goods_product` VALUES ('1553', '124', '100', 'D014-13', '29.90', '119.00', null, null, '1', '[\"17\",\"39\"]', '2018-06-08 12:09:32', '2018-06-14 11:50:59', null);
  4564. INSERT INTO `ibrand_goods_product` VALUES ('1554', '124', '100', 'D014-14', '29.90', '119.00', null, null, '1', '[\"17\",\"40\"]', '2018-06-08 12:09:32', '2018-06-14 11:50:59', null);
  4565. INSERT INTO `ibrand_goods_product` VALUES ('1555', '124', '100', 'D014-15', '29.90', '119.00', null, null, '1', '[\"17\",\"41\"]', '2018-06-08 12:09:32', '2018-06-14 11:50:59', null);
  4566. INSERT INTO `ibrand_goods_product` VALUES ('1556', '124', '100', 'D014-16', '29.90', '119.00', null, null, '1', '[\"17\",\"42\"]', '2018-06-08 12:09:32', '2018-06-14 11:50:59', null);
  4567. INSERT INTO `ibrand_goods_product` VALUES ('1557', '124', '100', 'D014-17', '29.90', '119.00', null, null, '1', '[\"24\",\"39\"]', '2018-06-08 12:09:32', '2018-06-14 11:50:59', null);
  4568. INSERT INTO `ibrand_goods_product` VALUES ('1558', '124', '100', 'D014-18', '29.90', '119.00', null, null, '1', '[\"24\",\"40\"]', '2018-06-08 12:09:32', '2018-06-14 11:50:59', null);
  4569. INSERT INTO `ibrand_goods_product` VALUES ('1559', '124', '100', 'D014-19', '29.90', '119.00', null, null, '1', '[\"24\",\"41\"]', '2018-06-08 12:09:32', '2018-06-14 11:50:59', null);
  4570. INSERT INTO `ibrand_goods_product` VALUES ('1560', '124', '100', 'D014-20', '29.90', '119.00', null, null, '1', '[\"24\",\"42\"]', '2018-06-08 12:09:32', '2018-06-14 11:50:59', null);
  4571. INSERT INTO `ibrand_goods_product` VALUES ('1561', '124', '100', 'D014-21', '29.90', '119.00', null, null, '1', '[\"34\",\"39\"]', '2018-06-08 12:09:32', '2018-06-14 11:50:59', null);
  4572. INSERT INTO `ibrand_goods_product` VALUES ('1562', '124', '100', 'D014-22', '29.90', '119.00', null, null, '1', '[\"34\",\"40\"]', '2018-06-08 12:09:32', '2018-06-14 11:50:59', null);
  4573. INSERT INTO `ibrand_goods_product` VALUES ('1563', '124', '100', 'D014-23', '29.90', '119.00', null, null, '1', '[\"34\",\"41\"]', '2018-06-08 12:09:32', '2018-06-14 11:51:00', null);
  4574. INSERT INTO `ibrand_goods_product` VALUES ('1564', '124', '100', 'D014-24', '29.90', '119.00', null, null, '1', '[\"34\",\"42\"]', '2018-06-08 12:09:32', '2018-06-14 11:51:00', null);
  4575. INSERT INTO `ibrand_goods_product` VALUES ('1565', '124', '100', 'D014-25', '29.90', '119.00', null, null, '1', '[\"35\",\"39\"]', '2018-06-08 12:09:32', '2018-06-14 11:51:00', null);
  4576. INSERT INTO `ibrand_goods_product` VALUES ('1566', '124', '100', 'D014-26', '29.90', '119.00', null, null, '1', '[\"35\",\"40\"]', '2018-06-08 12:09:32', '2018-06-14 11:51:00', null);
  4577. INSERT INTO `ibrand_goods_product` VALUES ('1567', '124', '100', 'D014-27', '29.90', '119.00', null, null, '1', '[\"35\",\"41\"]', '2018-06-08 12:09:32', '2018-06-14 11:51:00', null);
  4578. INSERT INTO `ibrand_goods_product` VALUES ('1568', '124', '100', 'D014-28', '29.90', '119.00', null, null, '1', '[\"35\",\"42\"]', '2018-06-08 12:09:32', '2018-06-14 11:51:00', null);
  4579. INSERT INTO `ibrand_goods_product` VALUES ('1569', '124', '100', 'D014-29', '29.90', '119.00', null, null, '1', '[\"39\",\"46\"]', '2018-06-08 12:09:32', '2018-06-14 11:51:00', null);
  4580. INSERT INTO `ibrand_goods_product` VALUES ('1570', '124', '100', 'D014-30', '29.90', '119.00', null, null, '1', '[\"40\",\"46\"]', '2018-06-08 12:09:32', '2018-06-14 11:51:00', null);
  4581. INSERT INTO `ibrand_goods_product` VALUES ('1571', '124', '100', 'D014-31', '29.90', '119.00', null, null, '1', '[\"41\",\"46\"]', '2018-06-08 12:09:32', '2018-06-14 11:51:00', null);
  4582. INSERT INTO `ibrand_goods_product` VALUES ('1572', '124', '100', 'D014-32', '29.90', '119.00', null, null, '1', '[\"42\",\"46\"]', '2018-06-08 12:09:32', '2018-06-14 11:51:00', null);
  4583. INSERT INTO `ibrand_goods_product` VALUES ('1573', '125', '100', 'A0111-12-1', '39.00', '99.00', null, null, '1', '[\"1\",\"39\"]', '2018-06-08 14:11:13', '2018-06-08 14:11:13', null);
  4584. INSERT INTO `ibrand_goods_product` VALUES ('1574', '125', '100', 'A0111-12-2', '39.00', '99.00', null, null, '1', '[\"1\",\"40\"]', '2018-06-08 14:11:13', '2018-06-08 14:11:13', null);
  4585. INSERT INTO `ibrand_goods_product` VALUES ('1575', '125', '100', 'A0111-12-3', '39.00', '99.00', null, null, '1', '[\"1\",\"41\"]', '2018-06-08 14:11:13', '2018-06-08 14:11:13', null);
  4586. INSERT INTO `ibrand_goods_product` VALUES ('1576', '125', '100', 'A0111-12-4', '39.00', '99.00', null, null, '1', '[\"1\",\"42\"]', '2018-06-08 14:11:13', '2018-06-08 14:11:13', null);
  4587. INSERT INTO `ibrand_goods_product` VALUES ('1577', '125', '100', 'A0111-12-5', '39.00', '99.00', null, null, '1', '[\"1\",\"43\"]', '2018-06-08 14:11:13', '2018-06-08 14:11:13', null);
  4588. INSERT INTO `ibrand_goods_product` VALUES ('1578', '125', '100', 'A0111-12-6', '39.00', '99.00', null, null, '1', '[\"1\",\"44\"]', '2018-06-08 14:11:13', '2018-06-08 14:11:13', null);
  4589. INSERT INTO `ibrand_goods_product` VALUES ('1579', '125', '100', 'A0111-12-7', '39.00', '99.00', null, null, '1', '[\"4\",\"39\"]', '2018-06-08 14:11:13', '2018-06-08 14:11:13', null);
  4590. INSERT INTO `ibrand_goods_product` VALUES ('1580', '125', '100', 'A0111-12-8', '39.00', '99.00', null, null, '1', '[\"4\",\"40\"]', '2018-06-08 14:11:13', '2018-06-08 14:11:13', null);
  4591. INSERT INTO `ibrand_goods_product` VALUES ('1581', '125', '100', 'A0111-12-9', '39.00', '99.00', null, null, '1', '[\"4\",\"41\"]', '2018-06-08 14:11:13', '2018-06-08 14:11:13', null);
  4592. INSERT INTO `ibrand_goods_product` VALUES ('1582', '125', '100', 'A0111-12-10', '39.00', '99.00', null, null, '1', '[\"4\",\"42\"]', '2018-06-08 14:11:13', '2018-06-08 14:11:13', null);
  4593. INSERT INTO `ibrand_goods_product` VALUES ('1583', '125', '100', 'A0111-12-11', '39.00', '99.00', null, null, '1', '[\"4\",\"43\"]', '2018-06-08 14:11:13', '2018-06-08 14:11:13', null);
  4594. INSERT INTO `ibrand_goods_product` VALUES ('1584', '125', '100', 'A0111-12-12', '39.00', '99.00', null, null, '1', '[\"4\",\"44\"]', '2018-06-08 14:11:13', '2018-06-08 14:11:13', null);
  4595. INSERT INTO `ibrand_goods_product` VALUES ('1585', '125', '100', 'A0111-12-13', '39.00', '99.00', null, null, '1', '[\"17\",\"39\"]', '2018-06-08 14:11:13', '2018-06-08 14:11:13', null);
  4596. INSERT INTO `ibrand_goods_product` VALUES ('1586', '125', '100', 'A0111-12-14', '39.00', '99.00', null, null, '1', '[\"17\",\"40\"]', '2018-06-08 14:11:13', '2018-06-08 14:11:13', null);
  4597. INSERT INTO `ibrand_goods_product` VALUES ('1587', '125', '100', 'A0111-12-15', '39.00', '99.00', null, null, '1', '[\"17\",\"41\"]', '2018-06-08 14:11:13', '2018-06-08 14:11:13', null);
  4598. INSERT INTO `ibrand_goods_product` VALUES ('1588', '125', '100', 'A0111-12-16', '39.00', '99.00', null, null, '1', '[\"17\",\"42\"]', '2018-06-08 14:11:13', '2018-06-08 14:11:13', null);
  4599. INSERT INTO `ibrand_goods_product` VALUES ('1589', '125', '100', 'A0111-12-17', '39.00', '99.00', null, null, '1', '[\"17\",\"43\"]', '2018-06-08 14:11:13', '2018-06-08 14:11:13', null);
  4600. INSERT INTO `ibrand_goods_product` VALUES ('1590', '125', '100', 'A0111-12-18', '39.00', '99.00', null, null, '1', '[\"17\",\"44\"]', '2018-06-08 14:11:13', '2018-06-08 14:11:13', null);
  4601. INSERT INTO `ibrand_goods_product` VALUES ('1591', '125', '100', 'A0111-12-19', '39.00', '99.00', null, null, '1', '[\"24\",\"39\"]', '2018-06-08 14:11:14', '2018-06-08 14:11:14', null);
  4602. INSERT INTO `ibrand_goods_product` VALUES ('1592', '125', '100', 'A0111-12-20', '39.00', '99.00', null, null, '1', '[\"24\",\"40\"]', '2018-06-08 14:11:14', '2018-06-08 14:11:14', null);
  4603. INSERT INTO `ibrand_goods_product` VALUES ('1593', '125', '100', 'A0111-12-21', '39.00', '99.00', null, null, '1', '[\"24\",\"41\"]', '2018-06-08 14:11:14', '2018-06-08 14:11:14', null);
  4604. INSERT INTO `ibrand_goods_product` VALUES ('1594', '125', '100', 'A0111-12-22', '39.00', '99.00', null, null, '1', '[\"24\",\"42\"]', '2018-06-08 14:11:14', '2018-06-08 14:11:14', null);
  4605. INSERT INTO `ibrand_goods_product` VALUES ('1595', '125', '100', 'A0111-12-23', '39.00', '99.00', null, null, '1', '[\"24\",\"43\"]', '2018-06-08 14:11:14', '2018-06-08 14:11:14', null);
  4606. INSERT INTO `ibrand_goods_product` VALUES ('1596', '125', '100', 'A0111-12-24', '39.00', '99.00', null, null, '1', '[\"24\",\"44\"]', '2018-06-08 14:11:14', '2018-06-08 14:11:14', null);
  4607. INSERT INTO `ibrand_goods_product` VALUES ('1597', '125', '100', 'A0111-12-25', '39.00', '99.00', null, null, '1', '[\"34\",\"39\"]', '2018-06-08 14:11:14', '2018-06-08 14:11:14', null);
  4608. INSERT INTO `ibrand_goods_product` VALUES ('1598', '125', '100', 'A0111-12-26', '39.00', '99.00', null, null, '1', '[\"34\",\"40\"]', '2018-06-08 14:11:14', '2018-06-08 14:11:14', null);
  4609. INSERT INTO `ibrand_goods_product` VALUES ('1599', '125', '100', 'A0111-12-27', '39.00', '99.00', null, null, '1', '[\"34\",\"41\"]', '2018-06-08 14:11:14', '2018-06-08 14:11:14', null);
  4610. INSERT INTO `ibrand_goods_product` VALUES ('1600', '125', '100', 'A0111-12-28', '39.00', '99.00', null, null, '1', '[\"34\",\"42\"]', '2018-06-08 14:11:14', '2018-06-08 14:11:14', null);
  4611. INSERT INTO `ibrand_goods_product` VALUES ('1601', '125', '100', 'A0111-12-29', '39.00', '99.00', null, null, '1', '[\"34\",\"43\"]', '2018-06-08 14:11:14', '2018-06-08 14:11:14', null);
  4612. INSERT INTO `ibrand_goods_product` VALUES ('1602', '125', '100', 'A0111-12-30', '39.00', '99.00', null, null, '1', '[\"34\",\"44\"]', '2018-06-08 14:11:14', '2018-06-08 14:11:14', null);
  4613. INSERT INTO `ibrand_goods_product` VALUES ('1603', '125', '100', 'A0111-12-31', '39.00', '99.00', null, null, '1', '[\"35\",\"39\"]', '2018-06-08 14:11:14', '2018-06-08 14:11:14', null);
  4614. INSERT INTO `ibrand_goods_product` VALUES ('1604', '125', '100', 'A0111-12-32', '39.00', '99.00', null, null, '1', '[\"35\",\"40\"]', '2018-06-08 14:11:14', '2018-06-08 14:11:14', null);
  4615. INSERT INTO `ibrand_goods_product` VALUES ('1605', '125', '100', 'A0111-12-33', '39.00', '99.00', null, null, '1', '[\"35\",\"41\"]', '2018-06-08 14:11:14', '2018-06-08 14:11:14', null);
  4616. INSERT INTO `ibrand_goods_product` VALUES ('1606', '125', '100', 'A0111-12-34', '39.00', '99.00', null, null, '1', '[\"35\",\"42\"]', '2018-06-08 14:11:14', '2018-06-08 14:11:14', null);
  4617. INSERT INTO `ibrand_goods_product` VALUES ('1607', '125', '100', 'A0111-12-35', '39.00', '99.00', null, null, '1', '[\"35\",\"43\"]', '2018-06-08 14:11:14', '2018-06-08 14:11:14', null);
  4618. INSERT INTO `ibrand_goods_product` VALUES ('1608', '125', '100', 'A0111-12-36', '39.00', '99.00', null, null, '1', '[\"35\",\"44\"]', '2018-06-08 14:11:14', '2018-06-08 14:11:14', null);
  4619. INSERT INTO `ibrand_goods_product` VALUES ('1609', '125', '100', 'A0111-12-37', '39.00', '99.00', null, null, '1', '[\"39\",\"46\"]', '2018-06-08 14:11:14', '2018-06-08 14:11:14', null);
  4620. INSERT INTO `ibrand_goods_product` VALUES ('1610', '125', '100', 'A0111-12-38', '39.00', '99.00', null, null, '1', '[\"40\",\"46\"]', '2018-06-08 14:11:14', '2018-06-08 14:11:14', null);
  4621. INSERT INTO `ibrand_goods_product` VALUES ('1611', '125', '100', 'A0111-12-39', '39.00', '99.00', null, null, '1', '[\"41\",\"46\"]', '2018-06-08 14:11:14', '2018-06-08 14:11:14', null);
  4622. INSERT INTO `ibrand_goods_product` VALUES ('1612', '125', '100', 'A0111-12-40', '39.00', '99.00', null, null, '1', '[\"42\",\"46\"]', '2018-06-08 14:11:14', '2018-06-08 14:11:14', null);
  4623. INSERT INTO `ibrand_goods_product` VALUES ('1613', '125', '100', 'A0111-12-41', '39.00', '99.00', null, null, '1', '[\"43\",\"46\"]', '2018-06-08 14:11:14', '2018-06-08 14:11:14', null);
  4624. INSERT INTO `ibrand_goods_product` VALUES ('1614', '125', '100', 'A0111-12-42', '39.00', '99.00', null, null, '1', '[\"44\",\"46\"]', '2018-06-08 14:11:14', '2018-06-08 14:11:14', null);
  4625. INSERT INTO `ibrand_goods_product` VALUES ('1615', '126', '100', 'B0121-1', '58.00', '168.00', null, null, '1', '[\"1\",\"39\"]', '2018-06-08 14:46:06', '2018-06-08 14:46:06', null);
  4626. INSERT INTO `ibrand_goods_product` VALUES ('1616', '126', '100', 'B0121-2', '58.00', '168.00', null, null, '1', '[\"1\",\"40\"]', '2018-06-08 14:46:06', '2018-06-08 14:46:06', null);
  4627. INSERT INTO `ibrand_goods_product` VALUES ('1617', '126', '100', 'B0121-3', '58.00', '168.00', null, null, '1', '[\"1\",\"41\"]', '2018-06-08 14:46:06', '2018-06-08 14:46:06', null);
  4628. INSERT INTO `ibrand_goods_product` VALUES ('1618', '126', '100', 'B0121-4', '58.00', '168.00', null, null, '1', '[\"1\",\"42\"]', '2018-06-08 14:46:06', '2018-06-08 14:46:06', null);
  4629. INSERT INTO `ibrand_goods_product` VALUES ('1619', '126', '100', 'B0121-5', '58.00', '168.00', null, null, '1', '[\"1\",\"43\"]', '2018-06-08 14:46:06', '2018-06-08 14:46:06', null);
  4630. INSERT INTO `ibrand_goods_product` VALUES ('1620', '126', '100', 'B0121-6', '58.00', '168.00', null, null, '1', '[\"8\",\"39\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4631. INSERT INTO `ibrand_goods_product` VALUES ('1621', '126', '100', 'B0121-7', '58.00', '168.00', null, null, '1', '[\"8\",\"40\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4632. INSERT INTO `ibrand_goods_product` VALUES ('1622', '126', '100', 'B0121-8', '58.00', '168.00', null, null, '1', '[\"8\",\"41\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4633. INSERT INTO `ibrand_goods_product` VALUES ('1623', '126', '100', 'B0121-9', '58.00', '168.00', null, null, '1', '[\"8\",\"42\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4634. INSERT INTO `ibrand_goods_product` VALUES ('1624', '126', '100', 'B0121-10', '58.00', '168.00', null, null, '1', '[\"8\",\"43\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4635. INSERT INTO `ibrand_goods_product` VALUES ('1625', '126', '100', 'B0121-11', '58.00', '168.00', null, null, '1', '[\"14\",\"39\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4636. INSERT INTO `ibrand_goods_product` VALUES ('1626', '126', '100', 'B0121-12', '58.00', '168.00', null, null, '1', '[\"14\",\"40\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4637. INSERT INTO `ibrand_goods_product` VALUES ('1627', '126', '100', 'B0121-13', '58.00', '168.00', null, null, '1', '[\"14\",\"41\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4638. INSERT INTO `ibrand_goods_product` VALUES ('1628', '126', '100', 'B0121-14', '58.00', '168.00', null, null, '1', '[\"14\",\"42\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4639. INSERT INTO `ibrand_goods_product` VALUES ('1629', '126', '100', 'B0121-15', '58.00', '168.00', null, null, '1', '[\"14\",\"43\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4640. INSERT INTO `ibrand_goods_product` VALUES ('1630', '126', '100', 'B0121-16', '58.00', '168.00', null, null, '1', '[\"18\",\"39\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4641. INSERT INTO `ibrand_goods_product` VALUES ('1631', '126', '100', 'B0121-17', '58.00', '168.00', null, null, '1', '[\"18\",\"40\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4642. INSERT INTO `ibrand_goods_product` VALUES ('1632', '126', '100', 'B0121-18', '58.00', '168.00', null, null, '1', '[\"18\",\"41\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4643. INSERT INTO `ibrand_goods_product` VALUES ('1633', '126', '100', 'B0121-19', '58.00', '168.00', null, null, '1', '[\"18\",\"42\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4644. INSERT INTO `ibrand_goods_product` VALUES ('1634', '126', '100', 'B0121-20', '58.00', '168.00', null, null, '1', '[\"18\",\"43\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4645. INSERT INTO `ibrand_goods_product` VALUES ('1635', '126', '100', 'B0121-21', '58.00', '168.00', null, null, '1', '[\"21\",\"39\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4646. INSERT INTO `ibrand_goods_product` VALUES ('1636', '126', '100', 'B0121-22', '58.00', '168.00', null, null, '1', '[\"21\",\"40\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4647. INSERT INTO `ibrand_goods_product` VALUES ('1637', '126', '100', 'B0121-23', '58.00', '168.00', null, null, '1', '[\"21\",\"41\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4648. INSERT INTO `ibrand_goods_product` VALUES ('1638', '126', '100', 'B0121-24', '58.00', '168.00', null, null, '1', '[\"21\",\"42\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4649. INSERT INTO `ibrand_goods_product` VALUES ('1639', '126', '100', 'B0121-25', '58.00', '168.00', null, null, '1', '[\"21\",\"43\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4650. INSERT INTO `ibrand_goods_product` VALUES ('1640', '126', '100', 'B0121-26', '58.00', '168.00', null, null, '1', '[\"35\",\"39\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4651. INSERT INTO `ibrand_goods_product` VALUES ('1641', '126', '100', 'B0121-27', '58.00', '168.00', null, null, '1', '[\"35\",\"40\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4652. INSERT INTO `ibrand_goods_product` VALUES ('1642', '126', '100', 'B0121-28', '58.00', '168.00', null, null, '1', '[\"35\",\"41\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4653. INSERT INTO `ibrand_goods_product` VALUES ('1643', '126', '100', 'B0121-29', '58.00', '168.00', null, null, '1', '[\"35\",\"42\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4654. INSERT INTO `ibrand_goods_product` VALUES ('1644', '126', '100', 'B0121-30', '58.00', '168.00', null, null, '1', '[\"35\",\"43\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4655. INSERT INTO `ibrand_goods_product` VALUES ('1645', '126', '100', 'B0121-31', '58.00', '168.00', null, null, '1', '[\"37\",\"39\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4656. INSERT INTO `ibrand_goods_product` VALUES ('1646', '126', '100', 'B0121-32', '58.00', '168.00', null, null, '1', '[\"37\",\"40\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4657. INSERT INTO `ibrand_goods_product` VALUES ('1647', '126', '100', 'B0121-33', '58.00', '168.00', null, null, '1', '[\"37\",\"41\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4658. INSERT INTO `ibrand_goods_product` VALUES ('1648', '126', '100', 'B0121-34', '58.00', '168.00', null, null, '1', '[\"37\",\"42\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4659. INSERT INTO `ibrand_goods_product` VALUES ('1649', '126', '100', 'B0121-35', '58.00', '168.00', null, null, '1', '[\"37\",\"43\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4660. INSERT INTO `ibrand_goods_product` VALUES ('1650', '126', '100', 'B0121-36', '58.00', '168.00', null, null, '1', '[\"39\",\"46\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4661. INSERT INTO `ibrand_goods_product` VALUES ('1651', '126', '100', 'B0121-37', '58.00', '168.00', null, null, '1', '[\"40\",\"46\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4662. INSERT INTO `ibrand_goods_product` VALUES ('1652', '126', '100', 'B0121-38', '58.00', '168.00', null, null, '1', '[\"41\",\"46\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4663. INSERT INTO `ibrand_goods_product` VALUES ('1653', '126', '100', 'B0121-39', '58.00', '168.00', null, null, '1', '[\"42\",\"46\"]', '2018-06-08 14:46:07', '2018-06-08 14:46:07', null);
  4664. INSERT INTO `ibrand_goods_product` VALUES ('1654', '126', '100', 'B0121-40', '58.00', '168.00', null, null, '1', '[\"43\",\"46\"]', '2018-06-08 14:46:08', '2018-06-08 14:46:08', null);
  4665. INSERT INTO `ibrand_goods_product` VALUES ('1655', '127', '100', 'B0111-12-1', '58.00', '168.00', null, null, '1', '[\"1\",\"39\"]', '2018-06-08 15:07:40', '2018-06-08 15:07:40', null);
  4666. INSERT INTO `ibrand_goods_product` VALUES ('1656', '127', '100', 'B0111-12-2', '58.00', '168.00', null, null, '1', '[\"1\",\"40\"]', '2018-06-08 15:07:40', '2018-06-08 15:07:40', null);
  4667. INSERT INTO `ibrand_goods_product` VALUES ('1657', '127', '100', 'B0111-12-3', '58.00', '168.00', null, null, '1', '[\"1\",\"41\"]', '2018-06-08 15:07:40', '2018-06-08 15:07:40', null);
  4668. INSERT INTO `ibrand_goods_product` VALUES ('1658', '127', '100', 'B0111-12-4', '58.00', '168.00', null, null, '1', '[\"1\",\"42\"]', '2018-06-08 15:07:40', '2018-06-08 15:07:40', null);
  4669. INSERT INTO `ibrand_goods_product` VALUES ('1659', '127', '100', 'B0111-12-5', '58.00', '168.00', null, null, '1', '[\"1\",\"43\"]', '2018-06-08 15:07:40', '2018-06-08 15:07:40', null);
  4670. INSERT INTO `ibrand_goods_product` VALUES ('1660', '127', '100', 'B0111-12-6', '58.00', '168.00', null, null, '1', '[\"8\",\"39\"]', '2018-06-08 15:07:40', '2018-06-08 15:07:40', null);
  4671. INSERT INTO `ibrand_goods_product` VALUES ('1661', '127', '100', 'B0111-12-7', '58.00', '168.00', null, null, '1', '[\"8\",\"40\"]', '2018-06-08 15:07:41', '2018-06-08 15:07:41', null);
  4672. INSERT INTO `ibrand_goods_product` VALUES ('1662', '127', '100', 'B0111-12-8', '58.00', '168.00', null, null, '1', '[\"8\",\"41\"]', '2018-06-08 15:07:41', '2018-06-08 15:07:41', null);
  4673. INSERT INTO `ibrand_goods_product` VALUES ('1663', '127', '100', 'B0111-12-9', '58.00', '168.00', null, null, '1', '[\"8\",\"42\"]', '2018-06-08 15:07:41', '2018-06-08 15:07:41', null);
  4674. INSERT INTO `ibrand_goods_product` VALUES ('1664', '127', '100', 'B0111-12-10', '58.00', '168.00', null, null, '1', '[\"8\",\"43\"]', '2018-06-08 15:07:41', '2018-06-08 15:07:41', null);
  4675. INSERT INTO `ibrand_goods_product` VALUES ('1665', '127', '100', 'B0111-12-16', '58.00', '168.00', null, null, '1', '[\"18\",\"39\"]', '2018-06-08 15:07:41', '2018-06-08 15:07:41', null);
  4676. INSERT INTO `ibrand_goods_product` VALUES ('1666', '127', '100', 'B0111-12-17', '58.00', '168.00', null, null, '1', '[\"18\",\"40\"]', '2018-06-08 15:07:41', '2018-06-08 15:07:41', null);
  4677. INSERT INTO `ibrand_goods_product` VALUES ('1667', '127', '100', 'B0111-12-18', '58.00', '168.00', null, null, '1', '[\"18\",\"41\"]', '2018-06-08 15:07:41', '2018-06-08 15:07:41', null);
  4678. INSERT INTO `ibrand_goods_product` VALUES ('1668', '127', '100', 'B0111-12-19', '58.00', '168.00', null, null, '1', '[\"18\",\"42\"]', '2018-06-08 15:07:41', '2018-06-08 15:07:41', null);
  4679. INSERT INTO `ibrand_goods_product` VALUES ('1669', '127', '100', 'B0111-12-20', '58.00', '168.00', null, null, '1', '[\"18\",\"43\"]', '2018-06-08 15:07:41', '2018-06-08 15:07:41', null);
  4680. INSERT INTO `ibrand_goods_product` VALUES ('1670', '127', '100', 'B0111-12-21', '58.00', '168.00', null, null, '1', '[\"21\",\"39\"]', '2018-06-08 15:07:41', '2018-06-08 15:07:41', null);
  4681. INSERT INTO `ibrand_goods_product` VALUES ('1671', '127', '100', 'B0111-12-22', '58.00', '168.00', null, null, '1', '[\"21\",\"40\"]', '2018-06-08 15:07:41', '2018-06-08 15:07:41', null);
  4682. INSERT INTO `ibrand_goods_product` VALUES ('1672', '127', '100', 'B0111-12-23', '58.00', '168.00', null, null, '1', '[\"21\",\"41\"]', '2018-06-08 15:07:41', '2018-06-08 15:07:41', null);
  4683. INSERT INTO `ibrand_goods_product` VALUES ('1673', '127', '100', 'B0111-12-24', '58.00', '168.00', null, null, '1', '[\"21\",\"42\"]', '2018-06-08 15:07:41', '2018-06-08 15:07:41', null);
  4684. INSERT INTO `ibrand_goods_product` VALUES ('1674', '127', '100', 'B0111-12-25', '58.00', '168.00', null, null, '1', '[\"21\",\"43\"]', '2018-06-08 15:07:41', '2018-06-08 15:07:41', null);
  4685. INSERT INTO `ibrand_goods_product` VALUES ('1675', '127', '100', 'B0111-12-26', '58.00', '168.00', null, null, '1', '[\"35\",\"39\"]', '2018-06-08 15:07:41', '2018-06-08 15:07:41', null);
  4686. INSERT INTO `ibrand_goods_product` VALUES ('1676', '127', '100', 'B0111-12-27', '58.00', '168.00', null, null, '1', '[\"35\",\"40\"]', '2018-06-08 15:07:41', '2018-06-08 15:07:41', null);
  4687. INSERT INTO `ibrand_goods_product` VALUES ('1677', '127', '100', 'B0111-12-28', '58.00', '168.00', null, null, '1', '[\"35\",\"41\"]', '2018-06-08 15:07:41', '2018-06-08 15:07:41', null);
  4688. INSERT INTO `ibrand_goods_product` VALUES ('1678', '127', '100', 'B0111-12-29', '58.00', '168.00', null, null, '1', '[\"35\",\"42\"]', '2018-06-08 15:07:41', '2018-06-08 15:07:41', null);
  4689. INSERT INTO `ibrand_goods_product` VALUES ('1679', '127', '100', 'B0111-12-30', '58.00', '168.00', null, null, '1', '[\"35\",\"43\"]', '2018-06-08 15:07:41', '2018-06-08 15:07:41', null);
  4690. INSERT INTO `ibrand_goods_product` VALUES ('1680', '127', '100', 'B0111-12-31', '58.00', '168.00', null, null, '1', '[\"37\",\"39\"]', '2018-06-08 15:07:41', '2018-06-08 15:07:41', null);
  4691. INSERT INTO `ibrand_goods_product` VALUES ('1681', '127', '100', 'B0111-12-32', '58.00', '168.00', null, null, '1', '[\"37\",\"40\"]', '2018-06-08 15:07:41', '2018-06-08 15:07:41', null);
  4692. INSERT INTO `ibrand_goods_product` VALUES ('1682', '127', '100', 'B0111-12-33', '58.00', '168.00', null, null, '1', '[\"37\",\"41\"]', '2018-06-08 15:07:41', '2018-06-08 15:07:41', null);
  4693. INSERT INTO `ibrand_goods_product` VALUES ('1683', '127', '100', 'B0111-12-34', '58.00', '168.00', null, null, '1', '[\"37\",\"42\"]', '2018-06-08 15:07:41', '2018-06-08 15:07:41', null);
  4694. INSERT INTO `ibrand_goods_product` VALUES ('1684', '127', '100', 'B0111-12-35', '58.00', '168.00', null, null, '1', '[\"37\",\"43\"]', '2018-06-08 15:07:41', '2018-06-08 15:07:41', null);
  4695. INSERT INTO `ibrand_goods_product` VALUES ('1685', '127', '100', 'B0111-12-36', '58.00', '168.00', null, null, '1', '[\"39\",\"46\"]', '2018-06-08 15:07:41', '2018-06-08 15:07:41', null);
  4696. INSERT INTO `ibrand_goods_product` VALUES ('1686', '127', '100', 'B0111-12-37', '58.00', '168.00', null, null, '1', '[\"40\",\"46\"]', '2018-06-08 15:07:41', '2018-06-08 15:07:41', null);
  4697. INSERT INTO `ibrand_goods_product` VALUES ('1687', '127', '100', 'B0111-12-38', '58.00', '168.00', null, null, '1', '[\"41\",\"46\"]', '2018-06-08 15:07:41', '2018-06-08 15:07:41', null);
  4698. INSERT INTO `ibrand_goods_product` VALUES ('1688', '127', '100', 'B0111-12-39', '58.00', '168.00', null, null, '1', '[\"42\",\"46\"]', '2018-06-08 15:07:41', '2018-06-08 15:07:41', null);
  4699. INSERT INTO `ibrand_goods_product` VALUES ('1689', '127', '100', 'B0111-12-40', '58.00', '168.00', null, null, '1', '[\"43\",\"46\"]', '2018-06-08 15:07:42', '2018-06-08 15:07:42', null);
  4700. INSERT INTO `ibrand_goods_product` VALUES ('1760', '130', '100', 'B0111-12-41', '39.90', '168.00', null, null, '1', '[\"1\",\"39\"]', '2018-06-11 13:21:48', '2018-06-15 10:35:44', null);
  4701. INSERT INTO `ibrand_goods_product` VALUES ('1761', '130', '100', 'B0111-12-42', '39.90', '168.00', null, null, '1', '[\"1\",\"40\"]', '2018-06-11 13:21:48', '2018-06-15 10:35:44', null);
  4702. INSERT INTO `ibrand_goods_product` VALUES ('1762', '130', '100', 'B0111-12-43', '39.90', '168.00', null, null, '1', '[\"1\",\"41\"]', '2018-06-11 13:21:48', '2018-06-15 10:35:44', null);
  4703. INSERT INTO `ibrand_goods_product` VALUES ('1763', '130', '100', 'B0111-12-44', '39.90', '168.00', null, null, '1', '[\"1\",\"42\"]', '2018-06-11 13:21:48', '2018-06-15 10:35:44', null);
  4704. INSERT INTO `ibrand_goods_product` VALUES ('1764', '130', '100', 'B0111-12-45', '39.90', '168.00', null, null, '1', '[\"1\",\"43\"]', '2018-06-11 13:21:48', '2018-06-15 10:35:44', null);
  4705. INSERT INTO `ibrand_goods_product` VALUES ('1765', '130', '100', 'B0111-12-46', '39.90', '168.00', null, null, '1', '[\"8\",\"39\"]', '2018-06-11 13:21:48', '2018-06-15 10:35:44', null);
  4706. INSERT INTO `ibrand_goods_product` VALUES ('1766', '130', '100', 'B0111-12-47', '39.90', '168.00', null, null, '1', '[\"8\",\"40\"]', '2018-06-11 13:21:48', '2018-06-15 10:35:44', null);
  4707. INSERT INTO `ibrand_goods_product` VALUES ('1767', '130', '100', 'B0111-12-48', '39.90', '168.00', null, null, '1', '[\"8\",\"41\"]', '2018-06-11 13:21:48', '2018-06-15 10:35:44', null);
  4708. INSERT INTO `ibrand_goods_product` VALUES ('1768', '130', '100', 'B0111-12-49', '39.90', '168.00', null, null, '1', '[\"8\",\"42\"]', '2018-06-11 13:21:48', '2018-06-15 10:35:44', null);
  4709. INSERT INTO `ibrand_goods_product` VALUES ('1769', '130', '100', 'B0111-12-50', '39.90', '168.00', null, null, '1', '[\"8\",\"43\"]', '2018-06-11 13:21:48', '2018-06-15 10:35:44', null);
  4710. INSERT INTO `ibrand_goods_product` VALUES ('1770', '130', '100', 'B0111-12-51', '39.90', '168.00', null, null, '1', '[\"18\",\"39\"]', '2018-06-11 13:21:49', '2018-06-15 10:35:44', null);
  4711. INSERT INTO `ibrand_goods_product` VALUES ('1771', '130', '100', 'B0111-12-52', '39.90', '168.00', null, null, '1', '[\"18\",\"40\"]', '2018-06-11 13:21:49', '2018-06-15 10:35:44', null);
  4712. INSERT INTO `ibrand_goods_product` VALUES ('1772', '130', '100', 'B0111-12-53', '39.90', '168.00', null, null, '1', '[\"18\",\"41\"]', '2018-06-11 13:21:49', '2018-06-15 10:35:44', null);
  4713. INSERT INTO `ibrand_goods_product` VALUES ('1773', '130', '100', 'B0111-12-54', '39.90', '168.00', null, null, '1', '[\"18\",\"42\"]', '2018-06-11 13:21:49', '2018-06-15 10:35:44', null);
  4714. INSERT INTO `ibrand_goods_product` VALUES ('1774', '130', '100', 'B0111-12-55', '39.90', '168.00', null, null, '1', '[\"18\",\"43\"]', '2018-06-11 13:21:49', '2018-06-15 10:35:44', null);
  4715. INSERT INTO `ibrand_goods_product` VALUES ('1775', '130', '100', 'B0111-12-56', '39.90', '168.00', null, null, '1', '[\"21\",\"39\"]', '2018-06-11 13:21:49', '2018-06-15 10:35:44', null);
  4716. INSERT INTO `ibrand_goods_product` VALUES ('1776', '130', '100', 'B0111-12-57', '39.90', '168.00', null, null, '1', '[\"21\",\"40\"]', '2018-06-11 13:21:49', '2018-06-15 10:35:44', null);
  4717. INSERT INTO `ibrand_goods_product` VALUES ('1777', '130', '100', 'B0111-12-58', '39.90', '168.00', null, null, '1', '[\"21\",\"41\"]', '2018-06-11 13:21:49', '2018-06-15 10:35:44', null);
  4718. INSERT INTO `ibrand_goods_product` VALUES ('1778', '130', '100', 'B0111-12-59', '39.90', '168.00', null, null, '1', '[\"21\",\"42\"]', '2018-06-11 13:21:49', '2018-06-15 10:35:44', null);
  4719. INSERT INTO `ibrand_goods_product` VALUES ('1779', '130', '100', 'B0111-12-60', '39.90', '168.00', null, null, '1', '[\"21\",\"43\"]', '2018-06-11 13:21:49', '2018-06-15 10:35:44', null);
  4720. INSERT INTO `ibrand_goods_product` VALUES ('1780', '130', '100', 'B0111-12-61', '39.90', '168.00', null, null, '1', '[\"35\",\"39\"]', '2018-06-11 13:21:49', '2018-06-15 10:35:44', null);
  4721. INSERT INTO `ibrand_goods_product` VALUES ('1781', '130', '100', 'B0111-12-62', '39.90', '168.00', null, null, '1', '[\"35\",\"40\"]', '2018-06-11 13:21:49', '2018-06-15 10:35:44', null);
  4722. INSERT INTO `ibrand_goods_product` VALUES ('1782', '130', '100', 'B0111-12-63', '39.90', '168.00', null, null, '1', '[\"35\",\"41\"]', '2018-06-11 13:21:49', '2018-06-15 10:35:44', null);
  4723. INSERT INTO `ibrand_goods_product` VALUES ('1783', '130', '100', 'B0111-12-64', '39.90', '168.00', null, null, '1', '[\"35\",\"42\"]', '2018-06-11 13:21:49', '2018-06-15 10:35:44', null);
  4724. INSERT INTO `ibrand_goods_product` VALUES ('1784', '130', '100', 'B0111-12-65', '39.90', '168.00', null, null, '1', '[\"35\",\"43\"]', '2018-06-11 13:21:49', '2018-06-15 10:35:44', null);
  4725. INSERT INTO `ibrand_goods_product` VALUES ('1785', '130', '100', 'B0111-12-66', '39.90', '168.00', null, null, '1', '[\"37\",\"39\"]', '2018-06-11 13:21:49', '2018-06-15 10:35:44', null);
  4726. INSERT INTO `ibrand_goods_product` VALUES ('1786', '130', '100', 'B0111-12-67', '39.90', '168.00', null, null, '1', '[\"37\",\"40\"]', '2018-06-11 13:21:49', '2018-06-15 10:35:45', null);
  4727. INSERT INTO `ibrand_goods_product` VALUES ('1787', '130', '100', 'B0111-12-68', '39.90', '168.00', null, null, '1', '[\"37\",\"41\"]', '2018-06-11 13:21:49', '2018-06-15 10:35:45', null);
  4728. INSERT INTO `ibrand_goods_product` VALUES ('1788', '130', '100', 'B0111-12-69', '39.90', '168.00', null, null, '1', '[\"37\",\"42\"]', '2018-06-11 13:21:49', '2018-06-15 10:35:45', null);
  4729. INSERT INTO `ibrand_goods_product` VALUES ('1789', '130', '100', 'B0111-12-70', '39.90', '168.00', null, null, '1', '[\"37\",\"43\"]', '2018-06-11 13:21:49', '2018-06-15 10:35:45', null);
  4730. INSERT INTO `ibrand_goods_product` VALUES ('1790', '130', '100', 'B0111-12-71', '39.90', '168.00', null, null, '1', '[\"39\",\"46\"]', '2018-06-11 13:21:49', '2018-06-15 10:35:45', null);
  4731. INSERT INTO `ibrand_goods_product` VALUES ('1791', '130', '100', 'B0111-12-72', '39.90', '168.00', null, null, '1', '[\"40\",\"46\"]', '2018-06-11 13:21:49', '2018-06-15 10:35:45', null);
  4732. INSERT INTO `ibrand_goods_product` VALUES ('1792', '130', '100', 'B0111-12-73', '39.90', '168.00', null, null, '1', '[\"41\",\"46\"]', '2018-06-11 13:21:49', '2018-06-15 10:35:45', null);
  4733. INSERT INTO `ibrand_goods_product` VALUES ('1793', '130', '100', 'B0111-12-74', '39.90', '168.00', null, null, '1', '[\"42\",\"46\"]', '2018-06-11 13:21:49', '2018-06-15 10:35:45', null);
  4734. INSERT INTO `ibrand_goods_product` VALUES ('1794', '130', '100', 'B0111-12-75', '39.90', '168.00', null, null, '1', '[\"43\",\"46\"]', '2018-06-11 13:21:49', '2018-06-15 10:35:45', null);
  4735. INSERT INTO `ibrand_goods_product` VALUES ('1795', '131', '100', 'B0121-41', '39.90', '168.00', null, null, '1', '[\"1\",\"39\"]', '2018-06-11 13:33:43', '2018-06-15 10:35:16', null);
  4736. INSERT INTO `ibrand_goods_product` VALUES ('1796', '131', '100', 'B0121-42', '39.90', '168.00', null, null, '1', '[\"1\",\"40\"]', '2018-06-11 13:33:43', '2018-06-15 10:35:16', null);
  4737. INSERT INTO `ibrand_goods_product` VALUES ('1797', '131', '100', 'B0121-43', '39.90', '168.00', null, null, '1', '[\"1\",\"41\"]', '2018-06-11 13:33:43', '2018-06-15 10:35:16', null);
  4738. INSERT INTO `ibrand_goods_product` VALUES ('1798', '131', '100', 'B0121-44', '39.90', '168.00', null, null, '1', '[\"1\",\"42\"]', '2018-06-11 13:33:43', '2018-06-15 10:35:16', null);
  4739. INSERT INTO `ibrand_goods_product` VALUES ('1799', '131', '100', 'B0121-45', '39.90', '168.00', null, null, '1', '[\"1\",\"43\"]', '2018-06-11 13:33:43', '2018-06-15 10:35:16', null);
  4740. INSERT INTO `ibrand_goods_product` VALUES ('1800', '131', '100', 'B0121-46', '39.90', '168.00', null, null, '1', '[\"8\",\"39\"]', '2018-06-11 13:33:43', '2018-06-15 10:35:16', null);
  4741. INSERT INTO `ibrand_goods_product` VALUES ('1801', '131', '100', 'B0121-47', '39.90', '168.00', null, null, '1', '[\"8\",\"40\"]', '2018-06-11 13:33:43', '2018-06-15 10:35:16', null);
  4742. INSERT INTO `ibrand_goods_product` VALUES ('1802', '131', '100', 'B0121-48', '39.90', '168.00', null, null, '1', '[\"8\",\"41\"]', '2018-06-11 13:33:43', '2018-06-15 10:35:17', null);
  4743. INSERT INTO `ibrand_goods_product` VALUES ('1803', '131', '100', 'B0121-49', '39.90', '168.00', null, null, '1', '[\"8\",\"42\"]', '2018-06-11 13:33:44', '2018-06-15 10:35:17', null);
  4744. INSERT INTO `ibrand_goods_product` VALUES ('1804', '131', '100', 'B0121-50', '39.90', '168.00', null, null, '1', '[\"8\",\"43\"]', '2018-06-11 13:33:44', '2018-06-15 10:35:17', null);
  4745. INSERT INTO `ibrand_goods_product` VALUES ('1805', '131', '100', 'B0121-51', '39.90', '168.00', null, null, '1', '[\"14\",\"39\"]', '2018-06-11 13:33:44', '2018-06-15 10:35:17', null);
  4746. INSERT INTO `ibrand_goods_product` VALUES ('1806', '131', '100', 'B0121-52', '39.90', '168.00', null, null, '1', '[\"14\",\"40\"]', '2018-06-11 13:33:44', '2018-06-15 10:35:17', null);
  4747. INSERT INTO `ibrand_goods_product` VALUES ('1807', '131', '100', 'B0121-53', '39.90', '168.00', null, null, '1', '[\"14\",\"41\"]', '2018-06-11 13:33:44', '2018-06-15 10:35:17', null);
  4748. INSERT INTO `ibrand_goods_product` VALUES ('1808', '131', '100', 'B0121-54', '39.90', '168.00', null, null, '1', '[\"14\",\"42\"]', '2018-06-11 13:33:44', '2018-06-15 10:35:17', null);
  4749. INSERT INTO `ibrand_goods_product` VALUES ('1809', '131', '100', 'B0121-55', '39.90', '168.00', null, null, '1', '[\"14\",\"43\"]', '2018-06-11 13:33:44', '2018-06-15 10:35:17', null);
  4750. INSERT INTO `ibrand_goods_product` VALUES ('1810', '131', '100', 'B0121-56', '39.90', '168.00', null, null, '1', '[\"18\",\"39\"]', '2018-06-11 13:33:44', '2018-06-15 10:35:17', null);
  4751. INSERT INTO `ibrand_goods_product` VALUES ('1811', '131', '100', 'B0121-57', '39.90', '168.00', null, null, '1', '[\"18\",\"40\"]', '2018-06-11 13:33:44', '2018-06-15 10:35:17', null);
  4752. INSERT INTO `ibrand_goods_product` VALUES ('1812', '131', '100', 'B0121-58', '39.90', '168.00', null, null, '1', '[\"18\",\"41\"]', '2018-06-11 13:33:44', '2018-06-15 10:35:17', null);
  4753. INSERT INTO `ibrand_goods_product` VALUES ('1813', '131', '100', 'B0121-59', '39.90', '168.00', null, null, '1', '[\"18\",\"42\"]', '2018-06-11 13:33:44', '2018-06-15 10:35:17', null);
  4754. INSERT INTO `ibrand_goods_product` VALUES ('1814', '131', '100', 'B0121-60', '39.90', '168.00', null, null, '1', '[\"18\",\"43\"]', '2018-06-11 13:33:44', '2018-06-15 10:35:17', null);
  4755. INSERT INTO `ibrand_goods_product` VALUES ('1815', '131', '100', 'B0121-61', '39.90', '168.00', null, null, '1', '[\"21\",\"39\"]', '2018-06-11 13:33:44', '2018-06-15 10:35:17', null);
  4756. INSERT INTO `ibrand_goods_product` VALUES ('1816', '131', '100', 'B0121-62', '39.90', '168.00', null, null, '1', '[\"21\",\"40\"]', '2018-06-11 13:33:44', '2018-06-15 10:35:17', null);
  4757. INSERT INTO `ibrand_goods_product` VALUES ('1817', '131', '100', 'B0121-63', '39.90', '168.00', null, null, '1', '[\"21\",\"41\"]', '2018-06-11 13:33:44', '2018-06-15 10:35:17', null);
  4758. INSERT INTO `ibrand_goods_product` VALUES ('1818', '131', '100', 'B0121-64', '39.90', '168.00', null, null, '1', '[\"21\",\"42\"]', '2018-06-11 13:33:44', '2018-06-15 10:35:17', null);
  4759. INSERT INTO `ibrand_goods_product` VALUES ('1819', '131', '100', 'B0121-65', '39.90', '168.00', null, null, '1', '[\"21\",\"43\"]', '2018-06-11 13:33:44', '2018-06-15 10:35:17', null);
  4760. INSERT INTO `ibrand_goods_product` VALUES ('1820', '131', '100', 'B0121-66', '39.90', '168.00', null, null, '1', '[\"35\",\"39\"]', '2018-06-11 13:33:44', '2018-06-15 10:35:17', null);
  4761. INSERT INTO `ibrand_goods_product` VALUES ('1821', '131', '100', 'B0121-67', '39.90', '168.00', null, null, '1', '[\"35\",\"40\"]', '2018-06-11 13:33:44', '2018-06-15 10:35:17', null);
  4762. INSERT INTO `ibrand_goods_product` VALUES ('1822', '131', '100', 'B0121-68', '39.90', '168.00', null, null, '1', '[\"35\",\"41\"]', '2018-06-11 13:33:44', '2018-06-15 10:35:17', null);
  4763. INSERT INTO `ibrand_goods_product` VALUES ('1823', '131', '100', 'B0121-69', '39.90', '168.00', null, null, '1', '[\"35\",\"42\"]', '2018-06-11 13:33:44', '2018-06-15 10:35:17', null);
  4764. INSERT INTO `ibrand_goods_product` VALUES ('1824', '131', '100', 'B0121-70', '39.90', '168.00', null, null, '1', '[\"35\",\"43\"]', '2018-06-11 13:33:44', '2018-06-15 10:35:17', null);
  4765. INSERT INTO `ibrand_goods_product` VALUES ('1825', '131', '100', 'B0121-71', '39.90', '168.00', null, null, '1', '[\"37\",\"39\"]', '2018-06-11 13:33:44', '2018-06-15 10:35:17', null);
  4766. INSERT INTO `ibrand_goods_product` VALUES ('1826', '131', '100', 'B0121-72', '39.90', '168.00', null, null, '1', '[\"37\",\"40\"]', '2018-06-11 13:33:44', '2018-06-15 10:35:17', null);
  4767. INSERT INTO `ibrand_goods_product` VALUES ('1827', '131', '100', 'B0121-73', '39.90', '168.00', null, null, '1', '[\"37\",\"41\"]', '2018-06-11 13:33:44', '2018-06-15 10:35:17', null);
  4768. INSERT INTO `ibrand_goods_product` VALUES ('1828', '131', '100', 'B0121-74', '39.90', '168.00', null, null, '1', '[\"37\",\"42\"]', '2018-06-11 13:33:44', '2018-06-15 10:35:17', null);
  4769. INSERT INTO `ibrand_goods_product` VALUES ('1829', '131', '100', 'B0121-75', '39.90', '168.00', null, null, '1', '[\"37\",\"43\"]', '2018-06-11 13:33:44', '2018-06-15 10:35:17', null);
  4770. INSERT INTO `ibrand_goods_product` VALUES ('1830', '131', '100', 'B0121-76', '39.90', '168.00', null, null, '1', '[\"39\",\"46\"]', '2018-06-11 13:33:44', '2018-06-15 10:35:17', null);
  4771. INSERT INTO `ibrand_goods_product` VALUES ('1831', '131', '100', 'B0121-77', '39.90', '168.00', null, null, '1', '[\"40\",\"46\"]', '2018-06-11 13:33:44', '2018-06-15 10:35:18', null);
  4772. INSERT INTO `ibrand_goods_product` VALUES ('1832', '131', '100', 'B0121-78', '39.90', '168.00', null, null, '1', '[\"41\",\"46\"]', '2018-06-11 13:33:44', '2018-06-15 10:35:18', null);
  4773. INSERT INTO `ibrand_goods_product` VALUES ('1833', '131', '100', 'B0121-79', '39.90', '168.00', null, null, '1', '[\"42\",\"46\"]', '2018-06-11 13:33:44', '2018-06-15 10:35:18', null);
  4774. INSERT INTO `ibrand_goods_product` VALUES ('1834', '131', '100', 'B0121-80', '39.90', '168.00', null, null, '1', '[\"43\",\"46\"]', '2018-06-11 13:33:45', '2018-06-15 10:35:18', null);
  4775. INSERT INTO `ibrand_goods_product` VALUES ('1835', '132', '100', 'A0111-12-43', '39.90', '129.00', null, null, '1', '[\"1\",\"39\"]', '2018-06-11 13:46:20', '2018-06-15 10:34:36', null);
  4776. INSERT INTO `ibrand_goods_product` VALUES ('1836', '132', '100', 'A0111-12-44', '39.90', '129.00', null, null, '1', '[\"1\",\"40\"]', '2018-06-11 13:46:20', '2018-06-15 10:34:36', null);
  4777. INSERT INTO `ibrand_goods_product` VALUES ('1837', '132', '100', 'A0111-12-45', '39.90', '129.00', null, null, '1', '[\"1\",\"41\"]', '2018-06-11 13:46:20', '2018-06-15 10:34:37', null);
  4778. INSERT INTO `ibrand_goods_product` VALUES ('1838', '132', '100', 'A0111-12-46', '39.90', '129.00', null, null, '1', '[\"1\",\"42\"]', '2018-06-11 13:46:20', '2018-06-15 10:34:37', null);
  4779. INSERT INTO `ibrand_goods_product` VALUES ('1839', '132', '100', 'A0111-12-47', '39.90', '129.00', null, null, '1', '[\"4\",\"39\"]', '2018-06-11 13:46:20', '2018-06-15 10:34:37', null);
  4780. INSERT INTO `ibrand_goods_product` VALUES ('1840', '132', '100', 'A0111-12-48', '39.90', '129.00', null, null, '1', '[\"4\",\"40\"]', '2018-06-11 13:46:20', '2018-06-15 10:34:37', null);
  4781. INSERT INTO `ibrand_goods_product` VALUES ('1841', '132', '100', 'A0111-12-49', '39.90', '129.00', null, null, '1', '[\"4\",\"41\"]', '2018-06-11 13:46:20', '2018-06-15 10:34:37', null);
  4782. INSERT INTO `ibrand_goods_product` VALUES ('1842', '132', '100', 'A0111-12-50', '39.90', '129.00', null, null, '1', '[\"4\",\"42\"]', '2018-06-11 13:46:20', '2018-06-15 10:34:37', null);
  4783. INSERT INTO `ibrand_goods_product` VALUES ('1843', '132', '100', 'A0111-12-51', '39.90', '129.00', null, null, '1', '[\"17\",\"39\"]', '2018-06-11 13:46:20', '2018-06-15 10:34:37', null);
  4784. INSERT INTO `ibrand_goods_product` VALUES ('1844', '132', '100', 'A0111-12-52', '39.90', '129.00', null, null, '1', '[\"17\",\"40\"]', '2018-06-11 13:46:20', '2018-06-15 10:34:37', null);
  4785. INSERT INTO `ibrand_goods_product` VALUES ('1845', '132', '100', 'A0111-12-53', '39.90', '129.00', null, null, '1', '[\"17\",\"41\"]', '2018-06-11 13:46:20', '2018-06-15 10:34:37', null);
  4786. INSERT INTO `ibrand_goods_product` VALUES ('1846', '132', '100', 'A0111-12-54', '39.90', '129.00', null, null, '1', '[\"17\",\"42\"]', '2018-06-11 13:46:20', '2018-06-15 10:34:37', null);
  4787. INSERT INTO `ibrand_goods_product` VALUES ('1847', '132', '100', 'A0111-12-55', '39.90', '129.00', null, null, '1', '[\"24\",\"39\"]', '2018-06-11 13:46:20', '2018-06-15 10:34:37', null);
  4788. INSERT INTO `ibrand_goods_product` VALUES ('1848', '132', '100', 'A0111-12-56', '39.90', '129.00', null, null, '1', '[\"24\",\"40\"]', '2018-06-11 13:46:20', '2018-06-15 10:34:37', null);
  4789. INSERT INTO `ibrand_goods_product` VALUES ('1849', '132', '100', 'A0111-12-57', '39.90', '129.00', null, null, '1', '[\"24\",\"41\"]', '2018-06-11 13:46:20', '2018-06-15 10:34:37', null);
  4790. INSERT INTO `ibrand_goods_product` VALUES ('1850', '132', '100', 'A0111-12-58', '39.90', '129.00', null, null, '1', '[\"24\",\"42\"]', '2018-06-11 13:46:21', '2018-06-15 10:34:37', null);
  4791. INSERT INTO `ibrand_goods_product` VALUES ('1851', '132', '100', 'A0111-12-59', '39.90', '129.00', null, null, '1', '[\"34\",\"39\"]', '2018-06-11 13:46:21', '2018-06-15 10:34:37', null);
  4792. INSERT INTO `ibrand_goods_product` VALUES ('1852', '132', '100', 'A0111-12-60', '39.90', '129.00', null, null, '1', '[\"34\",\"40\"]', '2018-06-11 13:46:21', '2018-06-15 10:34:37', null);
  4793. INSERT INTO `ibrand_goods_product` VALUES ('1853', '132', '100', 'A0111-12-61', '39.90', '129.00', null, null, '1', '[\"34\",\"41\"]', '2018-06-11 13:46:21', '2018-06-15 10:34:37', null);
  4794. INSERT INTO `ibrand_goods_product` VALUES ('1854', '132', '100', 'A0111-12-62', '39.90', '129.00', null, null, '1', '[\"34\",\"42\"]', '2018-06-11 13:46:21', '2018-06-15 10:34:37', null);
  4795. INSERT INTO `ibrand_goods_product` VALUES ('1855', '132', '100', 'A0111-12-63', '39.90', '129.00', null, null, '1', '[\"35\",\"39\"]', '2018-06-11 13:46:21', '2018-06-15 10:34:37', null);
  4796. INSERT INTO `ibrand_goods_product` VALUES ('1856', '132', '100', 'A0111-12-64', '39.90', '129.00', null, null, '1', '[\"35\",\"40\"]', '2018-06-11 13:46:21', '2018-06-15 10:34:37', null);
  4797. INSERT INTO `ibrand_goods_product` VALUES ('1857', '132', '100', 'A0111-12-65', '39.90', '129.00', null, null, '1', '[\"35\",\"41\"]', '2018-06-11 13:46:21', '2018-06-15 10:34:37', null);
  4798. INSERT INTO `ibrand_goods_product` VALUES ('1858', '132', '100', 'A0111-12-66', '39.90', '129.00', null, null, '1', '[\"35\",\"42\"]', '2018-06-11 13:46:21', '2018-06-15 10:34:37', null);
  4799. INSERT INTO `ibrand_goods_product` VALUES ('1859', '132', '100', 'A0111-12-67', '39.90', '129.00', null, null, '1', '[\"39\",\"46\"]', '2018-06-11 13:46:21', '2018-06-15 10:34:37', null);
  4800. INSERT INTO `ibrand_goods_product` VALUES ('1860', '132', '100', 'A0111-12-68', '39.90', '129.00', null, null, '1', '[\"40\",\"46\"]', '2018-06-11 13:46:21', '2018-06-15 10:34:37', null);
  4801. INSERT INTO `ibrand_goods_product` VALUES ('1861', '132', '100', 'A0111-12-69', '39.90', '129.00', null, null, '1', '[\"41\",\"46\"]', '2018-06-11 13:46:21', '2018-06-15 10:34:37', null);
  4802. INSERT INTO `ibrand_goods_product` VALUES ('1862', '132', '100', 'A0111-12-70', '39.90', '129.00', null, null, '1', '[\"42\",\"46\"]', '2018-06-11 13:46:21', '2018-06-15 10:34:38', null);
  4803. INSERT INTO `ibrand_goods_product` VALUES ('1863', '133', '100', 'D014-33', '39.90', '119.00', null, null, '1', '[\"1\",\"39\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:16', null);
  4804. INSERT INTO `ibrand_goods_product` VALUES ('1864', '133', '100', 'D014-34', '39.90', '119.00', null, null, '1', '[\"1\",\"40\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:16', null);
  4805. INSERT INTO `ibrand_goods_product` VALUES ('1865', '133', '100', 'D014-35', '39.90', '119.00', null, null, '1', '[\"1\",\"41\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:16', null);
  4806. INSERT INTO `ibrand_goods_product` VALUES ('1866', '133', '100', 'D014-36', '39.90', '119.00', null, null, '1', '[\"1\",\"42\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:16', null);
  4807. INSERT INTO `ibrand_goods_product` VALUES ('1867', '133', '100', 'D014-37', '39.90', '119.00', null, null, '1', '[\"2\",\"39\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:16', null);
  4808. INSERT INTO `ibrand_goods_product` VALUES ('1868', '133', '100', 'D014-38', '39.90', '119.00', null, null, '1', '[\"2\",\"40\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:16', null);
  4809. INSERT INTO `ibrand_goods_product` VALUES ('1869', '133', '100', 'D014-39', '39.90', '119.00', null, null, '1', '[\"2\",\"41\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:16', null);
  4810. INSERT INTO `ibrand_goods_product` VALUES ('1870', '133', '100', 'D014-40', '39.90', '119.00', null, null, '1', '[\"2\",\"42\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:16', null);
  4811. INSERT INTO `ibrand_goods_product` VALUES ('1871', '133', '100', 'D014-41', '39.90', '119.00', null, null, '1', '[\"4\",\"39\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:16', null);
  4812. INSERT INTO `ibrand_goods_product` VALUES ('1872', '133', '100', 'D014-42', '39.90', '119.00', null, null, '1', '[\"4\",\"40\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:16', null);
  4813. INSERT INTO `ibrand_goods_product` VALUES ('1873', '133', '100', 'D014-43', '39.90', '119.00', null, null, '1', '[\"4\",\"41\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:16', null);
  4814. INSERT INTO `ibrand_goods_product` VALUES ('1874', '133', '100', 'D014-44', '39.90', '119.00', null, null, '1', '[\"4\",\"42\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:16', null);
  4815. INSERT INTO `ibrand_goods_product` VALUES ('1875', '133', '100', 'D014-45', '39.90', '119.00', null, null, '1', '[\"17\",\"39\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:16', null);
  4816. INSERT INTO `ibrand_goods_product` VALUES ('1876', '133', '100', 'D014-46', '39.90', '119.00', null, null, '1', '[\"17\",\"40\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:16', null);
  4817. INSERT INTO `ibrand_goods_product` VALUES ('1877', '133', '100', 'D014-47', '39.90', '119.00', null, null, '1', '[\"17\",\"41\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:16', null);
  4818. INSERT INTO `ibrand_goods_product` VALUES ('1878', '133', '100', 'D014-48', '39.90', '119.00', null, null, '1', '[\"17\",\"42\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:16', null);
  4819. INSERT INTO `ibrand_goods_product` VALUES ('1879', '133', '100', 'D014-49', '39.90', '119.00', null, null, '1', '[\"24\",\"39\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:16', null);
  4820. INSERT INTO `ibrand_goods_product` VALUES ('1880', '133', '100', 'D014-50', '39.90', '119.00', null, null, '1', '[\"24\",\"40\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:16', null);
  4821. INSERT INTO `ibrand_goods_product` VALUES ('1881', '133', '100', 'D014-51', '39.90', '119.00', null, null, '1', '[\"24\",\"41\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:17', null);
  4822. INSERT INTO `ibrand_goods_product` VALUES ('1882', '133', '100', 'D014-52', '39.90', '119.00', null, null, '1', '[\"24\",\"42\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:17', null);
  4823. INSERT INTO `ibrand_goods_product` VALUES ('1883', '133', '100', 'D014-53', '39.90', '119.00', null, null, '1', '[\"34\",\"39\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:17', null);
  4824. INSERT INTO `ibrand_goods_product` VALUES ('1884', '133', '100', 'D014-54', '39.90', '119.00', null, null, '1', '[\"34\",\"40\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:17', null);
  4825. INSERT INTO `ibrand_goods_product` VALUES ('1885', '133', '100', 'D014-55', '39.90', '119.00', null, null, '1', '[\"34\",\"41\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:17', null);
  4826. INSERT INTO `ibrand_goods_product` VALUES ('1886', '133', '100', 'D014-56', '39.90', '119.00', null, null, '1', '[\"34\",\"42\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:17', null);
  4827. INSERT INTO `ibrand_goods_product` VALUES ('1887', '133', '100', 'D014-57', '39.90', '119.00', null, null, '1', '[\"35\",\"39\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:17', null);
  4828. INSERT INTO `ibrand_goods_product` VALUES ('1888', '133', '100', 'D014-58', '39.90', '119.00', null, null, '1', '[\"35\",\"40\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:17', null);
  4829. INSERT INTO `ibrand_goods_product` VALUES ('1889', '133', '100', 'D014-59', '39.90', '119.00', null, null, '1', '[\"35\",\"41\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:17', null);
  4830. INSERT INTO `ibrand_goods_product` VALUES ('1890', '133', '100', 'D014-60', '39.90', '119.00', null, null, '1', '[\"35\",\"42\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:17', null);
  4831. INSERT INTO `ibrand_goods_product` VALUES ('1891', '133', '100', 'D014-61', '39.90', '119.00', null, null, '1', '[\"39\",\"46\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:17', null);
  4832. INSERT INTO `ibrand_goods_product` VALUES ('1892', '133', '100', 'D014-62', '39.90', '119.00', null, null, '1', '[\"40\",\"46\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:17', null);
  4833. INSERT INTO `ibrand_goods_product` VALUES ('1893', '133', '100', 'D014-63', '39.90', '119.00', null, null, '1', '[\"41\",\"46\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:17', null);
  4834. INSERT INTO `ibrand_goods_product` VALUES ('1894', '133', '100', 'D014-64', '39.90', '119.00', null, null, '1', '[\"42\",\"46\"]', '2018-06-11 13:59:57', '2018-06-15 10:34:17', null);
  4835. INSERT INTO `ibrand_goods_product` VALUES ('1895', '134', '28', '617#-1', '78.00', '129.00', null, null, '1', '[\"4\",\"40\"]', '2018-08-07 21:27:29', '2018-11-20 04:33:26', null);
  4836. INSERT INTO `ibrand_goods_product` VALUES ('1896', '134', '30', '617#-2', '78.00', '129.00', null, null, '1', '[\"4\",\"41\"]', '2018-08-07 21:27:29', '2018-08-16 16:54:52', null);
  4837. INSERT INTO `ibrand_goods_product` VALUES ('1897', '134', '30', '617#-3', '78.00', '129.00', null, null, '1', '[\"4\",\"42\"]', '2018-08-07 21:27:29', '2018-08-16 16:54:52', null);
  4838. INSERT INTO `ibrand_goods_product` VALUES ('1898', '134', '30', '617#-4', '78.00', '129.00', null, null, '1', '[\"4\",\"43\"]', '2018-08-07 21:27:29', '2018-08-16 16:54:52', null);
  4839. INSERT INTO `ibrand_goods_product` VALUES ('1899', '134', '30', '617#-5', '78.00', '129.00', null, null, '1', '[\"4\",\"44\"]', '2018-08-07 21:27:29', '2018-08-16 16:54:52', null);
  4840. INSERT INTO `ibrand_goods_product` VALUES ('1900', '134', '30', '617#-6', '78.00', '129.00', null, null, '1', '[\"34\",\"40\"]', '2018-08-07 21:27:29', '2018-08-16 16:54:52', null);
  4841. INSERT INTO `ibrand_goods_product` VALUES ('1901', '134', '30', '617#-7', '78.00', '129.00', null, null, '1', '[\"34\",\"41\"]', '2018-08-07 21:27:29', '2018-08-16 16:54:52', null);
  4842. INSERT INTO `ibrand_goods_product` VALUES ('1902', '134', '30', '617#-8', '78.00', '129.00', null, null, '1', '[\"34\",\"42\"]', '2018-08-07 21:27:29', '2018-08-16 16:54:52', null);
  4843. INSERT INTO `ibrand_goods_product` VALUES ('1903', '134', '30', '617#-9', '78.00', '129.00', null, null, '1', '[\"34\",\"43\"]', '2018-08-07 21:27:29', '2018-08-16 16:54:52', null);
  4844. INSERT INTO `ibrand_goods_product` VALUES ('1904', '134', '30', '617#-10', '78.00', '129.00', null, null, '1', '[\"34\",\"44\"]', '2018-08-07 21:27:29', '2018-08-16 16:54:52', null);
  4845. INSERT INTO `ibrand_goods_product` VALUES ('1905', '134', '30', '617#-11', '78.00', '129.00', null, null, '1', '[\"37\",\"40\"]', '2018-08-07 21:27:29', '2018-08-16 16:54:52', null);
  4846. INSERT INTO `ibrand_goods_product` VALUES ('1906', '134', '30', '617#-12', '78.00', '129.00', null, null, '1', '[\"37\",\"41\"]', '2018-08-07 21:27:29', '2018-08-16 16:54:52', null);
  4847. INSERT INTO `ibrand_goods_product` VALUES ('1907', '134', '30', '617#-13', '78.00', '129.00', null, null, '1', '[\"37\",\"42\"]', '2018-08-07 21:27:29', '2018-08-16 16:54:52', null);
  4848. INSERT INTO `ibrand_goods_product` VALUES ('1908', '134', '30', '617#-14', '78.00', '129.00', null, null, '1', '[\"37\",\"43\"]', '2018-08-07 21:27:29', '2018-08-16 16:54:52', null);
  4849. INSERT INTO `ibrand_goods_product` VALUES ('1909', '134', '30', '617#-15', '78.00', '129.00', null, null, '1', '[\"37\",\"44\"]', '2018-08-07 21:27:29', '2018-08-16 16:54:52', null);
  4850. INSERT INTO `ibrand_goods_product` VALUES ('1910', '135', '0', '31175#-1', '88.00', '136.00', null, null, '1', '[\"21\",\"40\"]', '2018-08-07 21:41:32', '2018-08-07 21:41:32', null);
  4851. INSERT INTO `ibrand_goods_product` VALUES ('1911', '135', '0', '31175#-2', '88.00', '136.00', null, null, '1', '[\"21\",\"41\"]', '2018-08-07 21:41:32', '2018-08-07 21:41:32', null);
  4852. INSERT INTO `ibrand_goods_product` VALUES ('1912', '135', '0', '31175#-3', '88.00', '136.00', null, null, '1', '[\"21\",\"42\"]', '2018-08-07 21:41:32', '2018-08-07 21:41:32', null);
  4853. INSERT INTO `ibrand_goods_product` VALUES ('1913', '135', '0', '31175#-4', '88.00', '136.00', null, null, '1', '[\"21\",\"43\"]', '2018-08-07 21:41:32', '2018-08-07 21:41:32', null);
  4854. INSERT INTO `ibrand_goods_product` VALUES ('1914', '135', '0', '31175#-6', '88.00', '136.00', null, null, '1', '[\"21\",\"44\"]', '2018-08-07 21:41:32', '2018-08-07 21:41:32', null);
  4855. INSERT INTO `ibrand_goods_product` VALUES ('1915', '136', '0', '30125#-1', '69.00', '106.00', null, null, '1', '[\"10\",\"40\"]', '2018-08-08 21:25:03', '2018-08-08 21:25:03', null);
  4856. INSERT INTO `ibrand_goods_product` VALUES ('1916', '136', '0', '30125#-2', '69.00', '106.00', null, null, '1', '[\"10\",\"41\"]', '2018-08-08 21:25:03', '2018-08-08 21:25:03', null);
  4857. INSERT INTO `ibrand_goods_product` VALUES ('1917', '136', '0', '30125#-3', '69.00', '106.00', null, null, '1', '[\"10\",\"42\"]', '2018-08-08 21:25:03', '2018-08-08 21:25:03', null);
  4858. INSERT INTO `ibrand_goods_product` VALUES ('1918', '136', '0', '30125#-4', '69.00', '106.00', null, null, '1', '[\"10\",\"43\"]', '2018-08-08 21:25:03', '2018-08-08 21:25:03', null);
  4859. INSERT INTO `ibrand_goods_product` VALUES ('1919', '136', '0', '30125#-5', '69.00', '106.00', null, null, '1', '[\"10\",\"44\"]', '2018-08-08 21:25:03', '2018-08-08 21:25:03', null);
  4860. INSERT INTO `ibrand_goods_product` VALUES ('1920', '136', '0', '30125#-6', '69.00', '106.00', null, null, '1', '[\"10\",\"45\"]', '2018-08-08 21:25:03', '2018-08-08 21:25:03', null);
  4861. INSERT INTO `ibrand_goods_product` VALUES ('1921', '136', '0', '30125#-7', '69.00', '106.00', null, null, '1', '[\"28\",\"40\"]', '2018-08-08 21:25:03', '2018-08-08 21:25:03', null);
  4862. INSERT INTO `ibrand_goods_product` VALUES ('1922', '136', '0', '30125#-8', '69.00', '106.00', null, null, '1', '[\"28\",\"41\"]', '2018-08-08 21:25:04', '2018-08-08 21:25:04', null);
  4863. INSERT INTO `ibrand_goods_product` VALUES ('1923', '136', '0', '30125#-9', '69.00', '106.00', null, null, '1', '[\"28\",\"42\"]', '2018-08-08 21:25:04', '2018-08-08 21:25:04', null);
  4864. INSERT INTO `ibrand_goods_product` VALUES ('1924', '136', '0', '30125#-10', '69.00', '106.00', null, null, '1', '[\"28\",\"43\"]', '2018-08-08 21:25:04', '2018-08-08 21:25:04', null);
  4865. INSERT INTO `ibrand_goods_product` VALUES ('1925', '136', '0', '30125#-11', '69.00', '106.00', null, null, '1', '[\"28\",\"44\"]', '2018-08-08 21:25:04', '2018-08-08 21:25:04', null);
  4866. INSERT INTO `ibrand_goods_product` VALUES ('1926', '136', '0', '30125#-12', '69.00', '106.00', null, null, '1', '[\"28\",\"45\"]', '2018-08-08 21:25:04', '2018-08-08 21:25:04', null);
  4867. INSERT INTO `ibrand_goods_product` VALUES ('1927', '137', '8', '670#-1', '78.00', '129.00', null, null, '1', '[\"34\",\"40\"]', '2018-08-08 21:38:02', '2018-11-09 23:58:09', null);
  4868. INSERT INTO `ibrand_goods_product` VALUES ('1928', '137', '10', '670#-2', '78.00', '129.00', null, null, '1', '[\"34\",\"41\"]', '2018-08-08 21:38:02', '2018-09-29 08:59:25', null);
  4869. INSERT INTO `ibrand_goods_product` VALUES ('1929', '137', '8', '670#-3', '78.00', '129.00', null, null, '1', '[\"34\",\"42\"]', '2018-08-08 21:38:02', '2018-09-07 17:22:38', null);
  4870. INSERT INTO `ibrand_goods_product` VALUES ('1930', '137', '10', '670#-4', '78.00', '129.00', null, null, '1', '[\"34\",\"43\"]', '2018-08-08 21:38:02', '2018-08-27 14:48:07', null);
  4871. INSERT INTO `ibrand_goods_product` VALUES ('1931', '137', '9', '670#-5', '78.00', '129.00', null, null, '1', '[\"34\",\"44\"]', '2018-08-08 21:38:02', '2018-09-07 17:22:38', null);
  4872. INSERT INTO `ibrand_goods_product` VALUES ('1932', '138', '10', '30685#-1', '49.00', '73.00', null, null, '1', '[\"4\",\"39\"]', '2018-08-08 22:04:04', '2018-08-08 22:04:04', null);
  4873. INSERT INTO `ibrand_goods_product` VALUES ('1933', '138', '10', '30685#-2', '49.00', '73.00', null, null, '1', '[\"4\",\"40\"]', '2018-08-08 22:04:04', '2018-08-08 22:04:04', null);
  4874. INSERT INTO `ibrand_goods_product` VALUES ('1934', '138', '10', '30685#-3', '49.00', '73.00', null, null, '1', '[\"4\",\"41\"]', '2018-08-08 22:04:04', '2018-08-08 22:04:04', null);
  4875. INSERT INTO `ibrand_goods_product` VALUES ('1935', '138', '10', '30685#-4', '49.00', '73.00', null, null, '1', '[\"4\",\"42\"]', '2018-08-08 22:04:04', '2018-08-08 22:04:04', null);
  4876. INSERT INTO `ibrand_goods_product` VALUES ('1936', '138', '10', '30685#-5', '49.00', '73.00', null, null, '1', '[\"4\",\"43\"]', '2018-08-08 22:04:04', '2018-08-08 22:04:04', null);
  4877. INSERT INTO `ibrand_goods_product` VALUES ('1937', '138', '10', '30685#-6', '49.00', '73.00', null, null, '1', '[\"4\",\"44\"]', '2018-08-08 22:04:04', '2018-08-08 22:04:04', null);
  4878. INSERT INTO `ibrand_goods_product` VALUES ('1938', '138', '10', '30685#-7', '49.00', '73.00', null, null, '1', '[\"18\",\"39\"]', '2018-08-08 22:04:04', '2018-08-08 22:04:04', null);
  4879. INSERT INTO `ibrand_goods_product` VALUES ('1939', '138', '10', '30685#-8', '49.00', '73.00', null, null, '1', '[\"18\",\"40\"]', '2018-08-08 22:04:04', '2018-08-08 22:04:04', null);
  4880. INSERT INTO `ibrand_goods_product` VALUES ('1940', '138', '10', '30685#-9', '49.00', '73.00', null, null, '1', '[\"18\",\"41\"]', '2018-08-08 22:04:04', '2018-08-08 22:04:04', null);
  4881. INSERT INTO `ibrand_goods_product` VALUES ('1941', '138', '9', '30685#-10', '49.00', '73.00', null, null, '1', '[\"18\",\"42\"]', '2018-08-08 22:04:04', '2018-11-19 12:15:57', null);
  4882. INSERT INTO `ibrand_goods_product` VALUES ('1942', '138', '10', '30685#-11', '49.00', '73.00', null, null, '1', '[\"18\",\"43\"]', '2018-08-08 22:04:04', '2018-08-08 22:04:04', null);
  4883. INSERT INTO `ibrand_goods_product` VALUES ('1943', '138', '10', '30685#-12', '49.00', '73.00', null, null, '1', '[\"18\",\"44\"]', '2018-08-08 22:04:04', '2018-08-08 22:04:04', null);
  4884. INSERT INTO `ibrand_goods_product` VALUES ('1944', '138', '10', '30685#-13', '49.00', '73.00', null, null, '1', '[\"34\",\"39\"]', '2018-08-08 22:04:04', '2018-08-08 22:04:04', null);
  4885. INSERT INTO `ibrand_goods_product` VALUES ('1945', '138', '10', '30685#-14', '49.00', '73.00', null, null, '1', '[\"34\",\"40\"]', '2018-08-08 22:04:04', '2018-08-08 22:04:04', null);
  4886. INSERT INTO `ibrand_goods_product` VALUES ('1946', '138', '10', '30685#-15', '49.00', '73.00', null, null, '1', '[\"34\",\"41\"]', '2018-08-08 22:04:04', '2018-08-08 22:04:04', null);
  4887. INSERT INTO `ibrand_goods_product` VALUES ('1947', '138', '10', '30685#-16', '49.00', '73.00', null, null, '1', '[\"34\",\"42\"]', '2018-08-08 22:04:04', '2018-08-08 22:04:04', null);
  4888. INSERT INTO `ibrand_goods_product` VALUES ('1948', '138', '10', '30685#-17', '49.00', '73.00', null, null, '1', '[\"34\",\"43\"]', '2018-08-08 22:04:04', '2018-08-08 22:04:04', null);
  4889. INSERT INTO `ibrand_goods_product` VALUES ('1949', '138', '10', '30685#-18', '49.00', '73.00', null, null, '1', '[\"34\",\"44\"]', '2018-08-08 22:04:04', '2018-08-08 22:04:04', null);
  4890. INSERT INTO `ibrand_goods_product` VALUES ('1950', '138', '10', '30685#-19', '49.00', '73.00', null, null, '1', '[\"39\",\"47\"]', '2018-08-08 22:04:04', '2018-08-08 22:04:04', null);
  4891. INSERT INTO `ibrand_goods_product` VALUES ('1951', '138', '8', '30685#-20', '49.00', '73.00', null, null, '1', '[\"40\",\"47\"]', '2018-08-08 22:04:04', '2018-10-12 08:04:01', null);
  4892. INSERT INTO `ibrand_goods_product` VALUES ('1952', '138', '10', '30685#-21', '49.00', '73.00', null, null, '1', '[\"41\",\"47\"]', '2018-08-08 22:04:04', '2018-08-08 22:04:04', null);
  4893. INSERT INTO `ibrand_goods_product` VALUES ('1953', '138', '10', '30685#-22', '49.00', '73.00', null, null, '1', '[\"42\",\"47\"]', '2018-08-08 22:04:04', '2018-08-08 22:04:04', null);
  4894. INSERT INTO `ibrand_goods_product` VALUES ('1954', '138', '10', '30685#-23', '49.00', '73.00', null, null, '1', '[\"43\",\"47\"]', '2018-08-08 22:04:04', '2018-08-08 22:04:04', null);
  4895. INSERT INTO `ibrand_goods_product` VALUES ('1955', '138', '10', '30685#-24', '49.00', '73.00', null, null, '1', '[\"44\",\"47\"]', '2018-08-08 22:04:04', '2018-08-08 22:04:04', null);
  4896. INSERT INTO `ibrand_goods_product` VALUES ('1956', '139', '8', '690#-1', '78.00', '129.00', null, null, '1', '[\"1\",\"40\"]', '2018-08-09 10:37:53', '2018-08-23 10:24:26', null);
  4897. INSERT INTO `ibrand_goods_product` VALUES ('1957', '139', '8', '690#-2', '78.00', '129.00', null, null, '1', '[\"1\",\"41\"]', '2018-08-09 10:37:53', '2018-08-23 10:24:26', null);
  4898. INSERT INTO `ibrand_goods_product` VALUES ('1958', '139', '8', '690#-3', '78.00', '129.00', null, null, '1', '[\"1\",\"42\"]', '2018-08-09 10:37:53', '2018-08-23 10:24:26', null);
  4899. INSERT INTO `ibrand_goods_product` VALUES ('1959', '139', '8', '690#-4', '78.00', '129.00', null, null, '1', '[\"1\",\"43\"]', '2018-08-09 10:37:53', '2018-08-23 10:24:26', null);
  4900. INSERT INTO `ibrand_goods_product` VALUES ('1960', '139', '8', '690#-5', '78.00', '129.00', null, null, '1', '[\"1\",\"44\"]', '2018-08-09 10:37:53', '2018-08-23 10:24:26', null);
  4901. INSERT INTO `ibrand_goods_product` VALUES ('1961', '139', '8', '690#-6', '78.00', '129.00', null, null, '1', '[\"5\",\"40\"]', '2018-08-09 10:37:53', '2018-08-23 10:24:26', null);
  4902. INSERT INTO `ibrand_goods_product` VALUES ('1962', '139', '8', '690#-7', '78.00', '129.00', null, null, '1', '[\"5\",\"41\"]', '2018-08-09 10:37:53', '2018-08-23 10:24:26', null);
  4903. INSERT INTO `ibrand_goods_product` VALUES ('1963', '139', '8', '690#-8', '78.00', '129.00', null, null, '1', '[\"5\",\"42\"]', '2018-08-09 10:37:53', '2018-08-23 10:24:26', null);
  4904. INSERT INTO `ibrand_goods_product` VALUES ('1964', '139', '8', '690#-9', '78.00', '129.00', null, null, '1', '[\"5\",\"43\"]', '2018-08-09 10:37:53', '2018-08-23 10:24:26', null);
  4905. INSERT INTO `ibrand_goods_product` VALUES ('1965', '139', '8', '690#-10', '78.00', '129.00', null, null, '1', '[\"5\",\"44\"]', '2018-08-09 10:37:53', '2018-08-23 10:24:26', null);
  4906. INSERT INTO `ibrand_goods_product` VALUES ('1966', '140', '8', '635#-1', '76.00', '110.00', null, null, '1', '[\"1\",\"40\"]', '2018-08-09 10:56:20', '2018-08-09 10:56:20', null);
  4907. INSERT INTO `ibrand_goods_product` VALUES ('1967', '140', '8', '635#-2', '76.00', '110.00', null, null, '1', '[\"1\",\"41\"]', '2018-08-09 10:56:20', '2018-08-09 10:56:20', null);
  4908. INSERT INTO `ibrand_goods_product` VALUES ('1968', '140', '8', '635#-3', '76.00', '110.00', null, null, '1', '[\"1\",\"42\"]', '2018-08-09 10:56:20', '2018-08-09 10:56:20', null);
  4909. INSERT INTO `ibrand_goods_product` VALUES ('1969', '140', '8', '635#-4', '76.00', '110.00', null, null, '1', '[\"1\",\"43\"]', '2018-08-09 10:56:20', '2018-08-09 10:56:20', null);
  4910. INSERT INTO `ibrand_goods_product` VALUES ('1970', '140', '8', '635#-5', '76.00', '110.00', null, null, '1', '[\"1\",\"44\"]', '2018-08-09 10:56:20', '2018-08-09 10:56:20', null);
  4911. INSERT INTO `ibrand_goods_product` VALUES ('1971', '140', '8', '635#-6', '76.00', '110.00', null, null, '1', '[\"7\",\"40\"]', '2018-08-09 10:56:20', '2018-08-09 10:56:20', null);
  4912. INSERT INTO `ibrand_goods_product` VALUES ('1972', '140', '8', '635#-7', '76.00', '110.00', null, null, '1', '[\"7\",\"41\"]', '2018-08-09 10:56:20', '2018-08-09 10:56:20', null);
  4913. INSERT INTO `ibrand_goods_product` VALUES ('1973', '140', '8', '635#-8', '76.00', '110.00', null, null, '1', '[\"7\",\"42\"]', '2018-08-09 10:56:20', '2018-08-09 10:56:20', null);
  4914. INSERT INTO `ibrand_goods_product` VALUES ('1974', '140', '8', '635#-9', '76.00', '110.00', null, null, '1', '[\"7\",\"43\"]', '2018-08-09 10:56:20', '2018-08-09 10:56:20', null);
  4915. INSERT INTO `ibrand_goods_product` VALUES ('1975', '140', '8', '635#-10', '76.00', '110.00', null, null, '1', '[\"7\",\"44\"]', '2018-08-09 10:56:20', '2018-08-09 10:56:20', null);
  4916. INSERT INTO `ibrand_goods_product` VALUES ('1976', '140', '8', '635#-11', '76.00', '110.00', null, null, '1', '[\"22\",\"40\"]', '2018-08-09 10:56:20', '2018-08-09 10:56:20', null);
  4917. INSERT INTO `ibrand_goods_product` VALUES ('1977', '140', '8', '635#-12', '76.00', '110.00', null, null, '1', '[\"22\",\"41\"]', '2018-08-09 10:56:20', '2018-08-09 10:56:20', null);
  4918. INSERT INTO `ibrand_goods_product` VALUES ('1978', '140', '8', '635#-13', '76.00', '110.00', null, null, '1', '[\"22\",\"42\"]', '2018-08-09 10:56:20', '2018-08-09 10:56:20', null);
  4919. INSERT INTO `ibrand_goods_product` VALUES ('1979', '140', '8', '635#-14', '76.00', '110.00', null, null, '1', '[\"22\",\"43\"]', '2018-08-09 10:56:20', '2018-08-09 10:56:20', null);
  4920. INSERT INTO `ibrand_goods_product` VALUES ('1980', '140', '8', '635#-15', '76.00', '110.00', null, null, '1', '[\"22\",\"44\"]', '2018-08-09 10:56:20', '2018-08-09 10:56:20', null);
  4921. INSERT INTO `ibrand_goods_product` VALUES ('1981', '140', '8', '635#-16', '76.00', '110.00', null, null, '1', '[\"34\",\"40\"]', '2018-08-09 10:56:20', '2018-08-09 10:56:20', null);
  4922. INSERT INTO `ibrand_goods_product` VALUES ('1982', '140', '8', '635#-17', '76.00', '110.00', null, null, '1', '[\"34\",\"41\"]', '2018-08-09 10:56:20', '2018-08-09 10:56:20', null);
  4923. INSERT INTO `ibrand_goods_product` VALUES ('1983', '140', '8', '635#-18', '76.00', '110.00', null, null, '1', '[\"34\",\"42\"]', '2018-08-09 10:56:20', '2018-08-09 10:56:20', null);
  4924. INSERT INTO `ibrand_goods_product` VALUES ('1984', '140', '8', '635#-19', '76.00', '110.00', null, null, '1', '[\"34\",\"43\"]', '2018-08-09 10:56:20', '2018-08-09 10:56:20', null);
  4925. INSERT INTO `ibrand_goods_product` VALUES ('1985', '140', '8', '635#-20', '76.00', '110.00', null, null, '1', '[\"34\",\"44\"]', '2018-08-09 10:56:20', '2018-08-09 10:56:20', null);
  4926. INSERT INTO `ibrand_goods_product` VALUES ('1986', '140', '8', '635#-21', '76.00', '110.00', null, null, '1', '[\"37\",\"40\"]', '2018-08-09 10:56:20', '2018-08-09 10:56:20', null);
  4927. INSERT INTO `ibrand_goods_product` VALUES ('1987', '140', '8', '635#-22', '76.00', '110.00', null, null, '1', '[\"37\",\"41\"]', '2018-08-09 10:56:21', '2018-08-09 10:56:21', null);
  4928. INSERT INTO `ibrand_goods_product` VALUES ('1988', '140', '8', '635#-23', '76.00', '110.00', null, null, '1', '[\"37\",\"42\"]', '2018-08-09 10:56:21', '2018-08-09 10:56:21', null);
  4929. INSERT INTO `ibrand_goods_product` VALUES ('1989', '140', '8', '635#-24', '76.00', '110.00', null, null, '1', '[\"37\",\"43\"]', '2018-08-09 10:56:21', '2018-08-09 10:56:21', null);
  4930. INSERT INTO `ibrand_goods_product` VALUES ('1990', '140', '8', '635#-25', '76.00', '110.00', null, null, '1', '[\"37\",\"44\"]', '2018-08-09 10:56:21', '2018-08-09 10:56:21', null);
  4931. INSERT INTO `ibrand_goods_product` VALUES ('1991', '141', '4', '31015#-1', '79.00', '123.00', null, null, '1', '[\"2\",\"40\"]', '2018-08-10 10:53:53', '2018-09-10 17:26:03', null);
  4932. INSERT INTO `ibrand_goods_product` VALUES ('1992', '141', '5', '31015#-2', '79.00', '123.00', null, null, '1', '[\"2\",\"41\"]', '2018-08-10 10:53:53', '2018-08-10 10:53:53', null);
  4933. INSERT INTO `ibrand_goods_product` VALUES ('1993', '141', '5', '31015#-3', '79.00', '123.00', null, null, '1', '[\"2\",\"42\"]', '2018-08-10 10:53:53', '2018-08-10 10:53:53', null);
  4934. INSERT INTO `ibrand_goods_product` VALUES ('1994', '141', '5', '31015#-4', '79.00', '123.00', null, null, '1', '[\"2\",\"43\"]', '2018-08-10 10:53:53', '2018-08-10 10:53:53', null);
  4935. INSERT INTO `ibrand_goods_product` VALUES ('1995', '141', '5', '31015#-5', '79.00', '123.00', null, null, '1', '[\"2\",\"44\"]', '2018-08-10 10:53:53', '2018-08-10 10:53:53', null);
  4936. INSERT INTO `ibrand_goods_product` VALUES ('1996', '141', '5', '31015#-6', '79.00', '123.00', null, null, '1', '[\"2\",\"45\"]', '2018-08-10 10:53:53', '2018-08-10 10:53:53', null);
  4937. INSERT INTO `ibrand_goods_product` VALUES ('1997', '141', '5', '31015#-7', '79.00', '123.00', null, null, '1', '[\"9\",\"40\"]', '2018-08-10 10:53:53', '2018-08-10 10:53:53', null);
  4938. INSERT INTO `ibrand_goods_product` VALUES ('1998', '141', '5', '31015#-8', '79.00', '123.00', null, null, '1', '[\"9\",\"41\"]', '2018-08-10 10:53:53', '2018-08-10 10:53:53', null);
  4939. INSERT INTO `ibrand_goods_product` VALUES ('1999', '141', '5', '31015#-9', '79.00', '123.00', null, null, '1', '[\"9\",\"42\"]', '2018-08-10 10:53:53', '2018-08-10 10:53:53', null);
  4940. INSERT INTO `ibrand_goods_product` VALUES ('2000', '141', '5', '31015#-10', '79.00', '123.00', null, null, '1', '[\"9\",\"43\"]', '2018-08-10 10:53:53', '2018-08-10 10:53:53', null);
  4941. INSERT INTO `ibrand_goods_product` VALUES ('2001', '141', '5', '31015#-11', '79.00', '123.00', null, null, '1', '[\"9\",\"44\"]', '2018-08-10 10:53:53', '2018-08-10 10:53:53', null);
  4942. INSERT INTO `ibrand_goods_product` VALUES ('2002', '141', '5', '31015#-12', '79.00', '123.00', null, null, '1', '[\"9\",\"45\"]', '2018-08-10 10:53:53', '2018-08-10 10:53:53', null);
  4943. INSERT INTO `ibrand_goods_product` VALUES ('2003', '142', '5', '31020#-1', '76.00', '116.00', null, null, '1', '[\"34\",\"40\"]', '2018-08-10 11:04:09', '2018-08-10 11:04:09', null);
  4944. INSERT INTO `ibrand_goods_product` VALUES ('2004', '142', '5', '31020#-2', '76.00', '116.00', null, null, '1', '[\"34\",\"41\"]', '2018-08-10 11:04:09', '2018-08-10 11:04:09', null);
  4945. INSERT INTO `ibrand_goods_product` VALUES ('2005', '142', '5', '31020#-3', '76.00', '116.00', null, null, '1', '[\"34\",\"42\"]', '2018-08-10 11:04:09', '2018-08-10 11:04:09', null);
  4946. INSERT INTO `ibrand_goods_product` VALUES ('2006', '142', '5', '31020#-4', '76.00', '116.00', null, null, '1', '[\"34\",\"43\"]', '2018-08-10 11:04:09', '2018-08-10 11:04:09', null);
  4947. INSERT INTO `ibrand_goods_product` VALUES ('2007', '142', '5', '31020#-5', '76.00', '116.00', null, null, '1', '[\"34\",\"44\"]', '2018-08-10 11:04:09', '2018-08-10 11:04:09', null);
  4948. INSERT INTO `ibrand_goods_product` VALUES ('2008', '142', '5', '31020#-6', '76.00', '116.00', null, null, '1', '[\"37\",\"40\"]', '2018-08-10 11:04:09', '2018-08-10 11:04:09', null);
  4949. INSERT INTO `ibrand_goods_product` VALUES ('2009', '142', '5', '31020#-7', '76.00', '116.00', null, null, '1', '[\"37\",\"41\"]', '2018-08-10 11:04:09', '2018-08-10 11:04:09', null);
  4950. INSERT INTO `ibrand_goods_product` VALUES ('2010', '142', '5', '31020#-8', '76.00', '116.00', null, null, '1', '[\"37\",\"42\"]', '2018-08-10 11:04:09', '2018-08-10 11:04:09', null);
  4951. INSERT INTO `ibrand_goods_product` VALUES ('2011', '142', '5', '31020#-9', '76.00', '116.00', null, null, '1', '[\"37\",\"43\"]', '2018-08-10 11:04:09', '2018-08-10 11:04:09', null);
  4952. INSERT INTO `ibrand_goods_product` VALUES ('2012', '142', '5', '31020#-10', '76.00', '116.00', null, null, '1', '[\"37\",\"44\"]', '2018-08-10 11:04:09', '2018-08-10 11:04:09', null);
  4953. INSERT INTO `ibrand_goods_product` VALUES ('2013', '143', '5', '31092#-1', '79.00', '123.00', null, null, '1', '[\"2\",\"40\"]', '2018-08-10 16:19:09', '2018-08-10 16:19:09', null);
  4954. INSERT INTO `ibrand_goods_product` VALUES ('2014', '143', '5', '31092#-2', '79.00', '123.00', null, null, '1', '[\"2\",\"41\"]', '2018-08-10 16:19:09', '2018-08-10 16:19:09', null);
  4955. INSERT INTO `ibrand_goods_product` VALUES ('2015', '143', '5', '31092#-3', '79.00', '123.00', null, null, '1', '[\"2\",\"42\"]', '2018-08-10 16:19:09', '2018-08-10 16:19:09', null);
  4956. INSERT INTO `ibrand_goods_product` VALUES ('2016', '143', '5', '31092#-4', '79.00', '123.00', null, null, '1', '[\"2\",\"43\"]', '2018-08-10 16:19:09', '2018-08-10 16:19:09', null);
  4957. INSERT INTO `ibrand_goods_product` VALUES ('2017', '143', '5', '31092#-5', '79.00', '123.00', null, null, '1', '[\"2\",\"44\"]', '2018-08-10 16:19:09', '2018-08-10 16:19:09', null);
  4958. INSERT INTO `ibrand_goods_product` VALUES ('2018', '143', '5', '31092#-6', '79.00', '123.00', null, null, '1', '[\"9\",\"40\"]', '2018-08-10 16:19:09', '2018-08-10 16:19:09', null);
  4959. INSERT INTO `ibrand_goods_product` VALUES ('2019', '143', '5', '31092#-7', '79.00', '123.00', null, null, '1', '[\"9\",\"41\"]', '2018-08-10 16:19:09', '2018-08-10 16:19:09', null);
  4960. INSERT INTO `ibrand_goods_product` VALUES ('2020', '143', '5', '31092#-8', '79.00', '123.00', null, null, '1', '[\"9\",\"42\"]', '2018-08-10 16:19:09', '2018-08-10 16:19:09', null);
  4961. INSERT INTO `ibrand_goods_product` VALUES ('2021', '143', '5', '31092#-9', '79.00', '123.00', null, null, '1', '[\"9\",\"43\"]', '2018-08-10 16:19:09', '2018-08-10 16:19:09', null);
  4962. INSERT INTO `ibrand_goods_product` VALUES ('2022', '143', '5', '31092#-10', '79.00', '123.00', null, null, '1', '[\"9\",\"44\"]', '2018-08-10 16:19:09', '2018-08-10 16:19:09', null);
  4963. INSERT INTO `ibrand_goods_product` VALUES ('2023', '144', '5', '31078#-1', '88.00', '139.00', null, null, '1', '[\"9\",\"40\"]', '2018-08-10 16:49:29', '2018-08-16 16:51:16', null);
  4964. INSERT INTO `ibrand_goods_product` VALUES ('2024', '144', '5', '31078#-2', '88.00', '139.00', null, null, '1', '[\"9\",\"41\"]', '2018-08-10 16:49:29', '2018-08-16 16:51:16', null);
  4965. INSERT INTO `ibrand_goods_product` VALUES ('2025', '144', '5', '31078#-3', '88.00', '139.00', null, null, '1', '[\"9\",\"42\"]', '2018-08-10 16:49:29', '2018-08-16 16:51:16', null);
  4966. INSERT INTO `ibrand_goods_product` VALUES ('2026', '144', '5', '31078#-4', '88.00', '139.00', null, null, '1', '[\"9\",\"44\"]', '2018-08-10 16:49:29', '2018-08-16 16:51:16', null);
  4967. INSERT INTO `ibrand_goods_product` VALUES ('2027', '144', '0', '31078#-5', '88.00', '139.00', null, null, '1', '[\"34\",\"40\"]', '2018-08-10 16:49:29', '2018-08-16 16:51:16', null);
  4968. INSERT INTO `ibrand_goods_product` VALUES ('2028', '144', '0', '31078#-6', '88.00', '139.00', null, null, '1', '[\"34\",\"41\"]', '2018-08-10 16:49:29', '2018-08-16 16:51:16', null);
  4969. INSERT INTO `ibrand_goods_product` VALUES ('2029', '144', '0', '31078#-7', '88.00', '139.00', null, null, '1', '[\"34\",\"42\"]', '2018-08-10 16:49:29', '2018-08-16 16:51:16', null);
  4970. INSERT INTO `ibrand_goods_product` VALUES ('2030', '144', '0', '31078#-8', '88.00', '139.00', null, null, '1', '[\"34\",\"44\"]', '2018-08-10 16:49:29', '2018-08-16 16:51:16', null);
  4971. INSERT INTO `ibrand_goods_product` VALUES ('2031', '145', '5', '719#-1', '70.00', '119.00', null, null, '1', '[\"9\",\"40\"]', '2018-08-10 17:24:44', '2018-08-16 16:57:05', null);
  4972. INSERT INTO `ibrand_goods_product` VALUES ('2032', '145', '5', '719#-2', '70.00', '119.00', null, null, '1', '[\"9\",\"41\"]', '2018-08-10 17:24:44', '2018-08-16 16:57:05', null);
  4973. INSERT INTO `ibrand_goods_product` VALUES ('2033', '145', '5', '719#-3', '70.00', '119.00', null, null, '1', '[\"9\",\"42\"]', '2018-08-10 17:24:44', '2018-08-16 16:57:05', null);
  4974. INSERT INTO `ibrand_goods_product` VALUES ('2034', '145', '5', '719#-4', '70.00', '119.00', null, null, '1', '[\"9\",\"43\"]', '2018-08-10 17:24:44', '2018-08-16 16:57:05', null);
  4975. INSERT INTO `ibrand_goods_product` VALUES ('2035', '145', '5', '719#-5', '70.00', '119.00', null, null, '1', '[\"9\",\"44\"]', '2018-08-10 17:24:44', '2018-08-16 16:57:05', null);
  4976. INSERT INTO `ibrand_goods_product` VALUES ('2036', '145', '5', '719#-6', '70.00', '119.00', null, null, '1', '[\"34\",\"40\"]', '2018-08-10 17:24:44', '2018-08-16 16:57:05', null);
  4977. INSERT INTO `ibrand_goods_product` VALUES ('2037', '145', '5', '719#-7', '70.00', '119.00', null, null, '1', '[\"34\",\"41\"]', '2018-08-10 17:24:44', '2018-08-16 16:57:05', null);
  4978. INSERT INTO `ibrand_goods_product` VALUES ('2038', '145', '5', '719#-8', '70.00', '119.00', null, null, '1', '[\"34\",\"42\"]', '2018-08-10 17:24:44', '2018-08-16 16:57:05', null);
  4979. INSERT INTO `ibrand_goods_product` VALUES ('2039', '145', '5', '719#-9', '70.00', '119.00', null, null, '1', '[\"34\",\"43\"]', '2018-08-10 17:24:44', '2018-08-16 16:57:05', null);
  4980. INSERT INTO `ibrand_goods_product` VALUES ('2040', '145', '5', '719#-10', '70.00', '119.00', null, null, '1', '[\"34\",\"44\"]', '2018-08-10 17:24:45', '2018-08-16 16:57:05', null);
  4981. INSERT INTO `ibrand_goods_product` VALUES ('2041', '146', '8', '692#-1', '70.00', '119.00', null, null, '1', '[\"35\",\"40\"]', '2018-08-13 14:28:02', '2018-08-16 16:54:00', null);
  4982. INSERT INTO `ibrand_goods_product` VALUES ('2042', '146', '8', '692#-2', '70.00', '119.00', null, null, '1', '[\"35\",\"41\"]', '2018-08-13 14:28:02', '2018-08-16 16:54:00', null);
  4983. INSERT INTO `ibrand_goods_product` VALUES ('2043', '146', '8', '692#-3', '70.00', '119.00', null, null, '1', '[\"35\",\"42\"]', '2018-08-13 14:28:02', '2018-08-16 16:54:00', null);
  4984. INSERT INTO `ibrand_goods_product` VALUES ('2044', '146', '8', '692#-4', '70.00', '119.00', null, null, '1', '[\"35\",\"43\"]', '2018-08-13 14:28:02', '2018-08-16 16:54:00', null);
  4985. INSERT INTO `ibrand_goods_product` VALUES ('2045', '146', '8', '692#-5', '70.00', '119.00', null, null, '1', '[\"35\",\"44\"]', '2018-08-13 14:28:02', '2018-08-16 16:54:00', null);
  4986. INSERT INTO `ibrand_goods_product` VALUES ('2046', '146', '8', '692#-6', '70.00', '119.00', null, null, '1', '[\"38\",\"40\"]', '2018-08-13 14:28:02', '2018-08-16 16:54:00', null);
  4987. INSERT INTO `ibrand_goods_product` VALUES ('2047', '146', '8', '692#-7', '70.00', '119.00', null, null, '1', '[\"38\",\"41\"]', '2018-08-13 14:28:02', '2018-08-16 16:54:00', null);
  4988. INSERT INTO `ibrand_goods_product` VALUES ('2048', '146', '8', '692#-8', '70.00', '119.00', null, null, '1', '[\"38\",\"42\"]', '2018-08-13 14:28:02', '2018-08-16 16:54:00', null);
  4989. INSERT INTO `ibrand_goods_product` VALUES ('2049', '146', '8', '692#-9', '70.00', '119.00', null, null, '1', '[\"38\",\"43\"]', '2018-08-13 14:28:02', '2018-08-16 16:54:00', null);
  4990. INSERT INTO `ibrand_goods_product` VALUES ('2050', '146', '8', '692#-10', '70.00', '119.00', null, null, '1', '[\"38\",\"44\"]', '2018-08-13 14:28:02', '2018-08-16 16:54:00', null);
  4991. INSERT INTO `ibrand_goods_product` VALUES ('2051', '147', '8', '746#-1', '69.00', '119.00', null, null, '1', '[\"16\",\"40\"]', '2018-08-13 14:37:17', '2018-08-16 17:01:09', null);
  4992. INSERT INTO `ibrand_goods_product` VALUES ('2052', '147', '8', '746#-2', '69.00', '119.00', null, null, '1', '[\"16\",\"41\"]', '2018-08-13 14:37:17', '2018-08-16 17:01:09', null);
  4993. INSERT INTO `ibrand_goods_product` VALUES ('2053', '147', '8', '746#-3', '69.00', '119.00', null, null, '1', '[\"16\",\"42\"]', '2018-08-13 14:37:17', '2018-08-16 17:01:09', null);
  4994. INSERT INTO `ibrand_goods_product` VALUES ('2054', '147', '8', '746#-4', '69.00', '119.00', null, null, '1', '[\"16\",\"43\"]', '2018-08-13 14:37:17', '2018-08-16 17:01:09', null);
  4995. INSERT INTO `ibrand_goods_product` VALUES ('2055', '147', '8', '746#-5', '69.00', '119.00', null, null, '1', '[\"16\",\"44\"]', '2018-08-13 14:37:17', '2018-08-16 17:01:09', null);
  4996. INSERT INTO `ibrand_goods_product` VALUES ('2056', '147', '8', '746#-6', '69.00', '119.00', null, null, '1', '[\"16\",\"45\"]', '2018-08-13 14:37:17', '2018-08-16 17:01:09', null);
  4997. INSERT INTO `ibrand_goods_product` VALUES ('2057', '147', '8', '746#-7', '69.00', '119.00', null, null, '1', '[\"27\",\"40\"]', '2018-08-13 14:37:17', '2018-08-16 17:01:09', null);
  4998. INSERT INTO `ibrand_goods_product` VALUES ('2058', '147', '8', '746#-8', '69.00', '119.00', null, null, '1', '[\"27\",\"41\"]', '2018-08-13 14:37:17', '2018-08-16 17:01:09', null);
  4999. INSERT INTO `ibrand_goods_product` VALUES ('2059', '147', '8', '746#-9', '69.00', '119.00', null, null, '1', '[\"27\",\"42\"]', '2018-08-13 14:37:17', '2018-08-16 17:01:09', null);
  5000. INSERT INTO `ibrand_goods_product` VALUES ('2060', '147', '8', '746#-10', '69.00', '119.00', null, null, '1', '[\"27\",\"43\"]', '2018-08-13 14:37:17', '2018-08-16 17:01:09', null);
  5001. INSERT INTO `ibrand_goods_product` VALUES ('2061', '147', '8', '746#-11', '69.00', '119.00', null, null, '1', '[\"27\",\"44\"]', '2018-08-13 14:37:17', '2018-08-16 17:01:09', null);
  5002. INSERT INTO `ibrand_goods_product` VALUES ('2062', '147', '8', '746#-12', '69.00', '119.00', null, null, '1', '[\"27\",\"45\"]', '2018-08-13 14:37:18', '2018-08-16 17:01:09', null);
  5003. INSERT INTO `ibrand_goods_product` VALUES ('2063', '148', '5', '668#-1', '82.00', '138.00', null, null, '1', '[\"8\",\"40\"]', '2018-08-13 15:00:20', '2018-08-16 16:57:49', null);
  5004. INSERT INTO `ibrand_goods_product` VALUES ('2064', '148', '5', '668#-2', '82.00', '138.00', null, null, '1', '[\"8\",\"41\"]', '2018-08-13 15:00:20', '2018-08-16 16:57:49', null);
  5005. INSERT INTO `ibrand_goods_product` VALUES ('2065', '148', '5', '668#-3', '82.00', '138.00', null, null, '1', '[\"8\",\"42\"]', '2018-08-13 15:00:20', '2018-08-16 16:57:49', null);
  5006. INSERT INTO `ibrand_goods_product` VALUES ('2066', '148', '5', '668#-4', '82.00', '138.00', null, null, '1', '[\"8\",\"43\"]', '2018-08-13 15:00:20', '2018-08-16 16:57:49', null);
  5007. INSERT INTO `ibrand_goods_product` VALUES ('2067', '148', '5', '668#-5', '82.00', '138.00', null, null, '1', '[\"8\",\"44\"]', '2018-08-13 15:00:20', '2018-08-16 16:57:49', null);
  5008. INSERT INTO `ibrand_goods_product` VALUES ('2068', '148', '5', '668#-6', '82.00', '138.00', null, null, '1', '[\"27\",\"40\"]', '2018-08-13 15:00:20', '2018-08-16 16:57:49', null);
  5009. INSERT INTO `ibrand_goods_product` VALUES ('2069', '148', '5', '668#-7', '82.00', '138.00', null, null, '1', '[\"27\",\"41\"]', '2018-08-13 15:00:20', '2018-08-16 16:57:49', null);
  5010. INSERT INTO `ibrand_goods_product` VALUES ('2070', '148', '5', '668#-8', '82.00', '138.00', null, null, '1', '[\"27\",\"42\"]', '2018-08-13 15:00:20', '2018-08-16 16:57:49', null);
  5011. INSERT INTO `ibrand_goods_product` VALUES ('2071', '148', '5', '668#-9', '82.00', '138.00', null, null, '1', '[\"27\",\"43\"]', '2018-08-13 15:00:20', '2018-08-16 16:57:49', null);
  5012. INSERT INTO `ibrand_goods_product` VALUES ('2072', '148', '5', '668#-10', '82.00', '138.00', null, null, '1', '[\"27\",\"44\"]', '2018-08-13 15:00:20', '2018-08-16 16:57:50', null);
  5013. INSERT INTO `ibrand_goods_product` VALUES ('2073', '149', '5', '630#-1', '70.00', '119.00', null, null, '1', '[\"11\",\"40\"]', '2018-08-13 15:30:58', '2018-08-16 17:00:33', null);
  5014. INSERT INTO `ibrand_goods_product` VALUES ('2074', '149', '5', '630#-2', '70.00', '119.00', null, null, '1', '[\"11\",\"41\"]', '2018-08-13 15:30:58', '2018-08-16 17:00:33', null);
  5015. INSERT INTO `ibrand_goods_product` VALUES ('2075', '149', '5', '630#-3', '70.00', '119.00', null, null, '1', '[\"11\",\"42\"]', '2018-08-13 15:30:58', '2018-08-16 17:00:33', null);
  5016. INSERT INTO `ibrand_goods_product` VALUES ('2076', '149', '5', '630#-4', '70.00', '119.00', null, null, '1', '[\"11\",\"43\"]', '2018-08-13 15:30:58', '2018-08-16 17:00:33', null);
  5017. INSERT INTO `ibrand_goods_product` VALUES ('2077', '149', '5', '630#-5', '70.00', '119.00', null, null, '1', '[\"11\",\"44\"]', '2018-08-13 15:30:58', '2018-08-16 17:00:33', null);
  5018. INSERT INTO `ibrand_goods_product` VALUES ('2078', '149', '5', '630#-6', '70.00', '119.00', null, null, '1', '[\"11\",\"45\"]', '2018-08-13 15:30:58', '2018-08-16 17:00:33', null);
  5019. INSERT INTO `ibrand_goods_product` VALUES ('2079', '149', '5', '630#-7', '70.00', '119.00', null, null, '1', '[\"37\",\"40\"]', '2018-08-13 15:30:58', '2018-08-16 17:00:33', null);
  5020. INSERT INTO `ibrand_goods_product` VALUES ('2080', '149', '5', '630#-8', '70.00', '119.00', null, null, '1', '[\"37\",\"41\"]', '2018-08-13 15:30:58', '2018-08-16 17:00:33', null);
  5021. INSERT INTO `ibrand_goods_product` VALUES ('2081', '149', '5', '630#-9', '70.00', '119.00', null, null, '1', '[\"37\",\"42\"]', '2018-08-13 15:30:58', '2018-08-16 17:00:33', null);
  5022. INSERT INTO `ibrand_goods_product` VALUES ('2082', '149', '5', '630#-10', '70.00', '119.00', null, null, '1', '[\"37\",\"43\"]', '2018-08-13 15:30:58', '2018-08-16 17:00:33', null);
  5023. INSERT INTO `ibrand_goods_product` VALUES ('2083', '149', '5', '630#-11', '70.00', '119.00', null, null, '1', '[\"37\",\"44\"]', '2018-08-13 15:30:58', '2018-08-16 17:00:33', null);
  5024. INSERT INTO `ibrand_goods_product` VALUES ('2084', '149', '5', '630#-12', '70.00', '119.00', null, null, '1', '[\"37\",\"45\"]', '2018-08-13 15:30:58', '2018-08-16 17:00:33', null);
  5025. INSERT INTO `ibrand_goods_product` VALUES ('2085', '149', '5', '630#-13', '70.00', '119.00', null, null, '1', '[\"40\",\"47\"]', '2018-08-13 15:30:58', '2018-08-16 17:00:33', null);
  5026. INSERT INTO `ibrand_goods_product` VALUES ('2086', '149', '5', '630#-14', '70.00', '119.00', null, null, '1', '[\"41\",\"47\"]', '2018-08-13 15:30:58', '2018-08-16 17:00:33', null);
  5027. INSERT INTO `ibrand_goods_product` VALUES ('2087', '149', '5', '630#-15', '70.00', '119.00', null, null, '1', '[\"42\",\"47\"]', '2018-08-13 15:30:58', '2018-08-16 17:00:33', null);
  5028. INSERT INTO `ibrand_goods_product` VALUES ('2088', '149', '5', '630#-16', '70.00', '119.00', null, null, '1', '[\"43\",\"47\"]', '2018-08-13 15:30:58', '2018-08-16 17:00:33', null);
  5029. INSERT INTO `ibrand_goods_product` VALUES ('2089', '149', '5', '630#-17', '70.00', '119.00', null, null, '1', '[\"44\",\"47\"]', '2018-08-13 15:30:58', '2018-08-16 17:00:34', null);
  5030. INSERT INTO `ibrand_goods_product` VALUES ('2090', '149', '5', '630#-18', '70.00', '119.00', null, null, '1', '[\"45\",\"47\"]', '2018-08-13 15:30:58', '2018-08-16 17:00:34', null);
  5031. INSERT INTO `ibrand_goods_product` VALUES ('2091', '150', '0', '675#-1', '100.00', '168.00', null, null, '1', '[\"9\",\"40\"]', '2018-08-13 15:40:15', '2018-08-28 09:06:39', null);
  5032. INSERT INTO `ibrand_goods_product` VALUES ('2092', '150', '4', '675#-2', '100.00', '168.00', null, null, '1', '[\"9\",\"41\"]', '2018-08-13 15:40:15', '2018-09-07 17:22:38', null);
  5033. INSERT INTO `ibrand_goods_product` VALUES ('2093', '150', '8', '675#-3', '100.00', '168.00', null, null, '1', '[\"9\",\"42\"]', '2018-08-13 15:40:15', '2018-08-28 12:52:05', null);
  5034. INSERT INTO `ibrand_goods_product` VALUES ('2094', '150', '9', '675#-4', '100.00', '168.00', null, null, '0', '[\"9\",\"43\"]', '2018-08-13 15:40:15', '2018-08-28 09:06:39', null);
  5035. INSERT INTO `ibrand_goods_product` VALUES ('2095', '150', '9', '675#-5', '100.00', '168.00', null, null, '1', '[\"9\",\"44\"]', '2018-08-13 15:40:15', '2018-09-07 17:22:38', null);
  5036. INSERT INTO `ibrand_goods_product` VALUES ('2096', '150', '0', '675#-6', '100.00', '168.00', null, null, '1', '[\"31\",\"40\"]', '2018-08-13 15:40:15', '2018-08-28 09:06:39', null);
  5037. INSERT INTO `ibrand_goods_product` VALUES ('2097', '150', '7', '675#-7', '100.00', '168.00', null, null, '1', '[\"31\",\"41\"]', '2018-08-13 15:40:15', '2018-08-28 15:28:55', null);
  5038. INSERT INTO `ibrand_goods_product` VALUES ('2098', '150', '10', '675#-8', '100.00', '168.00', null, null, '1', '[\"31\",\"42\"]', '2018-08-13 15:40:15', '2018-08-23 18:44:44', null);
  5039. INSERT INTO `ibrand_goods_product` VALUES ('2099', '150', '10', '675#-9', '100.00', '168.00', null, null, '1', '[\"31\",\"43\"]', '2018-08-13 15:40:15', '2018-08-23 18:44:44', null);
  5040. INSERT INTO `ibrand_goods_product` VALUES ('2100', '150', '10', '675#-10', '100.00', '168.00', null, null, '0', '[\"31\",\"44\"]', '2018-08-13 15:40:15', '2018-08-28 09:06:39', null);
  5041. INSERT INTO `ibrand_goods_product` VALUES ('2101', '151', '5', '31173#-1', '89.00', '149.00', null, null, '1', '[\"37\",\"40\"]', '2018-08-13 16:00:04', '2018-08-16 16:56:22', null);
  5042. INSERT INTO `ibrand_goods_product` VALUES ('2102', '151', '5', '31173#-2', '89.00', '149.00', null, null, '1', '[\"37\",\"41\"]', '2018-08-13 16:00:04', '2018-09-14 09:15:56', null);
  5043. INSERT INTO `ibrand_goods_product` VALUES ('2103', '151', '5', '31173#-3', '89.00', '149.00', null, null, '1', '[\"37\",\"42\"]', '2018-08-13 16:00:04', '2018-08-16 16:56:22', null);
  5044. INSERT INTO `ibrand_goods_product` VALUES ('2104', '151', '5', '31173#-4', '89.00', '149.00', null, null, '1', '[\"37\",\"43\"]', '2018-08-13 16:00:04', '2018-08-16 16:56:22', null);
  5045. INSERT INTO `ibrand_goods_product` VALUES ('2105', '151', '5', '31173#-5', '89.00', '149.00', null, null, '1', '[\"37\",\"44\"]', '2018-08-13 16:00:04', '2018-08-16 16:56:22', null);
  5046. INSERT INTO `ibrand_goods_product` VALUES ('2106', '152', '8', '628#-1', '45.00', '75.00', null, null, '1', '[\"1\",\"40\"]', '2018-08-13 16:44:40', '2018-08-16 17:02:03', null);
  5047. INSERT INTO `ibrand_goods_product` VALUES ('2107', '152', '8', '628#-2', '45.00', '75.00', null, null, '1', '[\"1\",\"41\"]', '2018-08-13 16:44:40', '2018-08-16 17:02:03', null);
  5048. INSERT INTO `ibrand_goods_product` VALUES ('2108', '152', '8', '628#-3', '45.00', '75.00', null, null, '1', '[\"1\",\"42\"]', '2018-08-13 16:44:40', '2018-08-16 17:02:03', null);
  5049. INSERT INTO `ibrand_goods_product` VALUES ('2109', '152', '8', '628#-4', '45.00', '75.00', null, null, '1', '[\"1\",\"43\"]', '2018-08-13 16:44:40', '2018-08-16 17:02:03', null);
  5050. INSERT INTO `ibrand_goods_product` VALUES ('2110', '152', '8', '628#-5', '45.00', '75.00', null, null, '1', '[\"1\",\"44\"]', '2018-08-13 16:44:40', '2018-08-16 17:02:03', null);
  5051. INSERT INTO `ibrand_goods_product` VALUES ('2111', '152', '8', '628#-6', '45.00', '75.00', null, null, '1', '[\"1\",\"45\"]', '2018-08-13 16:44:40', '2018-08-16 17:02:03', null);
  5052. INSERT INTO `ibrand_goods_product` VALUES ('2112', '152', '8', '628#-7', '45.00', '75.00', null, null, '1', '[\"2\",\"40\"]', '2018-08-13 16:44:40', '2018-08-16 17:02:03', null);
  5053. INSERT INTO `ibrand_goods_product` VALUES ('2113', '152', '8', '628#-8', '45.00', '75.00', null, null, '1', '[\"2\",\"41\"]', '2018-08-13 16:44:40', '2018-08-16 17:02:04', null);
  5054. INSERT INTO `ibrand_goods_product` VALUES ('2114', '152', '8', '628#-9', '45.00', '75.00', null, null, '1', '[\"2\",\"42\"]', '2018-08-13 16:44:41', '2018-08-16 17:02:04', null);
  5055. INSERT INTO `ibrand_goods_product` VALUES ('2115', '152', '8', '628#-10', '45.00', '75.00', null, null, '1', '[\"2\",\"43\"]', '2018-08-13 16:44:41', '2018-08-16 17:02:04', null);
  5056. INSERT INTO `ibrand_goods_product` VALUES ('2116', '152', '8', '628#-11', '45.00', '75.00', null, null, '1', '[\"2\",\"44\"]', '2018-08-13 16:44:41', '2018-08-16 17:02:04', null);
  5057. INSERT INTO `ibrand_goods_product` VALUES ('2117', '152', '8', '628#-12', '45.00', '75.00', null, null, '1', '[\"2\",\"45\"]', '2018-08-13 16:44:41', '2018-08-16 17:02:04', null);
  5058. INSERT INTO `ibrand_goods_product` VALUES ('2118', '152', '8', '628#-13', '45.00', '75.00', null, null, '1', '[\"11\",\"40\"]', '2018-08-13 16:44:41', '2018-08-16 17:02:04', null);
  5059. INSERT INTO `ibrand_goods_product` VALUES ('2119', '152', '8', '628#-14', '45.00', '75.00', null, null, '1', '[\"11\",\"41\"]', '2018-08-13 16:44:41', '2018-08-16 17:02:04', null);
  5060. INSERT INTO `ibrand_goods_product` VALUES ('2120', '152', '8', '628#-15', '45.00', '75.00', null, null, '1', '[\"11\",\"42\"]', '2018-08-13 16:44:41', '2018-08-16 17:02:04', null);
  5061. INSERT INTO `ibrand_goods_product` VALUES ('2121', '152', '8', '628#-16', '45.00', '75.00', null, null, '1', '[\"11\",\"43\"]', '2018-08-13 16:44:41', '2018-08-16 17:02:04', null);
  5062. INSERT INTO `ibrand_goods_product` VALUES ('2122', '152', '8', '628#-17', '45.00', '75.00', null, null, '1', '[\"11\",\"44\"]', '2018-08-13 16:44:41', '2018-08-16 17:02:04', null);
  5063. INSERT INTO `ibrand_goods_product` VALUES ('2123', '152', '8', '628#-18', '45.00', '75.00', null, null, '1', '[\"11\",\"45\"]', '2018-08-13 16:44:41', '2018-08-16 17:02:04', null);
  5064. INSERT INTO `ibrand_goods_product` VALUES ('2124', '152', '8', '628#-19', '45.00', '75.00', null, null, '1', '[\"19\",\"40\"]', '2018-08-13 16:44:41', '2018-08-16 17:02:04', null);
  5065. INSERT INTO `ibrand_goods_product` VALUES ('2125', '152', '8', '628#-20', '45.00', '75.00', null, null, '1', '[\"19\",\"41\"]', '2018-08-13 16:44:41', '2018-08-16 17:02:04', null);
  5066. INSERT INTO `ibrand_goods_product` VALUES ('2126', '152', '8', '628#-21', '45.00', '75.00', null, null, '1', '[\"19\",\"42\"]', '2018-08-13 16:44:41', '2018-08-16 17:02:04', null);
  5067. INSERT INTO `ibrand_goods_product` VALUES ('2127', '152', '8', '628#-22', '45.00', '75.00', null, null, '1', '[\"19\",\"43\"]', '2018-08-13 16:44:41', '2018-08-16 17:02:04', null);
  5068. INSERT INTO `ibrand_goods_product` VALUES ('2128', '152', '8', '628#-23', '45.00', '75.00', null, null, '1', '[\"19\",\"44\"]', '2018-08-13 16:44:41', '2018-08-16 17:02:04', null);
  5069. INSERT INTO `ibrand_goods_product` VALUES ('2129', '152', '8', '628#-24', '45.00', '75.00', null, null, '1', '[\"19\",\"45\"]', '2018-08-13 16:44:41', '2018-08-16 17:02:04', null);
  5070. INSERT INTO `ibrand_goods_product` VALUES ('2130', '152', '8', '628#-25', '45.00', '75.00', null, null, '1', '[\"26\",\"40\"]', '2018-08-13 16:44:41', '2018-08-16 17:02:04', null);
  5071. INSERT INTO `ibrand_goods_product` VALUES ('2131', '152', '8', '628#-26', '45.00', '75.00', null, null, '1', '[\"26\",\"41\"]', '2018-08-13 16:44:41', '2018-08-16 17:02:04', null);
  5072. INSERT INTO `ibrand_goods_product` VALUES ('2132', '152', '8', '628#-27', '45.00', '75.00', null, null, '1', '[\"26\",\"42\"]', '2018-08-13 16:44:41', '2018-08-16 17:02:04', null);
  5073. INSERT INTO `ibrand_goods_product` VALUES ('2133', '152', '8', '628#-28', '45.00', '75.00', null, null, '1', '[\"26\",\"43\"]', '2018-08-13 16:44:41', '2018-08-16 17:02:04', null);
  5074. INSERT INTO `ibrand_goods_product` VALUES ('2134', '152', '8', '628#-29', '45.00', '75.00', null, null, '1', '[\"26\",\"44\"]', '2018-08-13 16:44:41', '2018-08-16 17:02:04', null);
  5075. INSERT INTO `ibrand_goods_product` VALUES ('2135', '152', '8', '628#-30', '45.00', '75.00', null, null, '1', '[\"26\",\"45\"]', '2018-08-13 16:44:41', '2018-08-16 17:02:04', null);
  5076. INSERT INTO `ibrand_goods_product` VALUES ('2136', '152', '8', '628#-31', '45.00', '75.00', null, null, '1', '[\"40\",\"46\"]', '2018-08-13 16:44:41', '2018-08-16 17:02:04', null);
  5077. INSERT INTO `ibrand_goods_product` VALUES ('2137', '152', '8', '628#-32', '45.00', '75.00', null, null, '1', '[\"41\",\"46\"]', '2018-08-13 16:44:41', '2018-08-16 17:02:04', null);
  5078. INSERT INTO `ibrand_goods_product` VALUES ('2138', '152', '8', '628#-33', '45.00', '75.00', null, null, '1', '[\"42\",\"46\"]', '2018-08-13 16:44:41', '2018-08-16 17:02:04', null);
  5079. INSERT INTO `ibrand_goods_product` VALUES ('2139', '152', '8', '628#-34', '45.00', '75.00', null, null, '1', '[\"43\",\"46\"]', '2018-08-13 16:44:41', '2018-08-16 17:02:04', null);
  5080. INSERT INTO `ibrand_goods_product` VALUES ('2140', '152', '8', '628#-35', '45.00', '75.00', null, null, '1', '[\"44\",\"46\"]', '2018-08-13 16:44:41', '2018-08-16 17:02:04', null);
  5081. INSERT INTO `ibrand_goods_product` VALUES ('2141', '152', '8', '628#-36', '45.00', '75.00', null, null, '1', '[\"45\",\"46\"]', '2018-08-13 16:44:41', '2018-08-16 17:02:04', null);
  5082. INSERT INTO `ibrand_goods_product` VALUES ('2142', '153', '5', '30600#-1', '89.00', '143.00', null, null, '1', '[\"1\",\"40\"]', '2018-08-13 17:16:08', '2018-08-13 17:16:08', null);
  5083. INSERT INTO `ibrand_goods_product` VALUES ('2143', '153', '5', '30600#-2', '89.00', '143.00', null, null, '1', '[\"1\",\"41\"]', '2018-08-13 17:16:08', '2018-08-13 17:16:08', null);
  5084. INSERT INTO `ibrand_goods_product` VALUES ('2144', '153', '5', '30600#-3', '89.00', '143.00', null, null, '1', '[\"1\",\"42\"]', '2018-08-13 17:16:08', '2018-08-13 17:16:08', null);
  5085. INSERT INTO `ibrand_goods_product` VALUES ('2145', '153', '4', '30600#-4', '89.00', '143.00', null, null, '1', '[\"1\",\"43\"]', '2018-08-13 17:16:08', '2018-11-09 23:58:09', null);
  5086. INSERT INTO `ibrand_goods_product` VALUES ('2146', '153', '5', '30600#-5', '89.00', '143.00', null, null, '1', '[\"1\",\"44\"]', '2018-08-13 17:16:09', '2018-08-13 17:16:09', null);
  5087. INSERT INTO `ibrand_goods_product` VALUES ('2147', '153', '5', '30600#-6', '89.00', '143.00', null, null, '1', '[\"1\",\"45\"]', '2018-08-13 17:16:09', '2018-08-13 17:16:09', null);
  5088. INSERT INTO `ibrand_goods_product` VALUES ('2148', '154', '0', '720#-1', '78.00', '129.00', null, null, '1', '[\"4\",\"40\"]', '2018-08-16 14:34:29', '2018-09-21 07:46:49', null);
  5089. INSERT INTO `ibrand_goods_product` VALUES ('2149', '154', '6', '720#-2', '78.00', '129.00', null, null, '1', '[\"4\",\"41\"]', '2018-08-16 14:34:29', '2018-08-16 16:55:27', null);
  5090. INSERT INTO `ibrand_goods_product` VALUES ('2150', '154', '6', '720#-3', '78.00', '129.00', null, null, '1', '[\"4\",\"42\"]', '2018-08-16 14:34:29', '2018-08-16 16:55:27', null);
  5091. INSERT INTO `ibrand_goods_product` VALUES ('2151', '154', '6', '720#-4', '78.00', '129.00', null, null, '1', '[\"4\",\"43\"]', '2018-08-16 14:34:29', '2018-08-16 16:55:27', null);
  5092. INSERT INTO `ibrand_goods_product` VALUES ('2152', '154', '6', '720#-5', '78.00', '129.00', null, null, '1', '[\"4\",\"44\"]', '2018-08-16 14:34:29', '2018-08-16 16:55:27', null);
  5093. INSERT INTO `ibrand_goods_product` VALUES ('2153', '154', '6', '720#-6', '78.00', '129.00', null, null, '1', '[\"31\",\"40\"]', '2018-08-16 14:34:29', '2018-08-16 16:55:27', null);
  5094. INSERT INTO `ibrand_goods_product` VALUES ('2154', '154', '6', '720#-7', '78.00', '129.00', null, null, '1', '[\"31\",\"41\"]', '2018-08-16 14:34:29', '2018-08-16 16:55:27', null);
  5095. INSERT INTO `ibrand_goods_product` VALUES ('2155', '154', '6', '720#-8', '78.00', '129.00', null, null, '1', '[\"31\",\"42\"]', '2018-08-16 14:34:29', '2018-08-16 16:55:27', null);
  5096. INSERT INTO `ibrand_goods_product` VALUES ('2156', '154', '6', '720#-9', '78.00', '129.00', null, null, '1', '[\"31\",\"43\"]', '2018-08-16 14:34:29', '2018-08-16 16:55:27', null);
  5097. INSERT INTO `ibrand_goods_product` VALUES ('2157', '154', '6', '720#-10', '78.00', '129.00', null, null, '1', '[\"31\",\"44\"]', '2018-08-16 14:34:29', '2018-08-16 16:55:27', null);
  5098. INSERT INTO `ibrand_goods_product` VALUES ('2158', '155', '3', '695#-1', '70.00', '119.00', null, null, '1', '[\"31\",\"40\"]', '2018-08-16 14:43:49', '2018-08-16 16:58:50', null);
  5099. INSERT INTO `ibrand_goods_product` VALUES ('2159', '155', '3', '695#-2', '70.00', '119.00', null, null, '1', '[\"31\",\"41\"]', '2018-08-16 14:43:49', '2018-08-16 16:58:50', null);
  5100. INSERT INTO `ibrand_goods_product` VALUES ('2160', '155', '3', '695#-3', '70.00', '119.00', null, null, '1', '[\"31\",\"42\"]', '2018-08-16 14:43:49', '2018-08-16 16:58:50', null);
  5101. INSERT INTO `ibrand_goods_product` VALUES ('2161', '155', '3', '695#-4', '70.00', '119.00', null, null, '1', '[\"31\",\"43\"]', '2018-08-16 14:43:49', '2018-08-16 16:58:50', null);
  5102. INSERT INTO `ibrand_goods_product` VALUES ('2162', '155', '3', '695#-5', '70.00', '119.00', null, null, '1', '[\"31\",\"44\"]', '2018-08-16 14:43:49', '2018-08-16 16:58:50', null);
  5103. INSERT INTO `ibrand_goods_product` VALUES ('2163', '155', '3', '695#-6', '70.00', '119.00', null, null, '1', '[\"34\",\"40\"]', '2018-08-16 14:43:49', '2018-08-16 16:58:50', null);
  5104. INSERT INTO `ibrand_goods_product` VALUES ('2164', '155', '3', '695#-7', '70.00', '119.00', null, null, '1', '[\"34\",\"41\"]', '2018-08-16 14:43:49', '2018-08-16 16:58:50', null);
  5105. INSERT INTO `ibrand_goods_product` VALUES ('2165', '155', '3', '695#-8', '70.00', '119.00', null, null, '1', '[\"34\",\"42\"]', '2018-08-16 14:43:49', '2018-08-16 16:58:50', null);
  5106. INSERT INTO `ibrand_goods_product` VALUES ('2166', '155', '3', '695#-9', '70.00', '119.00', null, null, '1', '[\"34\",\"43\"]', '2018-08-16 14:43:49', '2018-08-16 16:58:50', null);
  5107. INSERT INTO `ibrand_goods_product` VALUES ('2167', '155', '3', '695#-10', '70.00', '119.00', null, null, '1', '[\"34\",\"44\"]', '2018-08-16 14:43:49', '2018-08-16 16:58:50', null);
  5108. INSERT INTO `ibrand_goods_product` VALUES ('2168', '156', '4', '739#-1', '78.00', '129.00', null, null, '1', '[\"8\",\"40\"]', '2018-08-16 15:00:34', '2018-08-16 15:00:34', null);
  5109. INSERT INTO `ibrand_goods_product` VALUES ('2169', '156', '4', '739#-2', '78.00', '129.00', null, null, '1', '[\"8\",\"41\"]', '2018-08-16 15:00:34', '2018-08-16 15:00:34', null);
  5110. INSERT INTO `ibrand_goods_product` VALUES ('2170', '156', '4', '739#-3', '78.00', '129.00', null, null, '1', '[\"8\",\"42\"]', '2018-08-16 15:00:34', '2018-08-16 15:00:34', null);
  5111. INSERT INTO `ibrand_goods_product` VALUES ('2171', '156', '4', '739#-4', '78.00', '129.00', null, null, '1', '[\"8\",\"43\"]', '2018-08-16 15:00:34', '2018-08-16 15:00:34', null);
  5112. INSERT INTO `ibrand_goods_product` VALUES ('2172', '156', '4', '739#-5', '78.00', '129.00', null, null, '1', '[\"8\",\"44\"]', '2018-08-16 15:00:34', '2018-08-16 15:00:34', null);
  5113. INSERT INTO `ibrand_goods_product` VALUES ('2173', '156', '4', '739#-6', '78.00', '129.00', null, null, '1', '[\"28\",\"40\"]', '2018-08-16 15:00:34', '2018-08-16 15:00:34', null);
  5114. INSERT INTO `ibrand_goods_product` VALUES ('2174', '156', '4', '739#-7', '78.00', '129.00', null, null, '1', '[\"28\",\"41\"]', '2018-08-16 15:00:34', '2018-08-16 15:00:34', null);
  5115. INSERT INTO `ibrand_goods_product` VALUES ('2175', '156', '4', '739#-8', '78.00', '129.00', null, null, '1', '[\"28\",\"42\"]', '2018-08-16 15:00:34', '2018-08-16 15:00:34', null);
  5116. INSERT INTO `ibrand_goods_product` VALUES ('2176', '156', '4', '739#-9', '78.00', '129.00', null, null, '1', '[\"28\",\"43\"]', '2018-08-16 15:00:34', '2018-08-16 15:00:34', null);
  5117. INSERT INTO `ibrand_goods_product` VALUES ('2177', '156', '4', '739#-10', '78.00', '129.00', null, null, '1', '[\"28\",\"44\"]', '2018-08-16 15:00:34', '2018-08-16 15:00:34', null);
  5118. INSERT INTO `ibrand_goods_product` VALUES ('2178', '157', '3', '742-1', '88.00', '139.00', null, null, '1', '[\"21\",\"40\"]', '2018-08-16 15:11:30', '2018-08-16 15:11:30', null);
  5119. INSERT INTO `ibrand_goods_product` VALUES ('2179', '157', '3', '742-2', '88.00', '139.00', null, null, '1', '[\"21\",\"41\"]', '2018-08-16 15:11:30', '2018-08-16 15:11:30', null);
  5120. INSERT INTO `ibrand_goods_product` VALUES ('2180', '157', '3', '742-3', '88.00', '139.00', null, null, '1', '[\"21\",\"42\"]', '2018-08-16 15:11:31', '2018-08-16 15:11:31', null);
  5121. INSERT INTO `ibrand_goods_product` VALUES ('2181', '157', '3', '742-4', '88.00', '139.00', null, null, '1', '[\"21\",\"43\"]', '2018-08-16 15:11:31', '2018-08-16 15:11:31', null);
  5122. INSERT INTO `ibrand_goods_product` VALUES ('2182', '157', '3', '742-5', '88.00', '139.00', null, null, '1', '[\"21\",\"44\"]', '2018-08-16 15:11:31', '2018-08-16 15:11:31', null);
  5123. INSERT INTO `ibrand_goods_product` VALUES ('2183', '157', '3', '742-6', '88.00', '139.00', null, null, '1', '[\"21\",\"45\"]', '2018-08-16 15:11:31', '2018-08-16 15:11:31', null);
  5124. INSERT INTO `ibrand_goods_product` VALUES ('2184', '158', '2', '025-1', '32.00', '32.00', null, null, '1', '[\"1\",\"39\"]', '2018-08-16 15:38:29', '2018-08-16 15:38:29', null);
  5125. INSERT INTO `ibrand_goods_product` VALUES ('2185', '158', '2', '025-2', '32.00', '32.00', null, null, '1', '[\"5\",\"39\"]', '2018-08-16 15:38:29', '2018-08-16 15:38:29', null);
  5126. INSERT INTO `ibrand_goods_product` VALUES ('2186', '158', '2', '025-3', '32.00', '32.00', null, null, '1', '[\"39\",\"46\"]', '2018-08-16 15:38:29', '2018-08-16 15:38:29', null);
  5127. INSERT INTO `ibrand_goods_product` VALUES ('2187', '158', '2', '025-4', '32.00', '32.00', null, null, '1', '[\"39\",\"47\"]', '2018-08-16 15:38:29', '2018-08-16 15:38:29', null);
  5128. INSERT INTO `ibrand_goods_product` VALUES ('2188', '159', '2', '0263-1', '46.00', '46.00', null, null, '1', '[\"27\",\"39\"]', '2018-08-16 16:18:30', '2018-08-16 16:18:30', null);
  5129. INSERT INTO `ibrand_goods_product` VALUES ('2189', '159', '2', '0263-2', '46.00', '46.00', null, null, '1', '[\"39\",\"46\"]', '2018-08-16 16:18:30', '2018-08-16 16:18:30', null);
  5130. INSERT INTO `ibrand_goods_product` VALUES ('2190', '159', '2', '0263-3', '46.00', '46.00', null, null, '1', '[\"39\",\"47\"]', '2018-08-16 16:18:30', '2018-08-16 16:18:30', null);
  5131. INSERT INTO `ibrand_goods_product` VALUES ('2191', '160', '2', '0264-1', '36.00', '36.00', null, null, '1', '[\"1\",\"39\"]', '2018-08-16 16:29:29', '2018-08-16 16:29:29', null);
  5132. INSERT INTO `ibrand_goods_product` VALUES ('2192', '160', '2', '0264-2', '36.00', '36.00', null, null, '1', '[\"28\",\"39\"]', '2018-08-16 16:29:29', '2018-08-16 16:29:29', null);
  5133. INSERT INTO `ibrand_goods_product` VALUES ('2193', '160', '2', '0264-3', '36.00', '36.00', null, null, '1', '[\"39\",\"46\"]', '2018-08-16 16:29:29', '2018-08-16 16:29:29', null);
  5134. INSERT INTO `ibrand_goods_product` VALUES ('2194', '160', '2', '0264-4', '36.00', '36.00', null, null, '1', '[\"39\",\"47\"]', '2018-08-16 16:29:29', '2018-08-16 16:29:29', null);
  5135. INSERT INTO `ibrand_goods_product` VALUES ('2195', '161', '2', '0265-1', '33.00', '33.00', null, null, '1', '[\"8\",\"39\"]', '2018-08-16 16:40:48', '2018-08-16 16:40:48', null);
  5136. INSERT INTO `ibrand_goods_product` VALUES ('2196', '161', '2', '0265-2', '33.00', '33.00', null, null, '1', '[\"39\",\"47\"]', '2018-08-16 16:40:48', '2018-08-16 16:40:48', null);
  5137. INSERT INTO `ibrand_goods_product` VALUES ('2197', '162', '3', 'M6000700-1', '29.00', '29.00', null, null, '1', '[\"1\",\"39\"]', '2018-08-16 16:48:46', '2018-09-10 15:23:54', null);
  5138. INSERT INTO `ibrand_goods_product` VALUES ('2198', '162', '2', 'M6000700-2', '29.00', '29.00', null, null, '1', '[\"1\",\"40\"]', '2018-08-16 16:48:46', '2018-08-16 16:48:46', null);
  5139. INSERT INTO `ibrand_goods_product` VALUES ('2199', '162', '3', 'M6000700-3', '29.00', '29.00', null, null, '1', '[\"8\",\"39\"]', '2018-08-16 16:48:46', '2018-09-10 18:21:02', null);
  5140. INSERT INTO `ibrand_goods_product` VALUES ('2200', '162', '2', 'M6000700-4', '29.00', '29.00', null, null, '1', '[\"8\",\"40\"]', '2018-08-16 16:48:46', '2018-08-16 16:48:46', null);
  5141. INSERT INTO `ibrand_goods_product` VALUES ('2201', '163', '10', '31026#-1', '89.00', '149.00', null, null, '1', '[\"18\",\"42\"]', '2018-08-27 14:10:49', '2018-08-27 14:10:49', null);
  5142. INSERT INTO `ibrand_goods_product` VALUES ('2202', '163', '10', '31026#-2', '89.00', '149.00', null, null, '1', '[\"18\",\"43\"]', '2018-08-27 14:10:50', '2018-08-27 14:10:50', null);
  5143. INSERT INTO `ibrand_goods_product` VALUES ('2203', '163', '10', '31026#-3', '89.00', '149.00', null, null, '1', '[\"18\",\"44\"]', '2018-08-27 14:10:50', '2018-08-27 14:10:50', null);
  5144. INSERT INTO `ibrand_goods_product` VALUES ('2204', '163', '10', '31026#-4', '89.00', '149.00', null, null, '1', '[\"18\",\"45\"]', '2018-08-27 14:10:50', '2018-08-27 14:10:50', null);
  5145. INSERT INTO `ibrand_goods_product` VALUES ('2205', '164', '8', '731#-1', '78.00', '129.00', null, null, '1', '[\"4\",\"40\"]', '2018-08-27 14:22:16', '2018-08-27 14:22:16', null);
  5146. INSERT INTO `ibrand_goods_product` VALUES ('2206', '164', '8', '731#-2', '78.00', '129.00', null, null, '1', '[\"4\",\"41\"]', '2018-08-27 14:22:16', '2018-08-27 14:22:16', null);
  5147. INSERT INTO `ibrand_goods_product` VALUES ('2207', '164', '8', '731#-3', '78.00', '129.00', null, null, '1', '[\"4\",\"42\"]', '2018-08-27 14:22:16', '2018-08-27 14:22:16', null);
  5148. INSERT INTO `ibrand_goods_product` VALUES ('2208', '164', '8', '731#-4', '78.00', '129.00', null, null, '1', '[\"4\",\"43\"]', '2018-08-27 14:22:16', '2018-08-27 14:22:16', null);
  5149. INSERT INTO `ibrand_goods_product` VALUES ('2209', '164', '8', '731#-5', '78.00', '129.00', null, null, '1', '[\"4\",\"44\"]', '2018-08-27 14:22:16', '2018-08-27 14:22:16', null);
  5150. INSERT INTO `ibrand_goods_product` VALUES ('2210', '164', '8', '731#-6', '78.00', '129.00', null, null, '1', '[\"33\",\"40\"]', '2018-08-27 14:22:16', '2018-08-27 14:22:16', null);
  5151. INSERT INTO `ibrand_goods_product` VALUES ('2211', '164', '8', '731#-7', '78.00', '129.00', null, null, '1', '[\"33\",\"41\"]', '2018-08-27 14:22:16', '2018-08-27 14:22:16', null);
  5152. INSERT INTO `ibrand_goods_product` VALUES ('2212', '164', '8', '731#-8', '78.00', '129.00', null, null, '1', '[\"33\",\"42\"]', '2018-08-27 14:22:16', '2018-08-27 14:22:16', null);
  5153. INSERT INTO `ibrand_goods_product` VALUES ('2213', '164', '8', '731#-9', '78.00', '129.00', null, null, '1', '[\"33\",\"43\"]', '2018-08-27 14:22:16', '2018-08-27 14:22:16', null);
  5154. INSERT INTO `ibrand_goods_product` VALUES ('2214', '164', '8', '731#-10', '78.00', '129.00', null, null, '1', '[\"33\",\"44\"]', '2018-08-27 14:22:16', '2018-08-27 14:22:16', null);
  5155. INSERT INTO `ibrand_goods_product` VALUES ('2215', '165', '5', '31165#-1', '69.00', '116.00', null, null, '1', '[\"8\",\"40\"]', '2018-08-27 14:39:45', '2018-08-27 14:39:45', null);
  5156. INSERT INTO `ibrand_goods_product` VALUES ('2216', '165', '0', '31165#-2', '69.00', '116.00', null, null, '1', '[\"8\",\"41\"]', '2018-08-27 14:39:45', '2018-08-27 14:39:45', null);
  5157. INSERT INTO `ibrand_goods_product` VALUES ('2217', '165', '0', '31165#-3', '69.00', '116.00', null, null, '1', '[\"8\",\"42\"]', '2018-08-27 14:39:45', '2018-08-27 14:39:45', null);
  5158. INSERT INTO `ibrand_goods_product` VALUES ('2218', '165', '5', '31165#-4', '69.00', '116.00', null, null, '1', '[\"8\",\"43\"]', '2018-08-27 14:39:45', '2018-08-27 14:39:45', null);
  5159. INSERT INTO `ibrand_goods_product` VALUES ('2219', '165', '4', '31165#-5', '69.00', '116.00', null, null, '1', '[\"8\",\"44\"]', '2018-08-27 14:39:45', '2018-09-13 09:38:47', null);
  5160. INSERT INTO `ibrand_goods_product` VALUES ('2220', '165', '5', '31165#-6', '69.00', '116.00', null, null, '1', '[\"11\",\"40\"]', '2018-08-27 14:39:45', '2018-08-27 14:39:45', null);
  5161. INSERT INTO `ibrand_goods_product` VALUES ('2221', '165', '5', '31165#-7', '69.00', '116.00', null, null, '1', '[\"11\",\"41\"]', '2018-08-27 14:39:45', '2018-08-27 14:39:45', null);
  5162. INSERT INTO `ibrand_goods_product` VALUES ('2222', '165', '5', '31165#-8', '69.00', '116.00', null, null, '1', '[\"11\",\"42\"]', '2018-08-27 14:39:45', '2018-08-27 14:39:45', null);
  5163. INSERT INTO `ibrand_goods_product` VALUES ('2223', '165', '1', '31165#-9', '69.00', '116.00', null, null, '1', '[\"11\",\"43\"]', '2018-08-27 14:39:45', '2018-08-27 14:39:45', null);
  5164. INSERT INTO `ibrand_goods_product` VALUES ('2224', '165', '5', '31165#-10', '69.00', '116.00', null, null, '1', '[\"11\",\"44\"]', '2018-08-27 14:39:45', '2018-08-27 14:39:45', null);
  5165. INSERT INTO `ibrand_goods_product` VALUES ('2225', '166', '10', '588-1', '79.00', '159.00', null, null, '1', '[\"1\",\"39\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5166. INSERT INTO `ibrand_goods_product` VALUES ('2226', '166', '10', '588-2', '79.00', '159.00', null, null, '1', '[\"1\",\"40\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5167. INSERT INTO `ibrand_goods_product` VALUES ('2227', '166', '10', '588-3', '79.00', '159.00', null, null, '1', '[\"1\",\"41\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5168. INSERT INTO `ibrand_goods_product` VALUES ('2228', '166', '10', '588-4', '79.00', '159.00', null, null, '1', '[\"1\",\"42\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5169. INSERT INTO `ibrand_goods_product` VALUES ('2229', '166', '10', '588-5', '79.00', '159.00', null, null, '1', '[\"1\",\"43\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5170. INSERT INTO `ibrand_goods_product` VALUES ('2230', '166', '10', '588-6', '79.00', '159.00', null, null, '1', '[\"1\",\"44\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5171. INSERT INTO `ibrand_goods_product` VALUES ('2231', '166', '10', '588-7', '79.00', '159.00', null, null, '1', '[\"1\",\"45\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5172. INSERT INTO `ibrand_goods_product` VALUES ('2232', '166', '10', '588-8', '79.00', '159.00', null, null, '1', '[\"1\",\"48\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5173. INSERT INTO `ibrand_goods_product` VALUES ('2233', '166', '10', '588-9', '79.00', '159.00', null, null, '1', '[\"1\",\"49\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5174. INSERT INTO `ibrand_goods_product` VALUES ('2234', '166', '10', '588-10', '79.00', '159.00', null, null, '1', '[\"1\",\"50\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5175. INSERT INTO `ibrand_goods_product` VALUES ('2235', '166', '10', '588-11', '79.00', '159.00', null, null, '1', '[\"4\",\"39\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5176. INSERT INTO `ibrand_goods_product` VALUES ('2236', '166', '10', '588-12', '79.00', '159.00', null, null, '1', '[\"4\",\"40\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5177. INSERT INTO `ibrand_goods_product` VALUES ('2237', '166', '10', '588-13', '79.00', '159.00', null, null, '1', '[\"4\",\"41\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5178. INSERT INTO `ibrand_goods_product` VALUES ('2238', '166', '10', '588-14', '79.00', '159.00', null, null, '1', '[\"4\",\"42\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5179. INSERT INTO `ibrand_goods_product` VALUES ('2239', '166', '10', '588-15', '79.00', '159.00', null, null, '1', '[\"4\",\"43\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5180. INSERT INTO `ibrand_goods_product` VALUES ('2240', '166', '10', '588-16', '79.00', '159.00', null, null, '1', '[\"4\",\"44\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5181. INSERT INTO `ibrand_goods_product` VALUES ('2241', '166', '10', '588-17', '79.00', '159.00', null, null, '1', '[\"4\",\"45\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5182. INSERT INTO `ibrand_goods_product` VALUES ('2242', '166', '10', '588-18', '79.00', '159.00', null, null, '1', '[\"4\",\"48\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5183. INSERT INTO `ibrand_goods_product` VALUES ('2243', '166', '10', '588-19', '79.00', '159.00', null, null, '1', '[\"4\",\"49\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5184. INSERT INTO `ibrand_goods_product` VALUES ('2244', '166', '10', '588-20', '79.00', '159.00', null, null, '1', '[\"4\",\"50\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5185. INSERT INTO `ibrand_goods_product` VALUES ('2245', '166', '10', '588-21', '79.00', '159.00', null, null, '1', '[\"14\",\"39\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5186. INSERT INTO `ibrand_goods_product` VALUES ('2246', '166', '10', '588-22', '79.00', '159.00', null, null, '1', '[\"14\",\"40\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5187. INSERT INTO `ibrand_goods_product` VALUES ('2247', '166', '10', '588-23', '79.00', '159.00', null, null, '1', '[\"14\",\"41\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5188. INSERT INTO `ibrand_goods_product` VALUES ('2248', '166', '10', '588-24', '79.00', '159.00', null, null, '1', '[\"14\",\"42\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5189. INSERT INTO `ibrand_goods_product` VALUES ('2249', '166', '10', '588-25', '79.00', '159.00', null, null, '1', '[\"14\",\"43\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5190. INSERT INTO `ibrand_goods_product` VALUES ('2250', '166', '10', '588-26', '79.00', '159.00', null, null, '1', '[\"14\",\"44\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5191. INSERT INTO `ibrand_goods_product` VALUES ('2251', '166', '10', '588-27', '79.00', '159.00', null, null, '1', '[\"14\",\"45\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5192. INSERT INTO `ibrand_goods_product` VALUES ('2252', '166', '10', '588-28', '79.00', '159.00', null, null, '1', '[\"14\",\"48\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5193. INSERT INTO `ibrand_goods_product` VALUES ('2253', '166', '10', '588-29', '79.00', '159.00', null, null, '1', '[\"14\",\"49\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5194. INSERT INTO `ibrand_goods_product` VALUES ('2254', '166', '10', '588-30', '79.00', '159.00', null, null, '1', '[\"14\",\"50\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5195. INSERT INTO `ibrand_goods_product` VALUES ('2255', '166', '10', '588-31', '79.00', '159.00', null, null, '1', '[\"37\",\"39\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5196. INSERT INTO `ibrand_goods_product` VALUES ('2256', '166', '10', '588-32', '79.00', '159.00', null, null, '1', '[\"37\",\"40\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5197. INSERT INTO `ibrand_goods_product` VALUES ('2257', '166', '10', '588-33', '79.00', '159.00', null, null, '1', '[\"37\",\"41\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5198. INSERT INTO `ibrand_goods_product` VALUES ('2258', '166', '10', '588-34', '79.00', '159.00', null, null, '1', '[\"37\",\"42\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5199. INSERT INTO `ibrand_goods_product` VALUES ('2259', '166', '10', '588-35', '79.00', '159.00', null, null, '1', '[\"37\",\"43\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5200. INSERT INTO `ibrand_goods_product` VALUES ('2260', '166', '10', '588-36', '79.00', '159.00', null, null, '1', '[\"37\",\"44\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5201. INSERT INTO `ibrand_goods_product` VALUES ('2261', '166', '10', '588-37', '79.00', '159.00', null, null, '1', '[\"37\",\"45\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5202. INSERT INTO `ibrand_goods_product` VALUES ('2262', '166', '10', '588-38', '79.00', '159.00', null, null, '1', '[\"37\",\"48\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5203. INSERT INTO `ibrand_goods_product` VALUES ('2263', '166', '10', '588-39', '79.00', '159.00', null, null, '1', '[\"37\",\"49\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5204. INSERT INTO `ibrand_goods_product` VALUES ('2264', '166', '10', '588-40', '79.00', '159.00', null, null, '1', '[\"37\",\"50\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5205. INSERT INTO `ibrand_goods_product` VALUES ('2265', '166', '10', '588-41', '79.00', '159.00', null, null, '1', '[\"39\",\"46\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5206. INSERT INTO `ibrand_goods_product` VALUES ('2266', '166', '10', '588-42', '79.00', '159.00', null, null, '1', '[\"40\",\"46\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5207. INSERT INTO `ibrand_goods_product` VALUES ('2267', '166', '10', '588-43', '79.00', '159.00', null, null, '1', '[\"41\",\"46\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5208. INSERT INTO `ibrand_goods_product` VALUES ('2268', '166', '10', '588-44', '79.00', '159.00', null, null, '1', '[\"42\",\"46\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5209. INSERT INTO `ibrand_goods_product` VALUES ('2269', '166', '10', '588-45', '79.00', '159.00', null, null, '1', '[\"43\",\"46\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5210. INSERT INTO `ibrand_goods_product` VALUES ('2270', '166', '10', '588-46', '79.00', '159.00', null, null, '1', '[\"44\",\"46\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5211. INSERT INTO `ibrand_goods_product` VALUES ('2271', '166', '10', '588-47', '79.00', '159.00', null, null, '1', '[\"45\",\"46\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5212. INSERT INTO `ibrand_goods_product` VALUES ('2272', '166', '10', '588-48', '79.00', '159.00', null, null, '1', '[\"46\",\"48\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5213. INSERT INTO `ibrand_goods_product` VALUES ('2273', '166', '10', '588-49', '79.00', '159.00', null, null, '1', '[\"46\",\"49\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5214. INSERT INTO `ibrand_goods_product` VALUES ('2274', '166', '10', '588-50', '79.00', '159.00', null, null, '1', '[\"46\",\"50\"]', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  5215. INSERT INTO `ibrand_goods_product` VALUES ('2275', '167', '0', '5032-1', '78.00', '159.00', null, null, '1', '[\"6\",\"39\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5216. INSERT INTO `ibrand_goods_product` VALUES ('2276', '167', '0', '5032-2', '78.00', '159.00', null, null, '1', '[\"6\",\"40\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5217. INSERT INTO `ibrand_goods_product` VALUES ('2277', '167', '0', '5032-3', '78.00', '159.00', null, null, '1', '[\"6\",\"41\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5218. INSERT INTO `ibrand_goods_product` VALUES ('2278', '167', '20', '5032-4', '78.00', '159.00', null, null, '1', '[\"6\",\"42\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5219. INSERT INTO `ibrand_goods_product` VALUES ('2279', '167', '0', '5032-5', '78.00', '159.00', null, null, '1', '[\"6\",\"43\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5220. INSERT INTO `ibrand_goods_product` VALUES ('2280', '167', '20', '5032-6', '78.00', '159.00', null, null, '1', '[\"6\",\"44\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5221. INSERT INTO `ibrand_goods_product` VALUES ('2281', '167', '20', '5032-7', '78.00', '159.00', null, null, '1', '[\"6\",\"45\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5222. INSERT INTO `ibrand_goods_product` VALUES ('2282', '167', '20', '5032-8', '78.00', '159.00', null, null, '1', '[\"6\",\"48\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5223. INSERT INTO `ibrand_goods_product` VALUES ('2283', '167', '20', '5032-9', '78.00', '159.00', null, null, '1', '[\"6\",\"49\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5224. INSERT INTO `ibrand_goods_product` VALUES ('2284', '167', '20', '5032-10', '78.00', '159.00', null, null, '1', '[\"6\",\"50\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5225. INSERT INTO `ibrand_goods_product` VALUES ('2285', '167', '20', '5032-11', '78.00', '159.00', null, null, '1', '[\"6\",\"51\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5226. INSERT INTO `ibrand_goods_product` VALUES ('2286', '167', '20', '5032-12', '78.00', '159.00', null, null, '1', '[\"6\",\"52\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5227. INSERT INTO `ibrand_goods_product` VALUES ('2287', '167', '0', '5032-13', '78.00', '159.00', null, null, '1', '[\"21\",\"39\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5228. INSERT INTO `ibrand_goods_product` VALUES ('2288', '167', '20', '5032-14', '78.00', '159.00', null, null, '1', '[\"21\",\"40\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5229. INSERT INTO `ibrand_goods_product` VALUES ('2289', '167', '20', '5032-15', '78.00', '159.00', null, null, '1', '[\"21\",\"41\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5230. INSERT INTO `ibrand_goods_product` VALUES ('2290', '167', '20', '5032-16', '78.00', '159.00', null, null, '1', '[\"21\",\"42\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5231. INSERT INTO `ibrand_goods_product` VALUES ('2291', '167', '20', '5032-17', '78.00', '159.00', null, null, '1', '[\"21\",\"43\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5232. INSERT INTO `ibrand_goods_product` VALUES ('2292', '167', '20', '5032-18', '78.00', '159.00', null, null, '1', '[\"21\",\"44\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5233. INSERT INTO `ibrand_goods_product` VALUES ('2293', '167', '20', '5032-19', '78.00', '159.00', null, null, '1', '[\"21\",\"45\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5234. INSERT INTO `ibrand_goods_product` VALUES ('2294', '167', '20', '5032-20', '78.00', '159.00', null, null, '1', '[\"21\",\"48\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5235. INSERT INTO `ibrand_goods_product` VALUES ('2295', '167', '20', '5032-21', '78.00', '159.00', null, null, '1', '[\"21\",\"49\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5236. INSERT INTO `ibrand_goods_product` VALUES ('2296', '167', '20', '5032-22', '78.00', '159.00', null, null, '1', '[\"21\",\"50\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5237. INSERT INTO `ibrand_goods_product` VALUES ('2297', '167', '20', '5032-23', '78.00', '159.00', null, null, '1', '[\"21\",\"51\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5238. INSERT INTO `ibrand_goods_product` VALUES ('2298', '167', '20', '5032-24', '78.00', '159.00', null, null, '1', '[\"21\",\"52\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5239. INSERT INTO `ibrand_goods_product` VALUES ('2299', '167', '20', '5032-25', '78.00', '159.00', null, null, '1', '[\"35\",\"39\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5240. INSERT INTO `ibrand_goods_product` VALUES ('2300', '167', '20', '5032-26', '78.00', '159.00', null, null, '1', '[\"35\",\"40\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5241. INSERT INTO `ibrand_goods_product` VALUES ('2301', '167', '20', '5032-27', '78.00', '159.00', null, null, '1', '[\"35\",\"41\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5242. INSERT INTO `ibrand_goods_product` VALUES ('2302', '167', '20', '5032-28', '78.00', '159.00', null, null, '1', '[\"35\",\"42\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5243. INSERT INTO `ibrand_goods_product` VALUES ('2303', '167', '20', '5032-29', '78.00', '159.00', null, null, '1', '[\"35\",\"43\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5244. INSERT INTO `ibrand_goods_product` VALUES ('2304', '167', '20', '5032-30', '78.00', '159.00', null, null, '1', '[\"35\",\"44\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5245. INSERT INTO `ibrand_goods_product` VALUES ('2305', '167', '20', '5032-31', '78.00', '159.00', null, null, '1', '[\"35\",\"45\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5246. INSERT INTO `ibrand_goods_product` VALUES ('2306', '167', '20', '5032-32', '78.00', '159.00', null, null, '1', '[\"35\",\"48\"]', '2018-09-03 15:59:20', '2018-09-03 15:59:20', null);
  5247. INSERT INTO `ibrand_goods_product` VALUES ('2307', '167', '20', '5032-33', '78.00', '159.00', null, null, '1', '[\"35\",\"49\"]', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  5248. INSERT INTO `ibrand_goods_product` VALUES ('2308', '167', '20', '5032-34', '78.00', '159.00', null, null, '1', '[\"35\",\"50\"]', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  5249. INSERT INTO `ibrand_goods_product` VALUES ('2309', '167', '20', '5032-35', '78.00', '159.00', null, null, '1', '[\"35\",\"51\"]', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  5250. INSERT INTO `ibrand_goods_product` VALUES ('2310', '167', '20', '5032-36', '78.00', '159.00', null, null, '1', '[\"35\",\"52\"]', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  5251. INSERT INTO `ibrand_goods_product` VALUES ('2311', '167', '0', '5032-37', '78.00', '159.00', null, null, '1', '[\"36\",\"39\"]', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  5252. INSERT INTO `ibrand_goods_product` VALUES ('2312', '167', '0', '5032-38', '78.00', '159.00', null, null, '1', '[\"36\",\"40\"]', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  5253. INSERT INTO `ibrand_goods_product` VALUES ('2313', '167', '0', '5032-39', '78.00', '159.00', null, null, '1', '[\"36\",\"41\"]', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  5254. INSERT INTO `ibrand_goods_product` VALUES ('2314', '167', '20', '5032-40', '78.00', '159.00', null, null, '1', '[\"36\",\"42\"]', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  5255. INSERT INTO `ibrand_goods_product` VALUES ('2315', '167', '20', '5032-41', '78.00', '159.00', null, null, '1', '[\"36\",\"43\"]', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  5256. INSERT INTO `ibrand_goods_product` VALUES ('2316', '167', '20', '5032-42', '78.00', '159.00', null, null, '1', '[\"36\",\"44\"]', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  5257. INSERT INTO `ibrand_goods_product` VALUES ('2317', '167', '20', '5032-43', '78.00', '159.00', null, null, '1', '[\"36\",\"45\"]', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  5258. INSERT INTO `ibrand_goods_product` VALUES ('2318', '167', '20', '5032-44', '78.00', '159.00', null, null, '1', '[\"36\",\"48\"]', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  5259. INSERT INTO `ibrand_goods_product` VALUES ('2319', '167', '20', '5032-45', '78.00', '159.00', null, null, '1', '[\"36\",\"49\"]', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  5260. INSERT INTO `ibrand_goods_product` VALUES ('2320', '167', '20', '5032-46', '78.00', '159.00', null, null, '1', '[\"36\",\"50\"]', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  5261. INSERT INTO `ibrand_goods_product` VALUES ('2321', '167', '20', '5032-47', '78.00', '159.00', null, null, '1', '[\"36\",\"51\"]', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  5262. INSERT INTO `ibrand_goods_product` VALUES ('2322', '167', '20', '5032-48', '78.00', '159.00', null, null, '1', '[\"36\",\"52\"]', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  5263. INSERT INTO `ibrand_goods_product` VALUES ('2323', '168', '20', '5240-1', '0.01', '159.00', null, null, '1', '[\"6\",\"39\"]', '2018-09-03 16:16:41', '2018-09-03 16:16:41', null);
  5264. INSERT INTO `ibrand_goods_product` VALUES ('2324', '168', '20', '5240-2', '0.01', '159.00', null, null, '1', '[\"6\",\"40\"]', '2018-09-03 16:16:41', '2018-09-03 16:16:41', null);
  5265. INSERT INTO `ibrand_goods_product` VALUES ('2325', '168', '20', '5240-3', '0.01', '159.00', null, null, '1', '[\"6\",\"41\"]', '2018-09-03 16:16:41', '2018-09-03 16:16:41', null);
  5266. INSERT INTO `ibrand_goods_product` VALUES ('2326', '168', '20', '5240-4', '0.01', '159.00', null, null, '1', '[\"6\",\"42\"]', '2018-09-03 16:16:41', '2018-09-03 16:16:41', null);
  5267. INSERT INTO `ibrand_goods_product` VALUES ('2327', '168', '20', '5240-5', '0.01', '159.00', null, null, '1', '[\"6\",\"43\"]', '2018-09-03 16:16:41', '2018-09-03 16:16:41', null);
  5268. INSERT INTO `ibrand_goods_product` VALUES ('2328', '168', '20', '5240-6', '0.01', '159.00', null, null, '1', '[\"6\",\"44\"]', '2018-09-03 16:16:41', '2018-09-03 16:16:41', null);
  5269. INSERT INTO `ibrand_goods_product` VALUES ('2329', '168', '20', '5240-7', '0.01', '159.00', null, null, '1', '[\"6\",\"45\"]', '2018-09-03 16:16:41', '2018-09-03 16:16:41', null);
  5270. INSERT INTO `ibrand_goods_product` VALUES ('2330', '168', '20', '5240-8', '0.01', '159.00', null, null, '1', '[\"36\",\"39\"]', '2018-09-03 16:16:41', '2018-09-03 16:16:41', null);
  5271. INSERT INTO `ibrand_goods_product` VALUES ('2331', '168', '20', '5240-9', '0.01', '159.00', null, null, '1', '[\"36\",\"40\"]', '2018-09-03 16:16:41', '2018-09-03 16:16:41', null);
  5272. INSERT INTO `ibrand_goods_product` VALUES ('2332', '168', '20', '5240-10', '0.01', '159.00', null, null, '1', '[\"36\",\"41\"]', '2018-09-03 16:16:41', '2018-09-03 16:16:41', null);
  5273. INSERT INTO `ibrand_goods_product` VALUES ('2333', '168', '20', '5240-11', '0.01', '159.00', null, null, '1', '[\"36\",\"42\"]', '2018-09-03 16:16:41', '2018-09-03 16:16:41', null);
  5274. INSERT INTO `ibrand_goods_product` VALUES ('2334', '168', '20', '5240-12', '0.01', '159.00', null, null, '1', '[\"36\",\"43\"]', '2018-09-03 16:16:41', '2018-09-03 16:16:41', null);
  5275. INSERT INTO `ibrand_goods_product` VALUES ('2335', '168', '20', '5240-13', '0.01', '159.00', null, null, '1', '[\"36\",\"44\"]', '2018-09-03 16:16:41', '2018-09-03 16:16:41', null);
  5276. INSERT INTO `ibrand_goods_product` VALUES ('2336', '168', '20', '5240-14', '0.01', '159.00', null, null, '1', '[\"36\",\"45\"]', '2018-09-03 16:16:41', '2018-09-03 16:16:41', null);
  5277. INSERT INTO `ibrand_goods_product` VALUES ('2337', '169', '5', 'whx1-1', '0.01', '199.00', null, null, '1', '[\"1\",\"39\"]', '2018-09-04 19:07:49', '2018-09-04 19:07:49', null);
  5278. INSERT INTO `ibrand_goods_product` VALUES ('2338', '169', '5', 'whx1-2', '0.01', '199.00', null, null, '1', '[\"1\",\"40\"]', '2018-09-04 19:07:49', '2018-09-04 19:07:49', null);
  5279. INSERT INTO `ibrand_goods_product` VALUES ('2339', '169', '5', 'whx1-3', '0.01', '199.00', null, null, '1', '[\"1\",\"41\"]', '2018-09-04 19:07:49', '2018-09-04 19:07:49', null);
  5280. INSERT INTO `ibrand_goods_product` VALUES ('2340', '169', '5', 'whx1-4', '0.01', '199.00', null, null, '1', '[\"1\",\"42\"]', '2018-09-04 19:07:49', '2018-09-04 19:07:49', null);
  5281. INSERT INTO `ibrand_goods_product` VALUES ('2341', '169', '5', 'whx1-5', '0.01', '199.00', null, null, '1', '[\"1\",\"43\"]', '2018-09-04 19:07:50', '2018-09-04 19:07:50', null);
  5282. INSERT INTO `ibrand_goods_product` VALUES ('2342', '169', '5', 'whx1-6', '0.01', '199.00', null, null, '1', '[\"1\",\"44\"]', '2018-09-04 19:07:50', '2018-09-04 19:07:50', null);
  5283. INSERT INTO `ibrand_goods_product` VALUES ('2343', '169', '5', 'whx1-7', '0.01', '199.00', null, null, '1', '[\"1\",\"45\"]', '2018-09-04 19:07:50', '2018-09-04 19:07:50', null);
  5284. INSERT INTO `ibrand_goods_product` VALUES ('2344', '169', '5', 'whx1-8', '0.01', '199.00', null, null, '1', '[\"1\",\"48\"]', '2018-09-04 19:07:50', '2018-09-04 19:07:50', null);
  5285. INSERT INTO `ibrand_goods_product` VALUES ('2345', '170', '8', '2810-3', '0.01', '159.00', null, null, '1', '[\"1\",\"39\"]', '2018-09-04 19:36:47', '2018-11-20 09:38:28', null);
  5286. INSERT INTO `ibrand_goods_product` VALUES ('2346', '170', '10', '2386-2', '0.01', '159.00', null, null, '1', '[\"1\",\"40\"]', '2018-09-04 19:36:47', '2018-09-04 19:36:47', null);
  5287. INSERT INTO `ibrand_goods_product` VALUES ('2347', '170', '13', '2810-7', '0.01', '159.00', null, null, '1', '[\"4\",\"39\"]', '2018-09-04 19:36:47', '2018-09-12 10:22:34', null);
  5288. INSERT INTO `ibrand_goods_product` VALUES ('2348', '170', '13', '2386+980+1', '0.01', '159.00', null, null, '1', '[\"4\",\"40\"]', '2018-09-04 19:36:47', '2018-09-12 11:13:37', null);
  5289. INSERT INTO `ibrand_goods_product` VALUES ('2349', '170', '10', '2810-2', '0.01', '159.00', null, null, '1', '[\"5\",\"39\"]', '2018-09-04 19:36:47', '2018-09-04 19:36:47', null);
  5290. INSERT INTO `ibrand_goods_product` VALUES ('2350', '170', '0', 'nul1', '0.01', '159.00', null, null, '0', '[\"5\",\"40\"]', '2018-09-04 19:36:47', '2018-09-04 19:36:47', null);
  5291. INSERT INTO `ibrand_goods_product` VALUES ('2351', '170', '10', '2810-4', '0.01', '159.00', null, null, '1', '[\"18\",\"39\"]', '2018-09-04 19:36:47', '2018-09-04 19:36:47', null);
  5292. INSERT INTO `ibrand_goods_product` VALUES ('2352', '170', '20', '2386+980+2', '0.01', '159.00', null, null, '1', '[\"18\",\"40\"]', '2018-09-04 19:36:47', '2018-09-04 19:36:47', null);
  5293. INSERT INTO `ibrand_goods_product` VALUES ('2353', '170', '0', 'nul2', '0.01', '159.00', null, null, '0', '[\"26\",\"39\"]', '2018-09-04 19:36:47', '2018-09-04 19:36:47', null);
  5294. INSERT INTO `ibrand_goods_product` VALUES ('2354', '170', '10', '980-1', '0.01', '159.00', null, null, '1', '[\"26\",\"40\"]', '2018-09-04 19:36:47', '2018-09-04 19:36:47', null);
  5295. INSERT INTO `ibrand_goods_product` VALUES ('2355', '170', '10', '2810-1', '0.01', '159.00', null, null, '1', '[\"27\",\"39\"]', '2018-09-04 19:36:47', '2018-09-04 19:36:47', null);
  5296. INSERT INTO `ibrand_goods_product` VALUES ('2356', '170', '10', '2380', '0.01', '159.00', null, null, '1', '[\"27\",\"40\"]', '2018-09-04 19:36:47', '2018-09-04 19:36:47', null);
  5297. INSERT INTO `ibrand_goods_product` VALUES ('2357', '170', '4', '2810-6', '0.01', '159.00', null, null, '1', '[\"35\",\"39\"]', '2018-09-04 19:36:48', '2018-09-12 10:13:05', null);
  5298. INSERT INTO `ibrand_goods_product` VALUES ('2358', '170', '0', 'nul3', '0.01', '159.00', null, null, '0', '[\"35\",\"40\"]', '2018-09-04 19:36:48', '2018-09-04 19:36:48', null);
  5299. INSERT INTO `ibrand_goods_product` VALUES ('2359', '170', '10', '2810-5', '0.01', '159.00', null, null, '1', '[\"36\",\"39\"]', '2018-09-04 19:36:48', '2018-09-04 19:36:48', null);
  5300. INSERT INTO `ibrand_goods_product` VALUES ('2360', '170', '0', 'nul4', '0.01', '159.00', null, null, '0', '[\"36\",\"40\"]', '2018-09-04 19:36:48', '2018-09-04 19:36:48', null);
  5301. INSERT INTO `ibrand_goods_product` VALUES ('2361', '171', '5', '4768-1', '0.01', '79.00', null, null, '1', '[\"4\",\"41\"]', '2018-09-04 20:03:01', '2018-09-04 20:03:01', null);
  5302. INSERT INTO `ibrand_goods_product` VALUES ('2362', '171', '5', '4768-2', '0.01', '79.00', null, null, '1', '[\"4\",\"42\"]', '2018-09-04 20:03:02', '2018-09-04 20:03:02', null);
  5303. INSERT INTO `ibrand_goods_product` VALUES ('2363', '171', '5', '4768-3', '0.01', '79.00', null, null, '1', '[\"4\",\"43\"]', '2018-09-04 20:03:02', '2018-09-04 20:03:02', null);
  5304. INSERT INTO `ibrand_goods_product` VALUES ('2364', '171', '5', '4768-4', '0.01', '79.00', null, null, '1', '[\"4\",\"44\"]', '2018-09-04 20:03:02', '2018-09-04 20:03:02', null);
  5305. INSERT INTO `ibrand_goods_product` VALUES ('2365', '171', '5', '4768-5', '0.01', '79.00', null, null, '1', '[\"10\",\"41\"]', '2018-09-04 20:03:02', '2018-09-04 20:03:02', null);
  5306. INSERT INTO `ibrand_goods_product` VALUES ('2366', '171', '5', '4768-6', '0.01', '79.00', null, null, '1', '[\"10\",\"42\"]', '2018-09-04 20:03:02', '2018-09-04 20:03:02', null);
  5307. INSERT INTO `ibrand_goods_product` VALUES ('2367', '171', '5', '4768-7', '0.01', '79.00', null, null, '1', '[\"10\",\"43\"]', '2018-09-04 20:03:02', '2018-09-04 20:03:02', null);
  5308. INSERT INTO `ibrand_goods_product` VALUES ('2368', '171', '5', '4768-8', '0.01', '79.00', null, null, '1', '[\"10\",\"44\"]', '2018-09-04 20:03:02', '2018-09-04 20:03:02', null);
  5309. INSERT INTO `ibrand_goods_product` VALUES ('2369', '171', '5', '4768-9', '0.01', '79.00', null, null, '1', '[\"41\",\"46\"]', '2018-09-04 20:03:02', '2018-09-04 20:03:02', null);
  5310. INSERT INTO `ibrand_goods_product` VALUES ('2370', '171', '5', '4768-10', '0.01', '79.00', null, null, '1', '[\"42\",\"46\"]', '2018-09-04 20:03:02', '2018-09-04 20:03:02', null);
  5311. INSERT INTO `ibrand_goods_product` VALUES ('2371', '171', '5', '4768-11', '0.01', '79.00', null, null, '1', '[\"43\",\"46\"]', '2018-09-04 20:03:02', '2018-09-04 20:03:02', null);
  5312. INSERT INTO `ibrand_goods_product` VALUES ('2372', '171', '5', '4768-12', '0.01', '79.00', null, null, '1', '[\"44\",\"46\"]', '2018-09-04 20:03:02', '2018-09-04 20:03:02', null);
  5313. INSERT INTO `ibrand_goods_product` VALUES ('2373', '172', '4', 'fgwz-1', '0.01', '35.00', null, null, '1', '[\"2\",\"39\"]', '2018-09-05 14:27:17', '2018-09-10 15:16:05', null);
  5314. INSERT INTO `ibrand_goods_product` VALUES ('2374', '172', '5', 'fgwz-2', '0.01', '35.00', null, null, '1', '[\"2\",\"40\"]', '2018-09-05 14:27:18', '2018-09-05 14:27:18', null);
  5315. INSERT INTO `ibrand_goods_product` VALUES ('2375', '172', '5', 'fgwz-3', '0.01', '35.00', null, null, '1', '[\"2\",\"41\"]', '2018-09-05 14:27:18', '2018-09-05 14:27:18', null);
  5316. INSERT INTO `ibrand_goods_product` VALUES ('2376', '172', '5', 'fgwz-4', '0.01', '35.00', null, null, '1', '[\"3\",\"39\"]', '2018-09-05 14:27:18', '2018-09-05 14:27:18', null);
  5317. INSERT INTO `ibrand_goods_product` VALUES ('2377', '172', '5', 'fgwz-5', '0.01', '35.00', null, null, '1', '[\"3\",\"40\"]', '2018-09-05 14:27:18', '2018-09-05 14:27:18', null);
  5318. INSERT INTO `ibrand_goods_product` VALUES ('2378', '172', '5', 'fgwz-6', '0.01', '35.00', null, null, '1', '[\"3\",\"41\"]', '2018-09-05 14:27:18', '2018-09-05 14:27:18', null);
  5319. INSERT INTO `ibrand_goods_product` VALUES ('2379', '172', '4', 'fgwz-7', '0.01', '35.00', null, null, '1', '[\"4\",\"39\"]', '2018-09-05 14:27:18', '2018-09-10 16:18:57', null);
  5320. INSERT INTO `ibrand_goods_product` VALUES ('2380', '172', '5', 'fgwz-8', '0.01', '35.00', null, null, '1', '[\"4\",\"40\"]', '2018-09-05 14:27:18', '2018-09-05 14:27:18', null);
  5321. INSERT INTO `ibrand_goods_product` VALUES ('2381', '172', '5', 'fgwz-9', '0.01', '35.00', null, null, '1', '[\"4\",\"41\"]', '2018-09-05 14:27:18', '2018-09-05 14:27:18', null);
  5322. INSERT INTO `ibrand_goods_product` VALUES ('2382', '172', '5', 'fgwz-10', '0.01', '35.00', null, null, '1', '[\"8\",\"39\"]', '2018-09-05 14:27:18', '2018-09-05 14:27:18', null);
  5323. INSERT INTO `ibrand_goods_product` VALUES ('2383', '172', '5', 'fgwz-11', '0.01', '35.00', null, null, '1', '[\"8\",\"40\"]', '2018-09-05 14:27:18', '2018-09-05 14:27:18', null);
  5324. INSERT INTO `ibrand_goods_product` VALUES ('2384', '172', '5', 'fgwz-12', '0.01', '35.00', null, null, '1', '[\"8\",\"41\"]', '2018-09-05 14:27:18', '2018-09-05 14:27:18', null);
  5325. INSERT INTO `ibrand_goods_product` VALUES ('2385', '172', '5', 'fgwz-13', '0.01', '35.00', null, null, '1', '[\"11\",\"39\"]', '2018-09-05 14:27:18', '2018-09-05 14:27:18', null);
  5326. INSERT INTO `ibrand_goods_product` VALUES ('2386', '172', '5', 'fgwz-14', '0.01', '35.00', null, null, '1', '[\"11\",\"40\"]', '2018-09-05 14:27:18', '2018-09-05 14:27:18', null);
  5327. INSERT INTO `ibrand_goods_product` VALUES ('2387', '172', '5', 'fgwz-15', '0.01', '35.00', null, null, '1', '[\"11\",\"41\"]', '2018-09-05 14:27:18', '2018-09-05 14:27:18', null);
  5328. INSERT INTO `ibrand_goods_product` VALUES ('2388', '172', '4', 'fgwz-16', '0.01', '35.00', null, null, '1', '[\"16\",\"39\"]', '2018-09-05 14:27:18', '2018-10-12 06:59:37', null);
  5329. INSERT INTO `ibrand_goods_product` VALUES ('2389', '172', '5', 'fgwz-17', '0.01', '35.00', null, null, '1', '[\"16\",\"40\"]', '2018-09-05 14:27:18', '2018-09-05 14:27:18', null);
  5330. INSERT INTO `ibrand_goods_product` VALUES ('2390', '172', '5', 'fgwz-18', '0.01', '35.00', null, null, '1', '[\"16\",\"41\"]', '2018-09-05 14:27:18', '2018-09-05 14:27:18', null);
  5331. INSERT INTO `ibrand_goods_product` VALUES ('2391', '172', '5', 'fgwz-19', '0.01', '35.00', null, null, '1', '[\"29\",\"39\"]', '2018-09-05 14:27:18', '2018-09-05 14:27:18', null);
  5332. INSERT INTO `ibrand_goods_product` VALUES ('2392', '172', '5', 'fgwz-20', '0.01', '35.00', null, null, '1', '[\"29\",\"40\"]', '2018-09-05 14:27:18', '2018-09-05 14:27:18', null);
  5333. INSERT INTO `ibrand_goods_product` VALUES ('2393', '172', '5', 'fgwz-21', '0.01', '35.00', null, null, '1', '[\"29\",\"41\"]', '2018-09-05 14:27:18', '2018-09-05 14:27:18', null);
  5334. INSERT INTO `ibrand_goods_product` VALUES ('2394', '172', '5', 'fgwz-22', '0.01', '35.00', null, null, '1', '[\"31\",\"39\"]', '2018-09-05 14:27:18', '2018-09-05 14:27:18', null);
  5335. INSERT INTO `ibrand_goods_product` VALUES ('2395', '172', '5', 'fgwz-23', '0.01', '35.00', null, null, '1', '[\"31\",\"40\"]', '2018-09-05 14:27:18', '2018-09-05 14:27:18', null);
  5336. INSERT INTO `ibrand_goods_product` VALUES ('2396', '172', '5', 'fgwz-24', '0.01', '35.00', null, null, '1', '[\"31\",\"41\"]', '2018-09-05 14:27:18', '2018-09-05 14:27:18', null);
  5337. INSERT INTO `ibrand_goods_product` VALUES ('2397', '172', '5', 'fgwz-25', '0.01', '35.00', null, null, '1', '[\"34\",\"39\"]', '2018-09-05 14:27:18', '2018-09-05 14:27:18', null);
  5338. INSERT INTO `ibrand_goods_product` VALUES ('2398', '172', '5', 'fgwz-26', '0.01', '35.00', null, null, '1', '[\"34\",\"40\"]', '2018-09-05 14:27:18', '2018-09-05 14:27:18', null);
  5339. INSERT INTO `ibrand_goods_product` VALUES ('2399', '172', '5', 'fgwz-27', '0.01', '35.00', null, null, '1', '[\"34\",\"41\"]', '2018-09-05 14:27:18', '2018-09-05 14:27:18', null);
  5340. INSERT INTO `ibrand_goods_product` VALUES ('2400', '172', '5', 'fgwz-28', '0.01', '35.00', null, null, '1', '[\"36\",\"39\"]', '2018-09-05 14:27:18', '2018-09-05 14:27:18', null);
  5341. INSERT INTO `ibrand_goods_product` VALUES ('2401', '172', '5', 'fgwz-29', '0.01', '35.00', null, null, '1', '[\"36\",\"40\"]', '2018-09-05 14:27:18', '2018-09-05 14:27:18', null);
  5342. INSERT INTO `ibrand_goods_product` VALUES ('2402', '172', '5', 'fgwz-30', '0.01', '35.00', null, null, '1', '[\"36\",\"41\"]', '2018-09-05 14:27:18', '2018-09-05 14:27:18', null);
  5343. INSERT INTO `ibrand_goods_product` VALUES ('2403', '172', '4', 'fgwz-31', '0.01', '35.00', null, null, '1', '[\"39\",\"47\"]', '2018-09-05 14:27:18', '2018-09-10 16:18:57', null);
  5344. INSERT INTO `ibrand_goods_product` VALUES ('2404', '172', '5', 'fgwz-32', '0.01', '35.00', null, null, '1', '[\"40\",\"47\"]', '2018-09-05 14:27:18', '2018-09-05 14:27:18', null);
  5345. INSERT INTO `ibrand_goods_product` VALUES ('2405', '172', '5', 'fgwz-33', '0.01', '35.00', null, null, '1', '[\"41\",\"47\"]', '2018-09-05 14:27:18', '2018-09-05 14:27:18', null);
  5346. -- ----------------------------
  5347. -- Table structure for ibrand_goods_spec
  5348. -- ----------------------------
  5349. DROP TABLE IF EXISTS `ibrand_goods_spec`;
  5350. CREATE TABLE `ibrand_goods_spec` (
  5351. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  5352. `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  5353. `display_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  5354. `type` tinyint(4) NOT NULL DEFAULT '1',
  5355. `created_at` timestamp NULL DEFAULT NULL,
  5356. `updated_at` timestamp NULL DEFAULT NULL,
  5357. `deleted_at` timestamp NULL DEFAULT NULL,
  5358. PRIMARY KEY (`id`)
  5359. ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
  5360. -- ----------------------------
  5361. -- Records of ibrand_goods_spec
  5362. -- ----------------------------
  5363. INSERT INTO `ibrand_goods_spec` VALUES ('1', 'size', '尺寸', '1', '2017-04-17 17:30:02', '2017-05-17 16:56:09', null);
  5364. INSERT INTO `ibrand_goods_spec` VALUES ('2', 'color', '颜色', '2', '2017-04-17 17:30:02', '2017-04-17 17:30:02', null);
  5365. -- ----------------------------
  5366. -- Table structure for ibrand_goods_spec_relation
  5367. -- ----------------------------
  5368. DROP TABLE IF EXISTS `ibrand_goods_spec_relation`;
  5369. CREATE TABLE `ibrand_goods_spec_relation` (
  5370. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  5371. `goods_id` int(11) NOT NULL,
  5372. `spec_id` int(10) unsigned NOT NULL,
  5373. `spec_value_id` int(10) unsigned NOT NULL,
  5374. `alias` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  5375. `sort` tinyint(4) DEFAULT NULL,
  5376. `img` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  5377. `created_at` timestamp NULL DEFAULT NULL,
  5378. `updated_at` timestamp NULL DEFAULT NULL,
  5379. `deleted_at` timestamp NULL DEFAULT NULL,
  5380. PRIMARY KEY (`id`)
  5381. ) ENGINE=InnoDB AUTO_INCREMENT=1274 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
  5382. -- ----------------------------
  5383. -- Records of ibrand_goods_spec_relation
  5384. -- ----------------------------
  5385. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1', '1', '1', '40', '', '2', '', '2017-05-11 11:38:51', '2017-05-11 11:51:10', null);
  5386. INSERT INTO `ibrand_goods_spec_relation` VALUES ('2', '1', '1', '41', '', '2', '', '2017-05-11 11:38:51', '2017-05-11 11:51:10', null);
  5387. INSERT INTO `ibrand_goods_spec_relation` VALUES ('3', '1', '1', '42', '', '2', '', '2017-05-11 11:38:51', '2017-05-11 11:51:10', null);
  5388. INSERT INTO `ibrand_goods_spec_relation` VALUES ('4', '1', '1', '43', '', '2', '', '2017-05-11 11:38:51', '2017-05-11 11:51:10', null);
  5389. INSERT INTO `ibrand_goods_spec_relation` VALUES ('5', '1', '1', '44', '', '2', '', '2017-05-11 11:38:51', '2017-05-11 11:51:10', null);
  5390. INSERT INTO `ibrand_goods_spec_relation` VALUES ('6', '1', '2', '6', '卡其色', '1', 'http://admin.viperky.com/uploads/JGltNkCUWP.jpg', '2017-05-11 11:38:51', '2017-05-11 11:51:10', null);
  5391. INSERT INTO `ibrand_goods_spec_relation` VALUES ('7', '2', '1', '40', '', '2', '', '2017-05-11 16:06:19', '2017-05-15 11:58:17', null);
  5392. INSERT INTO `ibrand_goods_spec_relation` VALUES ('8', '2', '1', '41', '', '2', '', '2017-05-11 16:06:19', '2017-05-15 11:58:17', null);
  5393. INSERT INTO `ibrand_goods_spec_relation` VALUES ('9', '2', '1', '42', '', '2', '', '2017-05-11 16:06:19', '2017-05-15 11:58:17', null);
  5394. INSERT INTO `ibrand_goods_spec_relation` VALUES ('10', '2', '1', '43', '', '2', '', '2017-05-11 16:06:19', '2017-05-15 11:58:17', null);
  5395. INSERT INTO `ibrand_goods_spec_relation` VALUES ('11', '2', '1', '44', '', '2', '', '2017-05-11 16:06:19', '2017-05-15 11:58:17', null);
  5396. INSERT INTO `ibrand_goods_spec_relation` VALUES ('12', '2', '2', '9', '绿色', '1', 'http://admin.viperky.com/uploads/6yS03jWcBQ.jpg', '2017-05-11 16:06:19', '2017-05-15 11:58:17', null);
  5397. INSERT INTO `ibrand_goods_spec_relation` VALUES ('13', '3', '1', '40', '', '2', '', '2017-05-15 15:22:03', '2017-05-15 15:22:03', null);
  5398. INSERT INTO `ibrand_goods_spec_relation` VALUES ('14', '3', '1', '41', '', '2', '', '2017-05-15 15:22:03', '2017-05-15 15:22:03', null);
  5399. INSERT INTO `ibrand_goods_spec_relation` VALUES ('15', '3', '1', '42', '', '2', '', '2017-05-15 15:22:03', '2017-05-15 15:22:03', null);
  5400. INSERT INTO `ibrand_goods_spec_relation` VALUES ('16', '3', '1', '43', '', '2', '', '2017-05-15 15:22:03', '2017-05-15 15:22:03', null);
  5401. INSERT INTO `ibrand_goods_spec_relation` VALUES ('17', '3', '1', '44', '', '2', '', '2017-05-15 15:22:03', '2017-05-15 15:22:03', null);
  5402. INSERT INTO `ibrand_goods_spec_relation` VALUES ('18', '3', '2', '46', '', '1', 'http://admin.viperky.com/uploads/InBgMsOfcY.jpg', '2017-05-15 15:22:03', '2017-05-15 15:22:03', null);
  5403. INSERT INTO `ibrand_goods_spec_relation` VALUES ('19', '4', '1', '40', '', '2', '', '2017-05-15 15:29:10', '2017-05-15 15:29:10', null);
  5404. INSERT INTO `ibrand_goods_spec_relation` VALUES ('20', '4', '1', '41', '', '2', '', '2017-05-15 15:29:10', '2017-05-15 15:29:10', null);
  5405. INSERT INTO `ibrand_goods_spec_relation` VALUES ('21', '4', '1', '42', '', '2', '', '2017-05-15 15:29:10', '2017-05-15 15:29:10', null);
  5406. INSERT INTO `ibrand_goods_spec_relation` VALUES ('22', '4', '1', '43', '', '2', '', '2017-05-15 15:29:10', '2017-05-15 15:29:10', null);
  5407. INSERT INTO `ibrand_goods_spec_relation` VALUES ('23', '4', '1', '44', '', '2', '', '2017-05-15 15:29:10', '2017-05-15 15:29:10', null);
  5408. INSERT INTO `ibrand_goods_spec_relation` VALUES ('24', '4', '2', '20', '', '1', 'http://admin.viperky.com/uploads/zgqamIaK3F.jpg', '2017-05-15 15:29:10', '2017-05-15 15:29:10', null);
  5409. INSERT INTO `ibrand_goods_spec_relation` VALUES ('25', '5', '1', '40', '', '2', '', '2017-05-15 15:36:23', '2017-05-15 15:36:23', null);
  5410. INSERT INTO `ibrand_goods_spec_relation` VALUES ('26', '5', '1', '41', '', '2', '', '2017-05-15 15:36:23', '2017-05-15 15:36:23', null);
  5411. INSERT INTO `ibrand_goods_spec_relation` VALUES ('27', '5', '1', '42', '', '2', '', '2017-05-15 15:36:23', '2017-05-15 15:36:23', null);
  5412. INSERT INTO `ibrand_goods_spec_relation` VALUES ('28', '5', '1', '43', '', '2', '', '2017-05-15 15:36:23', '2017-05-15 15:36:23', null);
  5413. INSERT INTO `ibrand_goods_spec_relation` VALUES ('29', '5', '1', '44', '', '2', '', '2017-05-15 15:36:23', '2017-05-15 15:36:23', null);
  5414. INSERT INTO `ibrand_goods_spec_relation` VALUES ('30', '5', '2', '4', '', '1', 'http://admin.viperky.com/uploads/7XFb1myOzn.jpg', '2017-05-15 15:36:23', '2017-05-15 15:36:23', null);
  5415. INSERT INTO `ibrand_goods_spec_relation` VALUES ('31', '6', '1', '40', '', '2', '', '2017-05-15 15:45:37', '2017-05-15 15:45:37', null);
  5416. INSERT INTO `ibrand_goods_spec_relation` VALUES ('32', '6', '1', '41', '', '2', '', '2017-05-15 15:45:37', '2017-05-15 15:45:37', null);
  5417. INSERT INTO `ibrand_goods_spec_relation` VALUES ('33', '6', '1', '42', '', '2', '', '2017-05-15 15:45:37', '2017-05-15 15:45:37', null);
  5418. INSERT INTO `ibrand_goods_spec_relation` VALUES ('34', '6', '1', '43', '', '2', '', '2017-05-15 15:45:37', '2017-05-15 15:45:37', null);
  5419. INSERT INTO `ibrand_goods_spec_relation` VALUES ('35', '6', '1', '44', '', '2', '', '2017-05-15 15:45:37', '2017-05-15 15:45:37', null);
  5420. INSERT INTO `ibrand_goods_spec_relation` VALUES ('36', '6', '2', '34', '杏色', '1', 'http://admin.viperky.com/uploads/AkAWwKcn2R.jpg', '2017-05-15 15:45:37', '2017-05-15 15:45:37', null);
  5421. INSERT INTO `ibrand_goods_spec_relation` VALUES ('37', '7', '1', '40', '', '2', '', '2017-05-15 16:00:55', '2017-05-15 16:00:55', null);
  5422. INSERT INTO `ibrand_goods_spec_relation` VALUES ('38', '7', '1', '41', '', '2', '', '2017-05-15 16:00:55', '2017-05-15 16:00:55', null);
  5423. INSERT INTO `ibrand_goods_spec_relation` VALUES ('39', '7', '1', '42', '', '2', '', '2017-05-15 16:00:55', '2017-05-15 16:00:55', null);
  5424. INSERT INTO `ibrand_goods_spec_relation` VALUES ('40', '7', '1', '43', '', '2', '', '2017-05-15 16:00:55', '2017-05-15 16:00:55', null);
  5425. INSERT INTO `ibrand_goods_spec_relation` VALUES ('41', '7', '1', '44', '', '2', '', '2017-05-15 16:00:55', '2017-05-15 16:00:55', null);
  5426. INSERT INTO `ibrand_goods_spec_relation` VALUES ('42', '7', '2', '37', '', '1', 'http://admin.viperky.com/uploads/RYxA49qAtv.jpg', '2017-05-15 16:00:55', '2017-05-15 16:00:55', null);
  5427. INSERT INTO `ibrand_goods_spec_relation` VALUES ('43', '8', '1', '40', '', '2', '', '2017-05-15 16:07:31', '2017-05-15 16:07:31', null);
  5428. INSERT INTO `ibrand_goods_spec_relation` VALUES ('44', '8', '1', '41', '', '2', '', '2017-05-15 16:07:31', '2017-05-15 16:07:31', null);
  5429. INSERT INTO `ibrand_goods_spec_relation` VALUES ('45', '8', '1', '42', '', '2', '', '2017-05-15 16:07:31', '2017-05-15 16:07:31', null);
  5430. INSERT INTO `ibrand_goods_spec_relation` VALUES ('46', '8', '1', '43', '', '2', '', '2017-05-15 16:07:31', '2017-05-15 16:07:31', null);
  5431. INSERT INTO `ibrand_goods_spec_relation` VALUES ('47', '8', '1', '44', '', '2', '', '2017-05-15 16:07:31', '2017-05-15 16:07:31', null);
  5432. INSERT INTO `ibrand_goods_spec_relation` VALUES ('48', '8', '2', '4', '', '1', 'http://admin.viperky.com/uploads/VppRPYD3Dk.jpg', '2017-05-15 16:07:31', '2017-05-15 16:07:31', null);
  5433. INSERT INTO `ibrand_goods_spec_relation` VALUES ('49', '9', '1', '40', '', '2', '', '2017-05-15 16:13:34', '2017-05-15 16:13:34', null);
  5434. INSERT INTO `ibrand_goods_spec_relation` VALUES ('50', '9', '1', '41', '', '2', '', '2017-05-15 16:13:34', '2017-05-15 16:13:34', null);
  5435. INSERT INTO `ibrand_goods_spec_relation` VALUES ('51', '9', '1', '42', '', '2', '', '2017-05-15 16:13:34', '2017-05-15 16:13:34', null);
  5436. INSERT INTO `ibrand_goods_spec_relation` VALUES ('52', '9', '1', '43', '', '2', '', '2017-05-15 16:13:34', '2017-05-15 16:13:34', null);
  5437. INSERT INTO `ibrand_goods_spec_relation` VALUES ('53', '9', '1', '44', '', '2', '', '2017-05-15 16:13:34', '2017-05-15 16:13:34', null);
  5438. INSERT INTO `ibrand_goods_spec_relation` VALUES ('54', '9', '2', '15', '花色', '1', 'http://admin.viperky.com/uploads/JCji87ZLpD.jpg', '2017-05-15 16:13:34', '2017-05-15 16:13:34', null);
  5439. INSERT INTO `ibrand_goods_spec_relation` VALUES ('55', '10', '1', '40', '', '2', '', '2017-05-15 16:41:51', '2017-05-15 16:41:51', null);
  5440. INSERT INTO `ibrand_goods_spec_relation` VALUES ('56', '10', '1', '41', '', '2', '', '2017-05-15 16:41:51', '2017-05-15 16:41:51', null);
  5441. INSERT INTO `ibrand_goods_spec_relation` VALUES ('57', '10', '1', '42', '', '2', '', '2017-05-15 16:41:51', '2017-05-15 16:41:51', null);
  5442. INSERT INTO `ibrand_goods_spec_relation` VALUES ('58', '10', '1', '43', '', '2', '', '2017-05-15 16:41:51', '2017-05-15 16:41:51', null);
  5443. INSERT INTO `ibrand_goods_spec_relation` VALUES ('59', '10', '1', '44', '', '2', '', '2017-05-15 16:41:51', '2017-05-15 16:41:51', null);
  5444. INSERT INTO `ibrand_goods_spec_relation` VALUES ('60', '10', '2', '46', '', '1', 'http://admin.viperky.com/uploads/zMfx8PT2O0.jpg', '2017-05-15 16:41:51', '2017-05-15 16:41:51', null);
  5445. INSERT INTO `ibrand_goods_spec_relation` VALUES ('61', '11', '1', '40', '', '2', '', '2017-05-15 16:52:45', '2017-05-15 16:52:45', null);
  5446. INSERT INTO `ibrand_goods_spec_relation` VALUES ('62', '11', '1', '41', '', '2', '', '2017-05-15 16:52:45', '2017-05-15 16:52:45', null);
  5447. INSERT INTO `ibrand_goods_spec_relation` VALUES ('63', '11', '1', '42', '', '2', '', '2017-05-15 16:52:45', '2017-05-15 16:52:45', null);
  5448. INSERT INTO `ibrand_goods_spec_relation` VALUES ('64', '11', '1', '43', '', '2', '', '2017-05-15 16:52:45', '2017-05-15 16:52:45', null);
  5449. INSERT INTO `ibrand_goods_spec_relation` VALUES ('65', '11', '1', '44', '', '2', '', '2017-05-15 16:52:45', '2017-05-15 16:52:45', null);
  5450. INSERT INTO `ibrand_goods_spec_relation` VALUES ('66', '11', '2', '4', '', '1', 'http://admin.viperky.com/uploads/NMz371GGr1.jpg', '2017-05-15 16:52:45', '2017-05-15 16:52:45', null);
  5451. INSERT INTO `ibrand_goods_spec_relation` VALUES ('67', '11', '2', '47', '', '1', 'http://admin.viperky.com/uploads/5MlgZ84BKq.jpg', '2017-05-15 16:52:45', '2017-05-15 16:52:45', null);
  5452. INSERT INTO `ibrand_goods_spec_relation` VALUES ('68', '12', '1', '40', '', '2', '', '2017-05-15 17:24:01', '2017-05-15 17:24:01', null);
  5453. INSERT INTO `ibrand_goods_spec_relation` VALUES ('69', '12', '1', '41', '', '2', '', '2017-05-15 17:24:01', '2017-05-15 17:24:01', null);
  5454. INSERT INTO `ibrand_goods_spec_relation` VALUES ('70', '12', '1', '42', '', '2', '', '2017-05-15 17:24:01', '2017-05-15 17:24:01', null);
  5455. INSERT INTO `ibrand_goods_spec_relation` VALUES ('71', '12', '1', '43', '', '2', '', '2017-05-15 17:24:01', '2017-05-15 17:24:01', null);
  5456. INSERT INTO `ibrand_goods_spec_relation` VALUES ('72', '12', '1', '44', '', '2', '', '2017-05-15 17:24:01', '2017-05-15 17:24:01', null);
  5457. INSERT INTO `ibrand_goods_spec_relation` VALUES ('73', '12', '2', '46', '', '1', 'http://admin.viperky.com/uploads/vcEnnkN9eV.jpg', '2017-05-15 17:24:01', '2017-05-15 17:24:01', null);
  5458. INSERT INTO `ibrand_goods_spec_relation` VALUES ('74', '13', '2', '1', '黑色', '1', 'https://cdn.viperky.com/storage/images/20170922/zkxPM8kQP5.jpg', '2017-09-22 13:26:08', '2018-05-25 14:08:34', null);
  5459. INSERT INTO `ibrand_goods_spec_relation` VALUES ('75', '13', '1', '48', '通用', '2', '', '2017-09-22 13:26:08', '2018-05-25 14:08:34', null);
  5460. INSERT INTO `ibrand_goods_spec_relation` VALUES ('76', '14', '2', '4', '粉红色', '1', 'https://cdn.viperky.com/storage/images/20171016/WLYJhKZBVQ.jpg', '2017-10-16 15:09:03', '2017-10-19 23:18:03', null);
  5461. INSERT INTO `ibrand_goods_spec_relation` VALUES ('77', '14', '2', '18', '米奇蓝', '1', 'https://cdn.viperky.com/storage/images/20171016/16KrfmUqvK.jpg', '2017-10-16 15:09:03', '2017-10-19 23:18:03', null);
  5462. INSERT INTO `ibrand_goods_spec_relation` VALUES ('78', '14', '1', '48', '通用', '2', '', '2017-10-16 15:09:03', '2017-10-19 23:18:03', null);
  5463. INSERT INTO `ibrand_goods_spec_relation` VALUES ('79', '15', '2', '47', '黄色', '1', 'https://cdn.viperky.com/storage/images/20171018/FKJhGKAnQh.png', '2017-10-18 22:12:12', '2017-10-18 22:12:12', null);
  5464. INSERT INTO `ibrand_goods_spec_relation` VALUES ('80', '15', '1', '45', '300ml', '2', '', '2017-10-18 22:12:12', '2017-10-18 22:12:12', null);
  5465. INSERT INTO `ibrand_goods_spec_relation` VALUES ('81', '16', '2', '4', '粉红色', '1', 'https://cdn.viperky.com/storage/images/20171018/wuuykc0oo4.jpg', '2017-10-18 22:22:04', '2017-10-18 22:22:04', null);
  5466. INSERT INTO `ibrand_goods_spec_relation` VALUES ('82', '16', '2', '20', '蓝色', '1', 'https://cdn.viperky.com/storage/images/20171018/gAgzyVSyDq.jpg', '2017-10-18 22:22:04', '2017-10-18 22:22:04', null);
  5467. INSERT INTO `ibrand_goods_spec_relation` VALUES ('83', '16', '1', '48', '通用', '2', '', '2017-10-18 22:22:04', '2017-10-18 22:22:04', null);
  5468. INSERT INTO `ibrand_goods_spec_relation` VALUES ('84', '17', '2', '4', '粉红色', '1', 'https://cdn.viperky.com/storage/images/20171018/QRikr21Ozc.jpg', '2017-10-18 22:46:49', '2017-10-18 22:46:49', null);
  5469. INSERT INTO `ibrand_goods_spec_relation` VALUES ('85', '17', '2', '11', '绿色', '1', 'https://cdn.viperky.com/storage/images/20171018/FwYqfxzjAQ.jpg', '2017-10-18 22:46:49', '2017-10-18 22:46:49', null);
  5470. INSERT INTO `ibrand_goods_spec_relation` VALUES ('86', '17', '2', '47', '黄色', '1', 'https://cdn.viperky.com/storage/images/20171018/xZdEpyQyfi.jpg', '2017-10-18 22:46:49', '2017-10-18 22:46:49', null);
  5471. INSERT INTO `ibrand_goods_spec_relation` VALUES ('87', '17', '1', '48', '通用', '2', '', '2017-10-18 22:46:49', '2017-10-18 22:46:49', null);
  5472. INSERT INTO `ibrand_goods_spec_relation` VALUES ('88', '18', '2', '4', '粉红色', '1', 'https://cdn.viperky.com/storage/images/20171018/1EMcfR9Qdb.jpg', '2017-10-18 22:52:47', '2017-10-18 22:52:47', null);
  5473. INSERT INTO `ibrand_goods_spec_relation` VALUES ('89', '18', '2', '10', '浅绿色', '1', 'https://cdn.viperky.com/storage/images/20171018/xKq8l3ApUk.jpg', '2017-10-18 22:52:47', '2017-10-18 22:52:47', null);
  5474. INSERT INTO `ibrand_goods_spec_relation` VALUES ('90', '18', '2', '26', '紫色', '1', 'https://cdn.viperky.com/storage/images/20171018/w0gVpGtQL2.jpg', '2017-10-18 22:52:47', '2017-10-18 22:52:47', null);
  5475. INSERT INTO `ibrand_goods_spec_relation` VALUES ('91', '18', '1', '48', '通用', '2', '', '2017-10-18 22:52:47', '2017-10-18 22:52:47', null);
  5476. INSERT INTO `ibrand_goods_spec_relation` VALUES ('92', '19', '2', '4', '粉红色', '1', 'https://cdn.viperky.com/storage/images/20171018/ilPacpXOTu.jpg', '2017-10-18 22:57:27', '2017-10-18 22:57:27', null);
  5477. INSERT INTO `ibrand_goods_spec_relation` VALUES ('93', '19', '2', '11', '绿色', '1', 'https://cdn.viperky.com/storage/images/20171018/kE0dI5Jj6I.jpg', '2017-10-18 22:57:27', '2017-10-18 22:57:27', null);
  5478. INSERT INTO `ibrand_goods_spec_relation` VALUES ('94', '19', '1', '48', '通用', '2', '', '2017-10-18 22:57:27', '2017-10-18 22:57:27', null);
  5479. INSERT INTO `ibrand_goods_spec_relation` VALUES ('95', '20', '2', '47', '黄色', '1', 'https://cdn.viperky.com/storage/images/20171018/zVj1XjxeRP.jpg', '2017-10-18 22:59:15', '2017-10-18 22:59:15', null);
  5480. INSERT INTO `ibrand_goods_spec_relation` VALUES ('96', '20', '1', '48', '通用', '2', '', '2017-10-18 22:59:15', '2017-10-18 22:59:15', null);
  5481. INSERT INTO `ibrand_goods_spec_relation` VALUES ('97', '21', '2', '11', '绿色', '1', 'https://cdn.viperky.com/storage/images/20171018/kovuaEL5LB.jpg', '2017-10-18 23:04:10', '2017-10-18 23:04:10', null);
  5482. INSERT INTO `ibrand_goods_spec_relation` VALUES ('98', '21', '1', '48', '通用', '2', '', '2017-10-18 23:04:10', '2017-10-18 23:04:10', null);
  5483. INSERT INTO `ibrand_goods_spec_relation` VALUES ('99', '22', '2', '4', '粉红色', '1', 'https://cdn.viperky.com/storage/images/20171018/mL9DUMJGGv.jpg', '2017-10-18 23:07:04', '2017-10-18 23:07:04', null);
  5484. INSERT INTO `ibrand_goods_spec_relation` VALUES ('100', '22', '2', '20', '蓝色', '1', 'https://cdn.viperky.com/storage/images/20171018/SG39xl8pUS.jpg', '2017-10-18 23:07:04', '2017-10-18 23:07:04', null);
  5485. INSERT INTO `ibrand_goods_spec_relation` VALUES ('101', '22', '1', '48', '通用', '2', '', '2017-10-18 23:07:04', '2017-10-18 23:07:04', null);
  5486. INSERT INTO `ibrand_goods_spec_relation` VALUES ('102', '23', '2', '11', '绿色', '1', 'https://cdn.viperky.com/storage/images/20171018/BGoJeQObMz.jpg', '2017-10-18 23:08:06', '2017-10-18 23:08:06', null);
  5487. INSERT INTO `ibrand_goods_spec_relation` VALUES ('103', '23', '1', '48', '通用', '2', '', '2017-10-18 23:08:06', '2017-10-18 23:08:06', null);
  5488. INSERT INTO `ibrand_goods_spec_relation` VALUES ('104', '24', '2', '4', '粉红色', '1', 'https://cdn.viperky.com/storage/images/20171018/2kTHRyYAT8.jpg', '2017-10-18 23:11:32', '2017-10-18 23:11:32', null);
  5489. INSERT INTO `ibrand_goods_spec_relation` VALUES ('105', '24', '1', '48', '通用', '2', '', '2017-10-18 23:11:32', '2017-10-18 23:11:32', null);
  5490. INSERT INTO `ibrand_goods_spec_relation` VALUES ('106', '25', '2', '4', '粉红色', '1', 'https://cdn.viperky.com/storage/images/20171018/VYnD5WaK1Y.jpg', '2017-10-18 23:11:54', '2017-10-18 23:11:54', null);
  5491. INSERT INTO `ibrand_goods_spec_relation` VALUES ('107', '25', '2', '20', '蓝色', '1', 'https://cdn.viperky.com/storage/images/20171018/01mSvGj5jD.jpg', '2017-10-18 23:11:54', '2017-10-18 23:11:54', null);
  5492. INSERT INTO `ibrand_goods_spec_relation` VALUES ('108', '25', '1', '48', '通用', '2', '', '2017-10-18 23:11:54', '2017-10-18 23:11:54', null);
  5493. INSERT INTO `ibrand_goods_spec_relation` VALUES ('109', '26', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20171018/CnMiKyuRUF.jpg', '2017-10-18 23:16:04', '2017-10-18 23:16:04', null);
  5494. INSERT INTO `ibrand_goods_spec_relation` VALUES ('110', '26', '1', '48', '通用', '2', '', '2017-10-18 23:16:04', '2017-10-18 23:16:04', null);
  5495. INSERT INTO `ibrand_goods_spec_relation` VALUES ('111', '27', '2', '20', '蓝色', '1', 'https://cdn.viperky.com/storage/images/20171018/86j9I2u3AU.jpg', '2017-10-18 23:16:49', '2017-10-18 23:16:49', null);
  5496. INSERT INTO `ibrand_goods_spec_relation` VALUES ('112', '27', '1', '48', '通用', '2', '', '2017-10-18 23:16:49', '2017-10-18 23:16:49', null);
  5497. INSERT INTO `ibrand_goods_spec_relation` VALUES ('113', '28', '2', '11', '绿色', '1', 'https://cdn.viperky.com/storage/images/20171018/9MnoG0V4aJ.jpg', '2017-10-18 23:18:53', '2017-10-18 23:18:53', null);
  5498. INSERT INTO `ibrand_goods_spec_relation` VALUES ('114', '28', '1', '48', '通用', '2', '', '2017-10-18 23:18:53', '2017-10-18 23:18:53', null);
  5499. INSERT INTO `ibrand_goods_spec_relation` VALUES ('115', '29', '2', '18', '深蓝色', '1', 'https://cdn.viperky.com/storage/images/20171018/qD7B2cr1m0.jpg', '2017-10-18 23:19:58', '2017-10-18 23:21:48', null);
  5500. INSERT INTO `ibrand_goods_spec_relation` VALUES ('116', '29', '1', '48', '通用', '2', '', '2017-10-18 23:19:58', '2017-10-18 23:21:48', null);
  5501. INSERT INTO `ibrand_goods_spec_relation` VALUES ('117', '30', '2', '9', '军绿色', '1', 'https://cdn.viperky.com/storage/images/20171018/I9DTSELLnn.jpg', '2017-10-18 23:25:57', '2017-10-18 23:25:57', null);
  5502. INSERT INTO `ibrand_goods_spec_relation` VALUES ('118', '30', '1', '48', '通用', '2', '', '2017-10-18 23:25:57', '2017-10-18 23:25:57', null);
  5503. INSERT INTO `ibrand_goods_spec_relation` VALUES ('119', '31', '2', '12', '翠绿色', '1', 'https://cdn.viperky.com/storage/images/20171018/7pvIhHhle9.jpg', '2017-10-18 23:32:08', '2017-10-18 23:32:08', null);
  5504. INSERT INTO `ibrand_goods_spec_relation` VALUES ('120', '31', '1', '48', '通用', '2', '', '2017-10-18 23:32:08', '2017-10-18 23:32:08', null);
  5505. INSERT INTO `ibrand_goods_spec_relation` VALUES ('121', '32', '2', '19', '湖蓝色', '1', 'https://cdn.viperky.com/storage/images/20171018/5zAmDVa5he.jpg', '2017-10-18 23:36:24', '2017-10-18 23:36:24', null);
  5506. INSERT INTO `ibrand_goods_spec_relation` VALUES ('122', '32', '1', '48', '通用', '2', '', '2017-10-18 23:36:24', '2017-10-18 23:36:24', null);
  5507. INSERT INTO `ibrand_goods_spec_relation` VALUES ('123', '33', '2', '7', '西瓜红', '1', '', '2017-11-09 16:39:47', '2017-12-27 15:57:49', null);
  5508. INSERT INTO `ibrand_goods_spec_relation` VALUES ('124', '33', '1', '48', '均码', '2', '', '2017-11-09 16:39:47', '2017-12-27 15:57:49', null);
  5509. INSERT INTO `ibrand_goods_spec_relation` VALUES ('125', '34', '2', '7', '西瓜红', '1', '', '2017-11-09 17:38:05', '2017-11-09 17:38:05', null);
  5510. INSERT INTO `ibrand_goods_spec_relation` VALUES ('126', '34', '1', '48', '通用', '2', '', '2017-11-09 17:38:05', '2017-11-09 17:38:05', null);
  5511. INSERT INTO `ibrand_goods_spec_relation` VALUES ('127', '35', '2', '7', '西瓜红', '1', '', '2017-11-09 17:40:33', '2017-11-09 17:40:33', null);
  5512. INSERT INTO `ibrand_goods_spec_relation` VALUES ('128', '35', '1', '48', '通用', '2', '', '2017-11-09 17:40:33', '2017-11-09 17:40:33', null);
  5513. INSERT INTO `ibrand_goods_spec_relation` VALUES ('129', '36', '2', '4', '粉色美人鱼', '1', 'https://cdn.viperky.com/storage/images/20171213/FCSlVzjYGD.jpg', '2017-12-13 17:43:51', '2017-12-13 17:43:51', null);
  5514. INSERT INTO `ibrand_goods_spec_relation` VALUES ('130', '36', '2', '16', '蓝色米奇', '1', 'https://cdn.viperky.com/storage/images/20171213/Tw89NLzAYY.jpg', '2017-12-13 17:43:51', '2017-12-13 17:43:51', null);
  5515. INSERT INTO `ibrand_goods_spec_relation` VALUES ('131', '36', '2', '20', '蓝色公主', '1', 'https://cdn.viperky.com/storage/images/20171213/8dRMzAMgnd.jpg', '2017-12-13 17:43:51', '2017-12-13 17:43:51', null);
  5516. INSERT INTO `ibrand_goods_spec_relation` VALUES ('132', '36', '1', '48', '500ml', '2', '', '2017-12-13 17:43:51', '2017-12-13 17:43:51', null);
  5517. INSERT INTO `ibrand_goods_spec_relation` VALUES ('133', '37', '2', '5', '彩色', '1', 'https://cdn.viperky.com/storage/images/20171215/51pjpQSEi2.jpg', '2017-12-15 12:40:38', '2017-12-15 12:40:38', null);
  5518. INSERT INTO `ibrand_goods_spec_relation` VALUES ('134', '37', '1', '48', '通用', '2', '', '2017-12-15 12:40:38', '2017-12-15 12:40:38', null);
  5519. INSERT INTO `ibrand_goods_spec_relation` VALUES ('135', '38', '2', '5', '红色', '1', 'https://cdn.viperky.com/storage/images/20171215/PpShgL5lP9.jpg', '2017-12-15 12:44:50', '2017-12-15 14:09:36', null);
  5520. INSERT INTO `ibrand_goods_spec_relation` VALUES ('136', '38', '1', '48', '通用', '2', '', '2017-12-15 12:44:50', '2017-12-15 14:09:36', null);
  5521. INSERT INTO `ibrand_goods_spec_relation` VALUES ('137', '39', '2', '1', '黑色', '1', 'https://cdn.viperky.com/storage/images/20171215/ZqyBacLCLD.jpg', '2017-12-15 14:01:39', '2017-12-15 14:01:39', null);
  5522. INSERT INTO `ibrand_goods_spec_relation` VALUES ('138', '39', '1', '48', '通用', '2', '', '2017-12-15 14:01:39', '2017-12-15 14:01:39', null);
  5523. INSERT INTO `ibrand_goods_spec_relation` VALUES ('139', '40', '2', '1', '彩色', '1', 'https://cdn.viperky.com/storage/images/20171215/XMly6hP24W.jpg', '2017-12-15 14:05:10', '2017-12-27 16:01:58', null);
  5524. INSERT INTO `ibrand_goods_spec_relation` VALUES ('140', '40', '1', '48', '均码', '2', '', '2017-12-15 14:05:10', '2017-12-27 16:01:58', null);
  5525. INSERT INTO `ibrand_goods_spec_relation` VALUES ('141', '41', '2', '10', '瀑布绿', '1', 'https://cdn.viperky.com/storage/images/20180515/SDhPS0tV2e.png', '2018-05-15 11:13:52', '2018-05-15 11:59:35', null);
  5526. INSERT INTO `ibrand_goods_spec_relation` VALUES ('142', '41', '2', '34', '卡其', '1', 'https://cdn.viperky.com/storage/images/20180515/R3l9kJouHb.png', '2018-05-15 11:13:52', '2018-05-15 11:59:35', null);
  5527. INSERT INTO `ibrand_goods_spec_relation` VALUES ('143', '41', '2', '35', '花灰', '1', 'https://cdn.viperky.com/storage/images/20180515/ql0tzz05wL.png', '2018-05-15 11:13:52', '2018-05-15 11:59:35', null);
  5528. INSERT INTO `ibrand_goods_spec_relation` VALUES ('144', '41', '1', '40', '90', '2', '', '2018-05-15 11:13:52', '2018-05-15 11:59:35', null);
  5529. INSERT INTO `ibrand_goods_spec_relation` VALUES ('145', '41', '1', '41', '100', '2', '', '2018-05-15 11:13:52', '2018-05-15 11:59:35', null);
  5530. INSERT INTO `ibrand_goods_spec_relation` VALUES ('146', '41', '1', '42', '110', '2', '', '2018-05-15 11:13:52', '2018-05-15 11:59:35', null);
  5531. INSERT INTO `ibrand_goods_spec_relation` VALUES ('147', '41', '1', '43', '120', '2', '', '2018-05-15 11:13:52', '2018-05-15 11:59:35', null);
  5532. INSERT INTO `ibrand_goods_spec_relation` VALUES ('148', '41', '1', '44', '130', '2', '', '2018-05-15 11:13:52', '2018-05-15 11:59:35', null);
  5533. INSERT INTO `ibrand_goods_spec_relation` VALUES ('149', '41', '1', '45', '140', '2', '', '2018-05-15 11:13:52', '2018-05-15 11:59:35', null);
  5534. INSERT INTO `ibrand_goods_spec_relation` VALUES ('150', '42', '2', '38', '花灰', '1', 'https://cdn.viperky.com/storage/images/20180515/CvjrH69MAK.png', '2018-05-15 11:29:26', '2018-05-15 11:59:21', null);
  5535. INSERT INTO `ibrand_goods_spec_relation` VALUES ('151', '42', '1', '40', '90', '2', '', '2018-05-15 11:29:26', '2018-05-15 11:59:21', null);
  5536. INSERT INTO `ibrand_goods_spec_relation` VALUES ('152', '42', '1', '41', '100', '2', '', '2018-05-15 11:29:26', '2018-05-15 11:59:21', null);
  5537. INSERT INTO `ibrand_goods_spec_relation` VALUES ('153', '42', '1', '42', '110', '2', '', '2018-05-15 11:29:26', '2018-05-15 11:59:21', null);
  5538. INSERT INTO `ibrand_goods_spec_relation` VALUES ('154', '42', '1', '43', '120', '2', '', '2018-05-15 11:29:26', '2018-05-15 11:59:21', null);
  5539. INSERT INTO `ibrand_goods_spec_relation` VALUES ('155', '42', '1', '44', '130', '2', '', '2018-05-15 11:29:26', '2018-05-15 11:59:21', null);
  5540. INSERT INTO `ibrand_goods_spec_relation` VALUES ('156', '42', '1', '45', '140', '2', '', '2018-05-15 11:29:26', '2018-05-15 11:59:21', null);
  5541. INSERT INTO `ibrand_goods_spec_relation` VALUES ('157', '43', '2', '10', '豆绿色', '1', 'https://cdn.viperky.com/storage/images/20180515/P1Tu1HPiWw.png', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  5542. INSERT INTO `ibrand_goods_spec_relation` VALUES ('158', '43', '2', '14', '水蓝色', '1', 'https://cdn.viperky.com/storage/images/20180515/jVK3fPDqfi.png', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  5543. INSERT INTO `ibrand_goods_spec_relation` VALUES ('159', '43', '2', '31', '卡其色', '1', 'https://cdn.viperky.com/storage/images/20180515/7H10x3vY8a.png', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  5544. INSERT INTO `ibrand_goods_spec_relation` VALUES ('160', '43', '2', '47', '黄绿色', '1', 'https://cdn.viperky.com/storage/images/20180515/3wFPUoBuSR.png', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  5545. INSERT INTO `ibrand_goods_spec_relation` VALUES ('161', '43', '1', '40', '90', '2', '', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  5546. INSERT INTO `ibrand_goods_spec_relation` VALUES ('162', '43', '1', '41', '100', '2', '', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  5547. INSERT INTO `ibrand_goods_spec_relation` VALUES ('163', '43', '1', '42', '110', '2', '', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  5548. INSERT INTO `ibrand_goods_spec_relation` VALUES ('164', '43', '1', '43', '120', '2', '', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  5549. INSERT INTO `ibrand_goods_spec_relation` VALUES ('165', '43', '1', '44', '130', '2', '', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  5550. INSERT INTO `ibrand_goods_spec_relation` VALUES ('166', '43', '1', '45', '140', '2', '', '2018-05-15 11:58:44', '2018-05-15 11:58:44', null);
  5551. INSERT INTO `ibrand_goods_spec_relation` VALUES ('167', '44', '2', '10', '瀑布绿', '1', 'https://cdn.viperky.com/storage/images/20180515/9FZ71qD5Vr.png', '2018-05-15 12:21:59', '2018-05-15 12:21:59', null);
  5552. INSERT INTO `ibrand_goods_spec_relation` VALUES ('168', '44', '2', '14', '水蓝色', '1', 'https://cdn.viperky.com/storage/images/20180515/56kBDwaBbb.png', '2018-05-15 12:21:59', '2018-05-15 12:21:59', null);
  5553. INSERT INTO `ibrand_goods_spec_relation` VALUES ('169', '44', '2', '46', '米白色', '1', 'https://cdn.viperky.com/storage/images/20180515/9wGp2EnOjl.png', '2018-05-15 12:21:59', '2018-05-15 12:21:59', null);
  5554. INSERT INTO `ibrand_goods_spec_relation` VALUES ('170', '44', '2', '47', '浅黄色', '1', 'https://cdn.viperky.com/storage/images/20180515/mJvdkZ9g9G.png', '2018-05-15 12:21:59', '2018-05-15 12:21:59', null);
  5555. INSERT INTO `ibrand_goods_spec_relation` VALUES ('171', '44', '1', '40', '90', '2', '', '2018-05-15 12:21:59', '2018-05-15 12:21:59', null);
  5556. INSERT INTO `ibrand_goods_spec_relation` VALUES ('172', '44', '1', '41', '100', '2', '', '2018-05-15 12:21:59', '2018-05-15 12:21:59', null);
  5557. INSERT INTO `ibrand_goods_spec_relation` VALUES ('173', '44', '1', '42', '110', '2', '', '2018-05-15 12:21:59', '2018-05-15 12:21:59', null);
  5558. INSERT INTO `ibrand_goods_spec_relation` VALUES ('174', '44', '1', '43', '120', '2', '', '2018-05-15 12:21:59', '2018-05-15 12:21:59', null);
  5559. INSERT INTO `ibrand_goods_spec_relation` VALUES ('175', '44', '1', '44', '130', '2', '', '2018-05-15 12:21:59', '2018-05-15 12:21:59', null);
  5560. INSERT INTO `ibrand_goods_spec_relation` VALUES ('176', '44', '1', '45', '140', '2', '', '2018-05-15 12:21:59', '2018-05-15 12:21:59', null);
  5561. INSERT INTO `ibrand_goods_spec_relation` VALUES ('177', '45', '2', '14', '白色/浅蓝', '1', 'https://cdn.viperky.com/storage/images/20180515/o5udmTcns7.png', '2018-05-15 14:23:37', '2018-05-18 17:57:03', null);
  5562. INSERT INTO `ibrand_goods_spec_relation` VALUES ('178', '45', '2', '23', '白色/贵族蓝', '1', 'https://cdn.viperky.com/storage/images/20180515/yZ2Sq0MUpo.png', '2018-05-15 14:23:37', '2018-05-18 17:57:03', null);
  5563. INSERT INTO `ibrand_goods_spec_relation` VALUES ('179', '45', '2', '46', '白色/花灰', '1', 'https://cdn.viperky.com/storage/images/20180515/qbYE7bPLVN.png', '2018-05-15 14:23:37', '2018-05-18 17:57:03', null);
  5564. INSERT INTO `ibrand_goods_spec_relation` VALUES ('180', '45', '2', '47', '白色/浅黄', '1', 'https://cdn.viperky.com/storage/images/20180515/U2XCwF9bub.png', '2018-05-15 14:23:37', '2018-05-18 17:57:03', null);
  5565. INSERT INTO `ibrand_goods_spec_relation` VALUES ('181', '45', '1', '40', '90', '2', '', '2018-05-15 14:23:37', '2018-05-18 17:57:03', null);
  5566. INSERT INTO `ibrand_goods_spec_relation` VALUES ('182', '45', '1', '41', '100', '2', '', '2018-05-15 14:23:37', '2018-05-18 17:57:03', null);
  5567. INSERT INTO `ibrand_goods_spec_relation` VALUES ('183', '45', '1', '42', '110', '2', '', '2018-05-15 14:23:37', '2018-05-18 17:57:03', null);
  5568. INSERT INTO `ibrand_goods_spec_relation` VALUES ('184', '45', '1', '43', '120', '2', '', '2018-05-15 14:23:37', '2018-05-18 17:57:03', null);
  5569. INSERT INTO `ibrand_goods_spec_relation` VALUES ('185', '45', '1', '44', '130', '2', '', '2018-05-15 14:23:37', '2018-05-18 17:57:03', null);
  5570. INSERT INTO `ibrand_goods_spec_relation` VALUES ('186', '45', '1', '45', '140', '2', '', '2018-05-15 14:23:37', '2018-05-18 17:57:03', null);
  5571. INSERT INTO `ibrand_goods_spec_relation` VALUES ('187', '46', '2', '35', '花灰色', '1', 'https://cdn.viperky.com/storage/images/20180515/CFqV2PrhYG.png', '2018-05-15 14:41:16', '2018-05-15 14:41:16', null);
  5572. INSERT INTO `ibrand_goods_spec_relation` VALUES ('188', '46', '1', '40', '90', '2', '', '2018-05-15 14:41:16', '2018-05-15 14:41:16', null);
  5573. INSERT INTO `ibrand_goods_spec_relation` VALUES ('189', '46', '1', '41', '100', '2', '', '2018-05-15 14:41:16', '2018-05-15 14:41:16', null);
  5574. INSERT INTO `ibrand_goods_spec_relation` VALUES ('190', '46', '1', '42', '110', '2', '', '2018-05-15 14:41:16', '2018-05-15 14:41:16', null);
  5575. INSERT INTO `ibrand_goods_spec_relation` VALUES ('191', '46', '1', '43', '120', '2', '', '2018-05-15 14:41:16', '2018-05-15 14:41:16', null);
  5576. INSERT INTO `ibrand_goods_spec_relation` VALUES ('192', '46', '1', '44', '130', '2', '', '2018-05-15 14:41:16', '2018-05-15 14:41:16', null);
  5577. INSERT INTO `ibrand_goods_spec_relation` VALUES ('193', '46', '1', '45', '140', '2', '', '2018-05-15 14:41:16', '2018-05-15 14:41:16', null);
  5578. INSERT INTO `ibrand_goods_spec_relation` VALUES ('194', '47', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180515/CehdU0PPC5.png', '2018-05-15 14:53:04', '2018-05-28 09:41:32', null);
  5579. INSERT INTO `ibrand_goods_spec_relation` VALUES ('195', '47', '1', '40', '90', '2', '', '2018-05-15 14:53:04', '2018-05-28 09:41:32', null);
  5580. INSERT INTO `ibrand_goods_spec_relation` VALUES ('196', '47', '1', '41', '100', '2', '', '2018-05-15 14:53:04', '2018-05-28 09:41:32', null);
  5581. INSERT INTO `ibrand_goods_spec_relation` VALUES ('197', '47', '1', '42', '110', '2', '', '2018-05-15 14:53:04', '2018-05-28 09:41:32', null);
  5582. INSERT INTO `ibrand_goods_spec_relation` VALUES ('198', '47', '1', '43', '120', '2', '', '2018-05-15 14:53:04', '2018-05-28 09:41:32', null);
  5583. INSERT INTO `ibrand_goods_spec_relation` VALUES ('199', '47', '1', '44', '130', '2', '', '2018-05-15 14:53:04', '2018-05-28 09:41:32', null);
  5584. INSERT INTO `ibrand_goods_spec_relation` VALUES ('200', '47', '1', '60', '妈妈均码', '2', '', '2018-05-15 14:53:04', '2018-05-28 09:41:32', null);
  5585. INSERT INTO `ibrand_goods_spec_relation` VALUES ('201', '48', '2', '1', '黑色', '1', 'https://cdn.viperky.com/storage/images/20180515/dZe0fwm6Jc.png', '2018-05-15 15:37:43', '2018-05-23 14:16:58', null);
  5586. INSERT INTO `ibrand_goods_spec_relation` VALUES ('202', '48', '2', '5', '红色', '1', 'https://cdn.viperky.com/storage/images/20180515/OAqEAHZ6BC.png', '2018-05-15 15:37:43', '2018-05-23 14:16:58', null);
  5587. INSERT INTO `ibrand_goods_spec_relation` VALUES ('208', '48', '1', '49', '妈妈S码', '2', '', '2018-05-15 15:37:43', '2018-05-23 14:16:58', null);
  5588. INSERT INTO `ibrand_goods_spec_relation` VALUES ('209', '48', '1', '50', '妈妈M码', '2', '', '2018-05-15 15:37:43', '2018-05-23 14:16:58', null);
  5589. INSERT INTO `ibrand_goods_spec_relation` VALUES ('210', '48', '1', '51', '爸爸L码', '2', '', '2018-05-15 15:37:43', '2018-05-23 14:16:58', null);
  5590. INSERT INTO `ibrand_goods_spec_relation` VALUES ('211', '48', '1', '52', '爸爸XL码', '2', '', '2018-05-15 15:37:43', '2018-05-23 14:16:58', null);
  5591. INSERT INTO `ibrand_goods_spec_relation` VALUES ('212', '49', '2', '4', '粉色', '1', 'https://cdn.viperky.com/storage/images/20180515/hHj3S1QoIh.png', '2018-05-15 15:47:55', '2018-05-23 14:18:39', null);
  5592. INSERT INTO `ibrand_goods_spec_relation` VALUES ('213', '49', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180515/tVKRBoEmwH.png', '2018-05-15 15:47:55', '2018-05-23 14:18:39', null);
  5593. INSERT INTO `ibrand_goods_spec_relation` VALUES ('214', '49', '1', '40', '90', '2', '', '2018-05-15 15:47:55', '2018-05-23 14:18:39', null);
  5594. INSERT INTO `ibrand_goods_spec_relation` VALUES ('215', '49', '1', '41', '100', '2', '', '2018-05-15 15:47:55', '2018-05-23 14:18:39', null);
  5595. INSERT INTO `ibrand_goods_spec_relation` VALUES ('216', '49', '1', '42', '110', '2', '', '2018-05-15 15:47:55', '2018-05-23 14:18:39', null);
  5596. INSERT INTO `ibrand_goods_spec_relation` VALUES ('217', '49', '1', '43', '120', '2', '', '2018-05-15 15:47:55', '2018-05-23 14:18:39', null);
  5597. INSERT INTO `ibrand_goods_spec_relation` VALUES ('218', '49', '1', '44', '130', '2', '', '2018-05-15 15:47:55', '2018-05-23 14:18:39', null);
  5598. INSERT INTO `ibrand_goods_spec_relation` VALUES ('219', '50', '2', '4', '粉色', '1', 'https://cdn.viperky.com/storage/images/20180515/Nid6xF5DQd.png', '2018-05-15 16:07:12', '2018-05-23 14:21:17', null);
  5599. INSERT INTO `ibrand_goods_spec_relation` VALUES ('220', '50', '2', '15', '蓝色', '1', 'https://cdn.viperky.com/storage/images/20180515/XUTaKafW3Y.png', '2018-05-15 16:07:12', '2018-05-23 14:21:17', null);
  5600. INSERT INTO `ibrand_goods_spec_relation` VALUES ('221', '50', '1', '41', '100', '2', '', '2018-05-15 16:07:12', '2018-05-23 14:21:17', null);
  5601. INSERT INTO `ibrand_goods_spec_relation` VALUES ('222', '50', '1', '42', '110', '2', '', '2018-05-15 16:07:12', '2018-05-23 14:21:17', null);
  5602. INSERT INTO `ibrand_goods_spec_relation` VALUES ('223', '50', '1', '43', '120', '2', '', '2018-05-15 16:07:12', '2018-05-23 14:21:17', null);
  5603. INSERT INTO `ibrand_goods_spec_relation` VALUES ('224', '50', '1', '44', '130', '2', '', '2018-05-15 16:07:12', '2018-05-23 14:21:17', null);
  5604. INSERT INTO `ibrand_goods_spec_relation` VALUES ('225', '50', '1', '49', '妈妈S码', '2', '', '2018-05-15 16:07:12', '2018-05-23 14:21:17', null);
  5605. INSERT INTO `ibrand_goods_spec_relation` VALUES ('226', '50', '1', '50', '妈妈M码', '2', '', '2018-05-15 16:07:12', '2018-05-23 14:21:17', null);
  5606. INSERT INTO `ibrand_goods_spec_relation` VALUES ('227', '50', '1', '51', '爸爸L码', '2', '', '2018-05-15 16:07:12', '2018-05-23 14:21:17', null);
  5607. INSERT INTO `ibrand_goods_spec_relation` VALUES ('228', '50', '1', '52', '爸爸XL码', '2', '', '2018-05-15 16:07:12', '2018-05-23 14:21:17', null);
  5608. INSERT INTO `ibrand_goods_spec_relation` VALUES ('237', '52', '2', '14', '水蓝色', '1', 'https://cdn.viperky.com/storage/images/20180515/I1oUzqx79Z.png', '2018-05-15 16:21:02', '2018-05-25 13:46:01', null);
  5609. INSERT INTO `ibrand_goods_spec_relation` VALUES ('238', '52', '2', '47', '黄色', '1', 'https://cdn.viperky.com/storage/images/20180515/LtJa8WhZe6.png', '2018-05-15 16:21:02', '2018-05-25 13:46:01', null);
  5610. INSERT INTO `ibrand_goods_spec_relation` VALUES ('239', '52', '1', '40', '90', '2', '', '2018-05-15 16:21:02', '2018-05-25 13:46:01', null);
  5611. INSERT INTO `ibrand_goods_spec_relation` VALUES ('240', '52', '1', '41', '100', '2', '', '2018-05-15 16:21:02', '2018-05-25 13:46:01', null);
  5612. INSERT INTO `ibrand_goods_spec_relation` VALUES ('241', '52', '1', '42', '110', '2', '', '2018-05-15 16:21:02', '2018-05-25 13:46:01', null);
  5613. INSERT INTO `ibrand_goods_spec_relation` VALUES ('242', '52', '1', '43', '120', '2', '', '2018-05-15 16:21:02', '2018-05-25 13:46:01', null);
  5614. INSERT INTO `ibrand_goods_spec_relation` VALUES ('243', '52', '1', '44', '130', '2', '', '2018-05-15 16:21:02', '2018-05-25 13:46:01', null);
  5615. INSERT INTO `ibrand_goods_spec_relation` VALUES ('244', '52', '1', '45', '140', '2', '', '2018-05-15 16:21:02', '2018-05-25 13:46:01', null);
  5616. INSERT INTO `ibrand_goods_spec_relation` VALUES ('250', '53', '2', '4', '粉红色', '1', 'https://cdn.viperky.com/storage/images/20180515/Tt4gSg3mXk.png', '2018-05-15 16:40:21', '2018-06-11 10:25:29', null);
  5617. INSERT INTO `ibrand_goods_spec_relation` VALUES ('251', '53', '2', '14', '天蓝色', '1', 'https://cdn.viperky.com/storage/images/20180515/3pb3tMWv4k.png', '2018-05-15 16:40:21', '2018-06-11 10:25:29', null);
  5618. INSERT INTO `ibrand_goods_spec_relation` VALUES ('252', '53', '1', '40', '90', '2', '', '2018-05-15 16:40:21', '2018-06-11 10:25:29', null);
  5619. INSERT INTO `ibrand_goods_spec_relation` VALUES ('253', '53', '1', '41', '100', '2', '', '2018-05-15 16:40:21', '2018-06-11 10:25:29', null);
  5620. INSERT INTO `ibrand_goods_spec_relation` VALUES ('254', '53', '1', '42', '110', '2', '', '2018-05-15 16:40:21', '2018-06-11 10:25:29', null);
  5621. INSERT INTO `ibrand_goods_spec_relation` VALUES ('255', '53', '1', '43', '120', '2', '', '2018-05-15 16:40:21', '2018-06-11 10:25:29', null);
  5622. INSERT INTO `ibrand_goods_spec_relation` VALUES ('256', '53', '1', '44', '130', '2', '', '2018-05-15 16:40:21', '2018-06-11 10:25:29', null);
  5623. INSERT INTO `ibrand_goods_spec_relation` VALUES ('257', '54', '2', '1', '黑色', '1', 'https://cdn.viperky.com/storage/images/20180515/zdfx7Zf9sb.png', '2018-05-15 16:42:46', '2018-05-23 14:23:49', null);
  5624. INSERT INTO `ibrand_goods_spec_relation` VALUES ('258', '54', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180515/9GfXkH7ATb.png', '2018-05-15 16:42:46', '2018-05-23 14:23:49', null);
  5625. INSERT INTO `ibrand_goods_spec_relation` VALUES ('259', '54', '1', '50', '妈妈M码', '2', '', '2018-05-15 16:42:46', '2018-05-23 14:23:49', null);
  5626. INSERT INTO `ibrand_goods_spec_relation` VALUES ('265', '54', '1', '61', '爸爸均码', '2', '', '2018-05-15 16:42:46', '2018-05-23 14:23:49', null);
  5627. INSERT INTO `ibrand_goods_spec_relation` VALUES ('266', '55', '2', '4', '粉红色', '1', 'https://cdn.viperky.com/storage/images/20180515/hCgHKaGgC5.png', '2018-05-15 16:57:15', '2018-06-11 10:25:14', null);
  5628. INSERT INTO `ibrand_goods_spec_relation` VALUES ('267', '55', '2', '21', '深蓝色', '1', 'https://cdn.viperky.com/storage/images/20180515/r0BXieuNjC.png', '2018-05-15 16:57:15', '2018-06-11 10:25:14', null);
  5629. INSERT INTO `ibrand_goods_spec_relation` VALUES ('268', '55', '2', '37', '灰色', '1', 'https://cdn.viperky.com/storage/images/20180515/mYrVK5FwMD.png', '2018-05-15 16:57:15', '2018-06-11 10:25:14', null);
  5630. INSERT INTO `ibrand_goods_spec_relation` VALUES ('269', '55', '1', '40', '90', '2', '', '2018-05-15 16:57:15', '2018-06-11 10:25:14', null);
  5631. INSERT INTO `ibrand_goods_spec_relation` VALUES ('270', '55', '1', '41', '100', '2', '', '2018-05-15 16:57:15', '2018-06-11 10:25:14', null);
  5632. INSERT INTO `ibrand_goods_spec_relation` VALUES ('271', '55', '1', '42', '110', '2', '', '2018-05-15 16:57:15', '2018-06-11 10:25:14', null);
  5633. INSERT INTO `ibrand_goods_spec_relation` VALUES ('272', '55', '1', '43', '120', '2', '', '2018-05-15 16:57:15', '2018-06-11 10:25:14', null);
  5634. INSERT INTO `ibrand_goods_spec_relation` VALUES ('273', '55', '1', '44', '130', '2', '', '2018-05-15 16:57:15', '2018-06-11 10:25:14', null);
  5635. INSERT INTO `ibrand_goods_spec_relation` VALUES ('274', '56', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180515/Zj9LyduHyt.png', '2018-05-15 17:13:24', '2018-06-11 10:24:57', null);
  5636. INSERT INTO `ibrand_goods_spec_relation` VALUES ('275', '56', '1', '40', '90', '2', '', '2018-05-15 17:13:24', '2018-06-11 10:24:57', null);
  5637. INSERT INTO `ibrand_goods_spec_relation` VALUES ('276', '56', '1', '41', '100', '2', '', '2018-05-15 17:13:24', '2018-06-11 10:24:57', null);
  5638. INSERT INTO `ibrand_goods_spec_relation` VALUES ('277', '56', '1', '42', '110', '2', '', '2018-05-15 17:13:24', '2018-06-11 10:24:57', null);
  5639. INSERT INTO `ibrand_goods_spec_relation` VALUES ('278', '56', '1', '43', '120', '2', '', '2018-05-15 17:13:24', '2018-06-11 10:24:57', null);
  5640. INSERT INTO `ibrand_goods_spec_relation` VALUES ('279', '56', '1', '44', '130', '2', '', '2018-05-15 17:13:24', '2018-06-11 10:24:57', null);
  5641. INSERT INTO `ibrand_goods_spec_relation` VALUES ('280', '57', '2', '1', '黑色', '1', 'https://cdn.viperky.com/storage/images/20180515/Buv4OiNxBW.png', '2018-05-15 17:26:20', '2018-06-11 10:24:42', null);
  5642. INSERT INTO `ibrand_goods_spec_relation` VALUES ('281', '57', '2', '5', '红色', '1', 'https://cdn.viperky.com/storage/images/20180515/FdyyjKy0xL.png', '2018-05-15 17:26:20', '2018-06-11 10:24:42', null);
  5643. INSERT INTO `ibrand_goods_spec_relation` VALUES ('282', '57', '1', '40', '90', '2', '', '2018-05-15 17:26:20', '2018-06-11 10:24:42', null);
  5644. INSERT INTO `ibrand_goods_spec_relation` VALUES ('283', '57', '1', '41', '100', '2', '', '2018-05-15 17:26:20', '2018-06-11 10:24:42', null);
  5645. INSERT INTO `ibrand_goods_spec_relation` VALUES ('284', '57', '1', '42', '110', '2', '', '2018-05-15 17:26:20', '2018-06-11 10:24:42', null);
  5646. INSERT INTO `ibrand_goods_spec_relation` VALUES ('285', '57', '1', '43', '120', '2', '', '2018-05-15 17:26:20', '2018-06-11 10:24:42', null);
  5647. INSERT INTO `ibrand_goods_spec_relation` VALUES ('286', '57', '1', '44', '130', '2', '', '2018-05-15 17:26:20', '2018-06-11 10:24:42', null);
  5648. INSERT INTO `ibrand_goods_spec_relation` VALUES ('287', '58', '2', '4', '粉色', '1', 'https://cdn.viperky.com/storage/images/20180515/QnAzriQw35.png', '2018-05-15 17:30:56', '2018-05-28 09:38:57', null);
  5649. INSERT INTO `ibrand_goods_spec_relation` VALUES ('288', '58', '2', '47', '荧光黄', '1', 'https://cdn.viperky.com/storage/images/20180515/JdvCbSTBx6.png', '2018-05-15 17:30:56', '2018-05-28 09:38:57', null);
  5650. INSERT INTO `ibrand_goods_spec_relation` VALUES ('289', '58', '1', '49', '妈妈S码', '2', '', '2018-05-15 17:30:56', '2018-05-28 09:38:57', null);
  5651. INSERT INTO `ibrand_goods_spec_relation` VALUES ('290', '58', '1', '50', '妈妈M码', '2', '', '2018-05-15 17:30:56', '2018-05-28 09:38:57', null);
  5652. INSERT INTO `ibrand_goods_spec_relation` VALUES ('291', '58', '1', '51', '爸爸L码', '2', '', '2018-05-15 17:30:56', '2018-05-28 09:38:57', null);
  5653. INSERT INTO `ibrand_goods_spec_relation` VALUES ('292', '58', '1', '52', '爸爸XL码', '2', '', '2018-05-15 17:30:56', '2018-05-28 09:38:57', null);
  5654. INSERT INTO `ibrand_goods_spec_relation` VALUES ('293', '58', '1', '53', '5码【90CM】', '2', '', '2018-05-15 17:30:56', '2018-05-28 09:38:57', null);
  5655. INSERT INTO `ibrand_goods_spec_relation` VALUES ('294', '58', '1', '54', '7码【100CM】', '2', '', '2018-05-15 17:30:56', '2018-05-28 09:38:57', null);
  5656. INSERT INTO `ibrand_goods_spec_relation` VALUES ('295', '58', '1', '55', '9码【110CM】', '2', '', '2018-05-15 17:30:56', '2018-05-28 09:38:57', null);
  5657. INSERT INTO `ibrand_goods_spec_relation` VALUES ('296', '58', '1', '56', '11码【120CM】', '2', '', '2018-05-15 17:30:56', '2018-05-28 09:38:57', null);
  5658. INSERT INTO `ibrand_goods_spec_relation` VALUES ('297', '58', '1', '57', '13码【130CM】', '2', '', '2018-05-15 17:30:56', '2018-05-28 09:38:57', null);
  5659. INSERT INTO `ibrand_goods_spec_relation` VALUES ('298', '59', '2', '1', '黑色', '1', 'https://cdn.viperky.com/storage/images/20180515/VdJxbbllWd.png', '2018-05-15 17:41:26', '2018-06-11 10:24:27', null);
  5660. INSERT INTO `ibrand_goods_spec_relation` VALUES ('299', '59', '2', '2', '橘色', '1', 'https://cdn.viperky.com/storage/images/20180515/Bo9Gh0ahil.png', '2018-05-15 17:41:26', '2018-06-11 10:24:27', null);
  5661. INSERT INTO `ibrand_goods_spec_relation` VALUES ('300', '59', '2', '5', '红色', '1', 'https://cdn.viperky.com/storage/images/20180515/5PlejdhdiM.png', '2018-05-15 17:41:26', '2018-06-11 10:24:27', null);
  5662. INSERT INTO `ibrand_goods_spec_relation` VALUES ('301', '59', '2', '18', '彩蓝色', '1', 'https://cdn.viperky.com/storage/images/20180515/lHE7UkO43M.png', '2018-05-15 17:41:26', '2018-06-11 10:24:27', null);
  5663. INSERT INTO `ibrand_goods_spec_relation` VALUES ('302', '59', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180515/oOA7ppUzlJ.png', '2018-05-15 17:41:26', '2018-06-11 10:24:27', null);
  5664. INSERT INTO `ibrand_goods_spec_relation` VALUES ('303', '59', '1', '40', '90', '2', '', '2018-05-15 17:41:26', '2018-06-11 10:24:27', null);
  5665. INSERT INTO `ibrand_goods_spec_relation` VALUES ('304', '59', '1', '41', '100', '2', '', '2018-05-15 17:41:26', '2018-06-11 10:24:27', null);
  5666. INSERT INTO `ibrand_goods_spec_relation` VALUES ('305', '59', '1', '42', '110', '2', '', '2018-05-15 17:41:26', '2018-06-11 10:24:27', null);
  5667. INSERT INTO `ibrand_goods_spec_relation` VALUES ('306', '59', '1', '43', '120', '2', '', '2018-05-15 17:41:26', '2018-06-11 10:24:27', null);
  5668. INSERT INTO `ibrand_goods_spec_relation` VALUES ('307', '59', '1', '44', '130', '2', '', '2018-05-15 17:41:26', '2018-06-11 10:24:27', null);
  5669. INSERT INTO `ibrand_goods_spec_relation` VALUES ('308', '60', '2', '1', '黑色', '1', 'https://cdn.viperky.com/storage/images/20180515/6eOcZj4E2Q.png', '2018-05-15 17:51:35', '2018-06-11 10:24:05', null);
  5670. INSERT INTO `ibrand_goods_spec_relation` VALUES ('309', '60', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180515/QbEZV0NS7S.png', '2018-05-15 17:51:35', '2018-06-11 10:24:05', null);
  5671. INSERT INTO `ibrand_goods_spec_relation` VALUES ('310', '60', '1', '40', '90', '2', '', '2018-05-15 17:51:35', '2018-06-11 10:24:05', null);
  5672. INSERT INTO `ibrand_goods_spec_relation` VALUES ('311', '60', '1', '41', '100', '2', '', '2018-05-15 17:51:35', '2018-06-11 10:24:05', null);
  5673. INSERT INTO `ibrand_goods_spec_relation` VALUES ('312', '60', '1', '42', '110', '2', '', '2018-05-15 17:51:35', '2018-06-11 10:24:05', null);
  5674. INSERT INTO `ibrand_goods_spec_relation` VALUES ('313', '60', '1', '43', '120', '2', '', '2018-05-15 17:51:35', '2018-06-11 10:24:05', null);
  5675. INSERT INTO `ibrand_goods_spec_relation` VALUES ('314', '60', '1', '44', '130', '2', '', '2018-05-15 17:51:35', '2018-06-11 10:24:05', null);
  5676. INSERT INTO `ibrand_goods_spec_relation` VALUES ('315', '61', '2', '4', '粉色', '1', 'https://cdn.viperky.com/storage/images/20180515/MFa71BqtTz.png', '2018-05-15 17:58:38', '2018-05-23 14:27:34', null);
  5677. INSERT INTO `ibrand_goods_spec_relation` VALUES ('316', '61', '2', '18', '宝蓝', '1', 'https://cdn.viperky.com/storage/images/20180515/KGNtNdkYbb.png', '2018-05-15 17:58:38', '2018-05-23 14:27:34', null);
  5678. INSERT INTO `ibrand_goods_spec_relation` VALUES ('317', '61', '1', '51', '爸爸L码', '2', '', '2018-05-15 17:58:38', '2018-05-23 14:27:34', null);
  5679. INSERT INTO `ibrand_goods_spec_relation` VALUES ('318', '61', '1', '52', '爸爸XL码', '2', '', '2018-05-15 17:58:38', '2018-05-23 14:27:34', null);
  5680. INSERT INTO `ibrand_goods_spec_relation` VALUES ('319', '61', '1', '53', '5码【90CM】套装', '2', '', '2018-05-15 17:58:38', '2018-05-23 14:27:34', null);
  5681. INSERT INTO `ibrand_goods_spec_relation` VALUES ('320', '61', '1', '54', '7码【100CM】套装', '2', '', '2018-05-15 17:58:38', '2018-05-23 14:27:34', null);
  5682. INSERT INTO `ibrand_goods_spec_relation` VALUES ('321', '61', '1', '55', '9码【110CM】套装', '2', '', '2018-05-15 17:58:38', '2018-05-23 14:27:34', null);
  5683. INSERT INTO `ibrand_goods_spec_relation` VALUES ('322', '61', '1', '56', '11码【120CM】套装', '2', '', '2018-05-15 17:58:38', '2018-05-23 14:27:34', null);
  5684. INSERT INTO `ibrand_goods_spec_relation` VALUES ('323', '61', '1', '57', '13码【130CM】套装', '2', '', '2018-05-15 17:58:38', '2018-05-23 14:27:34', null);
  5685. INSERT INTO `ibrand_goods_spec_relation` VALUES ('324', '61', '1', '58', '妈妈S码 套装', '2', '', '2018-05-15 17:58:38', '2018-05-23 14:27:34', null);
  5686. INSERT INTO `ibrand_goods_spec_relation` VALUES ('325', '61', '1', '59', '妈妈M码 套装 ', '2', '', '2018-05-15 17:58:38', '2018-05-23 14:27:34', null);
  5687. INSERT INTO `ibrand_goods_spec_relation` VALUES ('326', '62', '2', '1', '黑色', '1', 'https://cdn.viperky.com/storage/images/20180515/R0C4hd7yv2.png', '2018-05-15 18:01:30', '2018-06-11 10:23:48', null);
  5688. INSERT INTO `ibrand_goods_spec_relation` VALUES ('327', '62', '2', '4', '粉红色', '1', 'https://cdn.viperky.com/storage/images/20180515/jHaSYZgz9h.png', '2018-05-15 18:01:30', '2018-06-11 10:23:48', null);
  5689. INSERT INTO `ibrand_goods_spec_relation` VALUES ('328', '62', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180515/ji6TlaTpMw.png', '2018-05-15 18:01:30', '2018-06-11 10:23:48', null);
  5690. INSERT INTO `ibrand_goods_spec_relation` VALUES ('329', '62', '1', '40', '90', '2', '', '2018-05-15 18:01:30', '2018-06-11 10:23:48', null);
  5691. INSERT INTO `ibrand_goods_spec_relation` VALUES ('330', '62', '1', '41', '100', '2', '', '2018-05-15 18:01:30', '2018-06-11 10:23:48', null);
  5692. INSERT INTO `ibrand_goods_spec_relation` VALUES ('331', '62', '1', '42', '110', '2', '', '2018-05-15 18:01:30', '2018-06-11 10:23:48', null);
  5693. INSERT INTO `ibrand_goods_spec_relation` VALUES ('332', '62', '1', '43', '120', '2', '', '2018-05-15 18:01:30', '2018-06-11 10:23:48', null);
  5694. INSERT INTO `ibrand_goods_spec_relation` VALUES ('333', '62', '1', '44', '130', '2', '', '2018-05-15 18:01:30', '2018-06-11 10:23:48', null);
  5695. INSERT INTO `ibrand_goods_spec_relation` VALUES ('334', '63', '2', '20', '蓝色', '1', 'https://cdn.viperky.com/storage/images/20180516/MfJocG7z3i.png', '2018-05-16 09:41:39', '2018-05-23 14:28:40', null);
  5696. INSERT INTO `ibrand_goods_spec_relation` VALUES ('335', '63', '1', '40', '90', '2', '', '2018-05-16 09:41:39', '2018-05-23 14:28:40', null);
  5697. INSERT INTO `ibrand_goods_spec_relation` VALUES ('336', '63', '1', '41', '100', '2', '', '2018-05-16 09:41:39', '2018-05-23 14:28:40', null);
  5698. INSERT INTO `ibrand_goods_spec_relation` VALUES ('337', '63', '1', '42', '110', '2', '', '2018-05-16 09:41:39', '2018-05-23 14:28:40', null);
  5699. INSERT INTO `ibrand_goods_spec_relation` VALUES ('338', '63', '1', '43', '120', '2', '', '2018-05-16 09:41:39', '2018-05-23 14:28:40', null);
  5700. INSERT INTO `ibrand_goods_spec_relation` VALUES ('339', '63', '1', '44', '130', '2', '', '2018-05-16 09:41:39', '2018-05-23 14:28:40', null);
  5701. INSERT INTO `ibrand_goods_spec_relation` VALUES ('340', '63', '1', '49', '妈妈S码', '2', '', '2018-05-16 09:41:39', '2018-05-23 14:28:40', null);
  5702. INSERT INTO `ibrand_goods_spec_relation` VALUES ('341', '63', '1', '50', '妈妈M码', '2', '', '2018-05-16 09:41:39', '2018-05-23 14:28:40', null);
  5703. INSERT INTO `ibrand_goods_spec_relation` VALUES ('342', '64', '2', '14', '米白/彩兰领', '1', 'https://cdn.viperky.com/storage/images/20180516/ZX07rdSYq6.png', '2018-05-16 09:50:25', '2018-05-16 09:50:25', null);
  5704. INSERT INTO `ibrand_goods_spec_relation` VALUES ('343', '64', '2', '47', '黄色/黑领', '1', 'https://cdn.viperky.com/storage/images/20180516/BDrNCZfY6F.png', '2018-05-16 09:50:25', '2018-05-16 09:50:25', null);
  5705. INSERT INTO `ibrand_goods_spec_relation` VALUES ('344', '64', '1', '40', '90', '2', '', '2018-05-16 09:50:25', '2018-05-16 09:50:25', null);
  5706. INSERT INTO `ibrand_goods_spec_relation` VALUES ('345', '64', '1', '41', '100', '2', '', '2018-05-16 09:50:25', '2018-05-16 09:50:25', null);
  5707. INSERT INTO `ibrand_goods_spec_relation` VALUES ('346', '64', '1', '42', '110', '2', '', '2018-05-16 09:50:25', '2018-05-16 09:50:25', null);
  5708. INSERT INTO `ibrand_goods_spec_relation` VALUES ('347', '64', '1', '43', '120', '2', '', '2018-05-16 09:50:25', '2018-05-16 09:50:25', null);
  5709. INSERT INTO `ibrand_goods_spec_relation` VALUES ('348', '64', '1', '44', '130', '2', '', '2018-05-16 09:50:25', '2018-05-16 09:50:25', null);
  5710. INSERT INTO `ibrand_goods_spec_relation` VALUES ('349', '64', '1', '45', '140', '2', '', '2018-05-16 09:50:25', '2018-05-16 09:50:25', null);
  5711. INSERT INTO `ibrand_goods_spec_relation` VALUES ('350', '65', '2', '4', '粉色', '1', 'https://cdn.viperky.com/storage/images/20180516/sZlkA7TOAS.png', '2018-05-16 09:53:34', '2018-05-23 14:31:19', null);
  5712. INSERT INTO `ibrand_goods_spec_relation` VALUES ('351', '65', '2', '20', '彩兰', '1', 'https://cdn.viperky.com/storage/images/20180516/3icpfEmo3N.png', '2018-05-16 09:53:34', '2018-05-23 14:31:19', null);
  5713. INSERT INTO `ibrand_goods_spec_relation` VALUES ('352', '65', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180516/3sk8tgbRcs.png', '2018-05-16 09:53:35', '2018-05-23 14:31:19', null);
  5714. INSERT INTO `ibrand_goods_spec_relation` VALUES ('353', '65', '2', '47', '黄色', '1', 'https://cdn.viperky.com/storage/images/20180516/rtKPDHPXgX.png', '2018-05-16 09:53:35', '2018-05-23 14:31:19', null);
  5715. INSERT INTO `ibrand_goods_spec_relation` VALUES ('354', '65', '1', '40', '90', '2', '', '2018-05-16 09:53:35', '2018-05-23 14:31:19', null);
  5716. INSERT INTO `ibrand_goods_spec_relation` VALUES ('355', '65', '1', '41', '100', '2', '', '2018-05-16 09:53:35', '2018-05-23 14:31:19', null);
  5717. INSERT INTO `ibrand_goods_spec_relation` VALUES ('356', '65', '1', '42', '110', '2', '', '2018-05-16 09:53:35', '2018-05-23 14:31:19', null);
  5718. INSERT INTO `ibrand_goods_spec_relation` VALUES ('357', '65', '1', '43', '120', '2', '', '2018-05-16 09:53:35', '2018-05-23 14:31:19', null);
  5719. INSERT INTO `ibrand_goods_spec_relation` VALUES ('358', '65', '1', '44', '130', '2', '', '2018-05-16 09:53:35', '2018-05-23 14:31:19', null);
  5720. INSERT INTO `ibrand_goods_spec_relation` VALUES ('359', '65', '1', '49', '妈妈S码', '2', '', '2018-05-16 09:53:35', '2018-05-23 14:31:19', null);
  5721. INSERT INTO `ibrand_goods_spec_relation` VALUES ('360', '65', '1', '50', '妈妈M码', '2', '', '2018-05-16 09:53:35', '2018-05-23 14:31:19', null);
  5722. INSERT INTO `ibrand_goods_spec_relation` VALUES ('361', '65', '1', '51', '爸爸L码', '2', '', '2018-05-16 09:53:35', '2018-05-23 14:31:19', null);
  5723. INSERT INTO `ibrand_goods_spec_relation` VALUES ('362', '65', '1', '52', '爸爸XL码', '2', '', '2018-05-16 09:53:35', '2018-05-23 14:31:19', null);
  5724. INSERT INTO `ibrand_goods_spec_relation` VALUES ('363', '66', '2', '15', '蓝色', '1', 'https://cdn.viperky.com/storage/images/20180516/MMGjQ3oUoE.png', '2018-05-16 10:08:52', '2018-05-23 14:32:06', null);
  5725. INSERT INTO `ibrand_goods_spec_relation` VALUES ('364', '66', '2', '47', '黄色', '1', 'https://cdn.viperky.com/storage/images/20180516/ZgDPyS9Eis.png', '2018-05-16 10:08:52', '2018-05-23 14:32:06', null);
  5726. INSERT INTO `ibrand_goods_spec_relation` VALUES ('365', '66', '1', '40', '90', '2', '', '2018-05-16 10:08:52', '2018-05-23 14:32:06', null);
  5727. INSERT INTO `ibrand_goods_spec_relation` VALUES ('366', '66', '1', '41', '100', '2', '', '2018-05-16 10:08:52', '2018-05-23 14:32:06', null);
  5728. INSERT INTO `ibrand_goods_spec_relation` VALUES ('367', '66', '1', '42', '110', '2', '', '2018-05-16 10:08:52', '2018-05-23 14:32:06', null);
  5729. INSERT INTO `ibrand_goods_spec_relation` VALUES ('368', '66', '1', '43', '120', '2', '', '2018-05-16 10:08:52', '2018-05-23 14:32:06', null);
  5730. INSERT INTO `ibrand_goods_spec_relation` VALUES ('369', '66', '1', '44', '130', '2', '', '2018-05-16 10:08:52', '2018-05-23 14:32:06', null);
  5731. INSERT INTO `ibrand_goods_spec_relation` VALUES ('370', '67', '2', '4', '粉色', '1', 'https://cdn.viperky.com/storage/images/20180516/R32uQvWl8c.png', '2018-05-16 10:12:04', '2018-05-23 14:32:29', null);
  5732. INSERT INTO `ibrand_goods_spec_relation` VALUES ('371', '67', '2', '11', '绿色', '1', 'https://cdn.viperky.com/storage/images/20180516/jHIO6mskgW.png', '2018-05-16 10:12:04', '2018-05-23 14:32:29', null);
  5733. INSERT INTO `ibrand_goods_spec_relation` VALUES ('372', '67', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180516/c9jlCTtNWV.png', '2018-05-16 10:12:04', '2018-05-23 14:32:29', null);
  5734. INSERT INTO `ibrand_goods_spec_relation` VALUES ('373', '67', '1', '40', '90', '2', '', '2018-05-16 10:12:04', '2018-05-23 14:32:29', null);
  5735. INSERT INTO `ibrand_goods_spec_relation` VALUES ('374', '67', '1', '41', '100', '2', '', '2018-05-16 10:12:04', '2018-05-23 14:32:29', null);
  5736. INSERT INTO `ibrand_goods_spec_relation` VALUES ('375', '67', '1', '42', '110', '2', '', '2018-05-16 10:12:04', '2018-05-23 14:32:29', null);
  5737. INSERT INTO `ibrand_goods_spec_relation` VALUES ('376', '67', '1', '43', '120', '2', '', '2018-05-16 10:12:04', '2018-05-23 14:32:29', null);
  5738. INSERT INTO `ibrand_goods_spec_relation` VALUES ('377', '67', '1', '44', '130', '2', '', '2018-05-16 10:12:04', '2018-05-23 14:32:29', null);
  5739. INSERT INTO `ibrand_goods_spec_relation` VALUES ('378', '67', '1', '49', '妈妈S码', '2', '', '2018-05-16 10:12:04', '2018-05-23 14:32:29', null);
  5740. INSERT INTO `ibrand_goods_spec_relation` VALUES ('379', '67', '1', '50', '妈妈M码', '2', '', '2018-05-16 10:12:04', '2018-05-23 14:32:29', null);
  5741. INSERT INTO `ibrand_goods_spec_relation` VALUES ('380', '48', '1', '40', '90', '2', '', '2018-05-16 10:21:30', '2018-05-23 14:16:58', null);
  5742. INSERT INTO `ibrand_goods_spec_relation` VALUES ('381', '48', '1', '41', '100', '2', '', '2018-05-16 10:21:30', '2018-05-23 14:16:58', null);
  5743. INSERT INTO `ibrand_goods_spec_relation` VALUES ('382', '48', '1', '42', '110', '2', '', '2018-05-16 10:21:30', '2018-05-23 14:16:58', null);
  5744. INSERT INTO `ibrand_goods_spec_relation` VALUES ('383', '48', '1', '43', '120', '2', '', '2018-05-16 10:21:30', '2018-05-23 14:16:58', null);
  5745. INSERT INTO `ibrand_goods_spec_relation` VALUES ('384', '48', '1', '44', '130', '2', '', '2018-05-16 10:21:30', '2018-05-23 14:16:58', null);
  5746. INSERT INTO `ibrand_goods_spec_relation` VALUES ('385', '68', '2', '17', '灰蓝', '1', 'https://cdn.viperky.com/storage/images/20180516/hIKdz4sFHd.png', '2018-05-16 10:21:53', '2018-05-23 14:38:41', null);
  5747. INSERT INTO `ibrand_goods_spec_relation` VALUES ('386', '68', '1', '40', '90', '2', '', '2018-05-16 10:21:53', '2018-05-23 14:38:41', null);
  5748. INSERT INTO `ibrand_goods_spec_relation` VALUES ('387', '68', '1', '41', '100', '2', '', '2018-05-16 10:21:53', '2018-05-23 14:38:41', null);
  5749. INSERT INTO `ibrand_goods_spec_relation` VALUES ('388', '68', '1', '42', '110', '2', '', '2018-05-16 10:21:53', '2018-05-23 14:38:41', null);
  5750. INSERT INTO `ibrand_goods_spec_relation` VALUES ('389', '68', '1', '43', '120', '2', '', '2018-05-16 10:21:53', '2018-05-23 14:38:41', null);
  5751. INSERT INTO `ibrand_goods_spec_relation` VALUES ('390', '68', '1', '44', '130', '2', '', '2018-05-16 10:21:53', '2018-05-23 14:38:41', null);
  5752. INSERT INTO `ibrand_goods_spec_relation` VALUES ('391', '54', '1', '40', '90', '2', '', '2018-05-16 10:26:17', '2018-05-23 14:23:49', null);
  5753. INSERT INTO `ibrand_goods_spec_relation` VALUES ('392', '54', '1', '41', '100', '2', '', '2018-05-16 10:26:17', '2018-05-23 14:23:49', null);
  5754. INSERT INTO `ibrand_goods_spec_relation` VALUES ('393', '54', '1', '42', '110', '2', '', '2018-05-16 10:26:17', '2018-05-23 14:23:49', null);
  5755. INSERT INTO `ibrand_goods_spec_relation` VALUES ('394', '54', '1', '43', '120', '2', '', '2018-05-16 10:26:17', '2018-05-23 14:23:49', null);
  5756. INSERT INTO `ibrand_goods_spec_relation` VALUES ('395', '54', '1', '44', '130', '2', '', '2018-05-16 10:26:17', '2018-05-23 14:23:49', null);
  5757. INSERT INTO `ibrand_goods_spec_relation` VALUES ('396', '69', '2', '4', '粉色', '1', 'https://cdn.viperky.com/storage/images/20180516/d5RMQqlYJ5.png', '2018-05-16 10:38:51', '2018-05-16 10:38:51', null);
  5758. INSERT INTO `ibrand_goods_spec_relation` VALUES ('397', '69', '2', '37', '木炭灰', '1', 'https://cdn.viperky.com/storage/images/20180516/waHJRTXtNL.png', '2018-05-16 10:38:51', '2018-05-16 10:38:51', null);
  5759. INSERT INTO `ibrand_goods_spec_relation` VALUES ('398', '69', '1', '40', '90', '2', '', '2018-05-16 10:38:51', '2018-05-16 10:38:51', null);
  5760. INSERT INTO `ibrand_goods_spec_relation` VALUES ('399', '69', '1', '41', '100', '2', '', '2018-05-16 10:38:51', '2018-05-16 10:38:51', null);
  5761. INSERT INTO `ibrand_goods_spec_relation` VALUES ('400', '69', '1', '42', '110', '2', '', '2018-05-16 10:38:51', '2018-05-16 10:38:51', null);
  5762. INSERT INTO `ibrand_goods_spec_relation` VALUES ('401', '69', '1', '43', '120', '2', '', '2018-05-16 10:38:51', '2018-05-16 10:38:51', null);
  5763. INSERT INTO `ibrand_goods_spec_relation` VALUES ('402', '69', '1', '44', '130', '2', '', '2018-05-16 10:38:51', '2018-05-16 10:38:51', null);
  5764. INSERT INTO `ibrand_goods_spec_relation` VALUES ('403', '70', '2', '10', '豆绿色', '1', 'https://cdn.viperky.com/storage/images/20180516/Op6uJzeWA2.png', '2018-05-16 11:37:02', '2018-05-23 14:38:02', null);
  5765. INSERT INTO `ibrand_goods_spec_relation` VALUES ('404', '70', '2', '34', '卡其色', '1', 'https://cdn.viperky.com/storage/images/20180516/aVe4cPDjPb.png', '2018-05-16 11:37:02', '2018-05-23 14:38:02', null);
  5766. INSERT INTO `ibrand_goods_spec_relation` VALUES ('405', '70', '2', '36', '深灰色', '1', 'https://cdn.viperky.com/storage/images/20180516/17ypXoieje.png', '2018-05-16 11:37:02', '2018-05-23 14:38:02', null);
  5767. INSERT INTO `ibrand_goods_spec_relation` VALUES ('406', '70', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180516/YkrbLh20A9.png', '2018-05-16 11:37:02', '2018-05-23 14:38:02', null);
  5768. INSERT INTO `ibrand_goods_spec_relation` VALUES ('407', '70', '1', '40', '90', '2', '', '2018-05-16 11:37:02', '2018-05-23 14:38:02', null);
  5769. INSERT INTO `ibrand_goods_spec_relation` VALUES ('408', '70', '1', '41', '100', '2', '', '2018-05-16 11:37:02', '2018-05-23 14:38:02', null);
  5770. INSERT INTO `ibrand_goods_spec_relation` VALUES ('409', '70', '1', '42', '110', '2', '', '2018-05-16 11:37:02', '2018-05-23 14:38:02', null);
  5771. INSERT INTO `ibrand_goods_spec_relation` VALUES ('410', '70', '1', '43', '120', '2', '', '2018-05-16 11:37:02', '2018-05-23 14:38:02', null);
  5772. INSERT INTO `ibrand_goods_spec_relation` VALUES ('411', '70', '1', '44', '130', '2', '', '2018-05-16 11:37:02', '2018-05-23 14:38:03', null);
  5773. INSERT INTO `ibrand_goods_spec_relation` VALUES ('422', '72', '2', '4', '粉红色', '1', 'https://cdn.viperky.com/storage/images/20180516/poJoyauILR.png', '2018-05-16 11:55:32', '2018-05-16 11:55:32', null);
  5774. INSERT INTO `ibrand_goods_spec_relation` VALUES ('423', '72', '2', '17', '浅蓝色', '1', 'https://cdn.viperky.com/storage/images/20180516/8pvIGLTN6Y.png', '2018-05-16 11:55:32', '2018-05-16 11:55:32', null);
  5775. INSERT INTO `ibrand_goods_spec_relation` VALUES ('424', '72', '2', '18', '深蓝色', '1', 'https://cdn.viperky.com/storage/images/20180516/DharDbs0z3.png', '2018-05-16 11:55:32', '2018-05-16 11:55:32', null);
  5776. INSERT INTO `ibrand_goods_spec_relation` VALUES ('425', '72', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180516/nAMYytwyBB.png', '2018-05-16 11:55:32', '2018-05-16 11:55:32', null);
  5777. INSERT INTO `ibrand_goods_spec_relation` VALUES ('426', '72', '2', '47', '黄色', '1', 'https://cdn.viperky.com/storage/images/20180516/njWY5v0Wv0.png', '2018-05-16 11:55:32', '2018-05-16 11:55:32', null);
  5778. INSERT INTO `ibrand_goods_spec_relation` VALUES ('427', '72', '1', '40', '90', '2', '', '2018-05-16 11:55:32', '2018-05-16 11:55:32', null);
  5779. INSERT INTO `ibrand_goods_spec_relation` VALUES ('428', '72', '1', '41', '100', '2', '', '2018-05-16 11:55:32', '2018-05-16 11:55:32', null);
  5780. INSERT INTO `ibrand_goods_spec_relation` VALUES ('429', '72', '1', '42', '110', '2', '', '2018-05-16 11:55:32', '2018-05-16 11:55:32', null);
  5781. INSERT INTO `ibrand_goods_spec_relation` VALUES ('430', '72', '1', '43', '120', '2', '', '2018-05-16 11:55:32', '2018-05-16 11:55:32', null);
  5782. INSERT INTO `ibrand_goods_spec_relation` VALUES ('431', '72', '1', '44', '130', '2', '', '2018-05-16 11:55:32', '2018-05-16 11:55:32', null);
  5783. INSERT INTO `ibrand_goods_spec_relation` VALUES ('432', '73', '2', '18', '深蓝色', '1', 'https://cdn.viperky.com/storage/images/20180516/0QmcuMaqRa.png', '2018-05-16 12:11:46', '2018-05-16 12:11:46', null);
  5784. INSERT INTO `ibrand_goods_spec_relation` VALUES ('433', '73', '2', '38', '灰色', '1', 'https://cdn.viperky.com/storage/images/20180516/HJZvuWctaY.png', '2018-05-16 12:11:46', '2018-05-16 12:11:46', null);
  5785. INSERT INTO `ibrand_goods_spec_relation` VALUES ('434', '73', '2', '47', '黄色', '1', 'https://cdn.viperky.com/storage/images/20180516/tv8wl09cwY.png', '2018-05-16 12:11:46', '2018-05-16 12:11:46', null);
  5786. INSERT INTO `ibrand_goods_spec_relation` VALUES ('435', '73', '1', '40', '90', '2', '', '2018-05-16 12:11:46', '2018-05-16 12:11:46', null);
  5787. INSERT INTO `ibrand_goods_spec_relation` VALUES ('436', '73', '1', '41', '100', '2', '', '2018-05-16 12:11:46', '2018-05-16 12:11:46', null);
  5788. INSERT INTO `ibrand_goods_spec_relation` VALUES ('437', '73', '1', '42', '110', '2', '', '2018-05-16 12:11:46', '2018-05-16 12:11:46', null);
  5789. INSERT INTO `ibrand_goods_spec_relation` VALUES ('438', '73', '1', '43', '120', '2', '', '2018-05-16 12:11:46', '2018-05-16 12:11:46', null);
  5790. INSERT INTO `ibrand_goods_spec_relation` VALUES ('439', '73', '1', '44', '130', '2', '', '2018-05-16 12:11:46', '2018-05-16 12:11:46', null);
  5791. INSERT INTO `ibrand_goods_spec_relation` VALUES ('440', '74', '2', '3', '玫瑰粉', '1', 'https://cdn.viperky.com/storage/images/20180516/I24BM7tYBo.png', '2018-05-16 13:21:42', '2018-05-23 14:37:11', null);
  5792. INSERT INTO `ibrand_goods_spec_relation` VALUES ('441', '74', '2', '11', '浅绿色', '1', 'https://cdn.viperky.com/storage/images/20180516/j0HM97EZF6.png', '2018-05-16 13:21:42', '2018-05-23 14:37:11', null);
  5793. INSERT INTO `ibrand_goods_spec_relation` VALUES ('442', '74', '2', '37', '深灰色', '1', 'https://cdn.viperky.com/storage/images/20180516/qtKaaKumQQ.png', '2018-05-16 13:21:42', '2018-05-23 14:37:11', null);
  5794. INSERT INTO `ibrand_goods_spec_relation` VALUES ('443', '74', '1', '40', '90', '2', '', '2018-05-16 13:21:42', '2018-05-23 14:37:11', null);
  5795. INSERT INTO `ibrand_goods_spec_relation` VALUES ('444', '74', '1', '41', '100', '2', '', '2018-05-16 13:21:42', '2018-05-23 14:37:11', null);
  5796. INSERT INTO `ibrand_goods_spec_relation` VALUES ('445', '74', '1', '43', '120', '2', '', '2018-05-16 13:21:42', '2018-05-23 14:37:11', null);
  5797. INSERT INTO `ibrand_goods_spec_relation` VALUES ('446', '74', '1', '44', '130', '2', '', '2018-05-16 13:21:42', '2018-05-23 14:37:11', null);
  5798. INSERT INTO `ibrand_goods_spec_relation` VALUES ('447', '75', '2', '18', '深蓝色', '1', 'https://cdn.viperky.com/storage/images/20180516/qcXyyqxBwS.png', '2018-05-16 13:30:21', '2018-05-23 14:36:30', null);
  5799. INSERT INTO `ibrand_goods_spec_relation` VALUES ('448', '75', '1', '40', '90', '2', '', '2018-05-16 13:30:21', '2018-05-23 14:36:30', null);
  5800. INSERT INTO `ibrand_goods_spec_relation` VALUES ('449', '75', '1', '41', '100', '2', '', '2018-05-16 13:30:21', '2018-05-23 14:36:30', null);
  5801. INSERT INTO `ibrand_goods_spec_relation` VALUES ('450', '75', '1', '42', '110', '2', '', '2018-05-16 13:30:21', '2018-05-23 14:36:30', null);
  5802. INSERT INTO `ibrand_goods_spec_relation` VALUES ('451', '75', '1', '43', '120', '2', '', '2018-05-16 13:30:21', '2018-05-23 14:36:30', null);
  5803. INSERT INTO `ibrand_goods_spec_relation` VALUES ('452', '75', '1', '44', '130', '2', '', '2018-05-16 13:30:21', '2018-05-23 14:36:30', null);
  5804. INSERT INTO `ibrand_goods_spec_relation` VALUES ('453', '76', '2', '14', '蓝色', '1', 'https://cdn.viperky.com/storage/images/20180516/CsyN8UYzov.png', '2018-05-16 13:39:59', '2018-05-23 14:35:55', null);
  5805. INSERT INTO `ibrand_goods_spec_relation` VALUES ('454', '76', '1', '40', '90', '2', '', '2018-05-16 13:39:59', '2018-05-23 14:35:55', null);
  5806. INSERT INTO `ibrand_goods_spec_relation` VALUES ('455', '76', '1', '41', '100', '2', '', '2018-05-16 13:39:59', '2018-05-23 14:35:55', null);
  5807. INSERT INTO `ibrand_goods_spec_relation` VALUES ('456', '76', '1', '42', '110', '2', '', '2018-05-16 13:39:59', '2018-05-23 14:35:55', null);
  5808. INSERT INTO `ibrand_goods_spec_relation` VALUES ('457', '76', '1', '43', '120', '2', '', '2018-05-16 13:39:59', '2018-05-23 14:35:55', null);
  5809. INSERT INTO `ibrand_goods_spec_relation` VALUES ('458', '76', '1', '44', '130', '2', '', '2018-05-16 13:39:59', '2018-05-23 14:35:55', null);
  5810. INSERT INTO `ibrand_goods_spec_relation` VALUES ('459', '77', '2', '1', '黑色', '1', 'https://cdn.viperky.com/storage/images/20180516/26dpZEjppG.jpg', '2018-05-16 14:33:59', '2018-05-16 17:12:57', null);
  5811. INSERT INTO `ibrand_goods_spec_relation` VALUES ('460', '77', '1', '40', '90', '2', '', '2018-05-16 14:33:59', '2018-05-16 17:12:57', null);
  5812. INSERT INTO `ibrand_goods_spec_relation` VALUES ('461', '78', '2', '38', '灰绿色', '1', 'https://cdn.viperky.com/storage/images/20180521/nx4OkWMQUT.png', '2018-05-21 15:34:50', '2018-05-21 16:06:05', null);
  5813. INSERT INTO `ibrand_goods_spec_relation` VALUES ('462', '78', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180521/54dqkXPhU9.png', '2018-05-21 15:34:50', '2018-05-21 16:06:05', null);
  5814. INSERT INTO `ibrand_goods_spec_relation` VALUES ('463', '78', '1', '40', '90', '2', '', '2018-05-21 15:34:50', '2018-05-21 16:06:05', null);
  5815. INSERT INTO `ibrand_goods_spec_relation` VALUES ('464', '78', '1', '41', '100', '2', '', '2018-05-21 15:34:50', '2018-05-21 16:06:05', null);
  5816. INSERT INTO `ibrand_goods_spec_relation` VALUES ('465', '78', '1', '42', '110', '2', '', '2018-05-21 15:34:50', '2018-05-21 16:06:05', null);
  5817. INSERT INTO `ibrand_goods_spec_relation` VALUES ('466', '78', '1', '43', '120', '2', '', '2018-05-21 15:34:50', '2018-05-21 16:06:05', null);
  5818. INSERT INTO `ibrand_goods_spec_relation` VALUES ('467', '78', '1', '44', '130', '2', '', '2018-05-21 15:34:50', '2018-05-21 16:06:05', null);
  5819. INSERT INTO `ibrand_goods_spec_relation` VALUES ('468', '78', '1', '45', '140', '2', '', '2018-05-21 15:34:50', '2018-05-21 16:06:05', null);
  5820. INSERT INTO `ibrand_goods_spec_relation` VALUES ('469', '79', '2', '17', '牛仔蓝', '1', 'https://cdn.viperky.com/storage/images/20180521/GOjf2522zr.png', '2018-05-21 15:35:38', '2018-05-21 15:53:40', null);
  5821. INSERT INTO `ibrand_goods_spec_relation` VALUES ('470', '79', '1', '40', '90', '2', '', '2018-05-21 15:35:38', '2018-05-21 15:53:40', null);
  5822. INSERT INTO `ibrand_goods_spec_relation` VALUES ('471', '79', '1', '41', '100', '2', '', '2018-05-21 15:35:38', '2018-05-21 15:53:40', null);
  5823. INSERT INTO `ibrand_goods_spec_relation` VALUES ('472', '79', '1', '42', '110', '2', '', '2018-05-21 15:35:38', '2018-05-21 15:53:40', null);
  5824. INSERT INTO `ibrand_goods_spec_relation` VALUES ('473', '79', '1', '43', '120', '2', '', '2018-05-21 15:35:38', '2018-05-21 15:53:40', null);
  5825. INSERT INTO `ibrand_goods_spec_relation` VALUES ('474', '79', '1', '44', '130', '2', '', '2018-05-21 15:35:38', '2018-05-21 15:53:40', null);
  5826. INSERT INTO `ibrand_goods_spec_relation` VALUES ('475', '80', '2', '17', '牛仔蓝', '1', 'https://cdn.viperky.com/storage/images/20180521/fSOct914m1.png', '2018-05-21 15:53:01', '2018-05-21 15:53:55', null);
  5827. INSERT INTO `ibrand_goods_spec_relation` VALUES ('476', '80', '1', '40', '90', '2', '', '2018-05-21 15:53:01', '2018-05-21 15:53:55', null);
  5828. INSERT INTO `ibrand_goods_spec_relation` VALUES ('477', '80', '1', '41', '100', '2', '', '2018-05-21 15:53:01', '2018-05-21 15:53:55', null);
  5829. INSERT INTO `ibrand_goods_spec_relation` VALUES ('478', '80', '1', '42', '110', '2', '', '2018-05-21 15:53:01', '2018-05-21 15:53:55', null);
  5830. INSERT INTO `ibrand_goods_spec_relation` VALUES ('479', '80', '1', '43', '120', '2', '', '2018-05-21 15:53:01', '2018-05-21 15:53:55', null);
  5831. INSERT INTO `ibrand_goods_spec_relation` VALUES ('480', '80', '1', '44', '130', '2', '', '2018-05-21 15:53:01', '2018-05-21 15:53:55', null);
  5832. INSERT INTO `ibrand_goods_spec_relation` VALUES ('481', '81', '2', '4', '粉红色', '1', 'https://cdn.viperky.com/storage/images/20180521/xQRxcYdWIJ.png', '2018-05-21 15:54:34', '2018-05-21 16:05:50', null);
  5833. INSERT INTO `ibrand_goods_spec_relation` VALUES ('482', '81', '2', '20', '蓝色', '1', 'https://cdn.viperky.com/storage/images/20180521/gP5Hx4v9K8.png', '2018-05-21 15:54:34', '2018-05-21 16:05:50', null);
  5834. INSERT INTO `ibrand_goods_spec_relation` VALUES ('483', '81', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180521/hegCq0xaFF.png', '2018-05-21 15:54:34', '2018-05-21 16:05:50', null);
  5835. INSERT INTO `ibrand_goods_spec_relation` VALUES ('484', '81', '2', '47', '黄色', '1', 'https://cdn.viperky.com/storage/images/20180521/bmV6a5yO6I.png', '2018-05-21 15:54:34', '2018-05-21 16:05:50', null);
  5836. INSERT INTO `ibrand_goods_spec_relation` VALUES ('485', '81', '1', '40', '90', '2', '', '2018-05-21 15:54:34', '2018-05-21 16:05:50', null);
  5837. INSERT INTO `ibrand_goods_spec_relation` VALUES ('486', '81', '1', '41', '100', '2', '', '2018-05-21 15:54:34', '2018-05-21 16:05:50', null);
  5838. INSERT INTO `ibrand_goods_spec_relation` VALUES ('487', '81', '1', '42', '110', '2', '', '2018-05-21 15:54:34', '2018-05-21 16:05:50', null);
  5839. INSERT INTO `ibrand_goods_spec_relation` VALUES ('488', '81', '1', '43', '120', '2', '', '2018-05-21 15:54:34', '2018-05-21 16:05:50', null);
  5840. INSERT INTO `ibrand_goods_spec_relation` VALUES ('489', '81', '1', '44', '130', '2', '', '2018-05-21 15:54:34', '2018-05-21 16:05:50', null);
  5841. INSERT INTO `ibrand_goods_spec_relation` VALUES ('490', '82', '2', '35', '白色/汽车款', '1', 'https://cdn.viperky.com/storage/images/20180521/3iqc0QJWk6.png', '2018-05-21 16:04:42', '2018-05-25 10:00:35', null);
  5842. INSERT INTO `ibrand_goods_spec_relation` VALUES ('491', '82', '2', '46', '白色/字母款', '1', 'https://cdn.viperky.com/storage/images/20180521/EReRUchfBZ.png', '2018-05-21 16:04:42', '2018-05-25 10:00:35', null);
  5843. INSERT INTO `ibrand_goods_spec_relation` VALUES ('492', '82', '1', '40', '90', '2', '', '2018-05-21 16:04:42', '2018-05-25 10:00:35', null);
  5844. INSERT INTO `ibrand_goods_spec_relation` VALUES ('493', '82', '1', '41', '100', '2', '', '2018-05-21 16:04:43', '2018-05-25 10:00:35', null);
  5845. INSERT INTO `ibrand_goods_spec_relation` VALUES ('494', '82', '1', '42', '110', '2', '', '2018-05-21 16:04:43', '2018-05-25 10:00:35', null);
  5846. INSERT INTO `ibrand_goods_spec_relation` VALUES ('495', '82', '1', '43', '120', '2', '', '2018-05-21 16:04:43', '2018-05-25 10:00:35', null);
  5847. INSERT INTO `ibrand_goods_spec_relation` VALUES ('496', '82', '1', '44', '130', '2', '', '2018-05-21 16:04:43', '2018-05-25 10:00:35', null);
  5848. INSERT INTO `ibrand_goods_spec_relation` VALUES ('497', '83', '2', '4', '粉色', '1', 'https://cdn.viperky.com/storage/images/20180521/2HWRLjXWBm.png', '2018-05-21 16:06:29', '2018-05-21 16:06:29', null);
  5849. INSERT INTO `ibrand_goods_spec_relation` VALUES ('498', '83', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180521/G5S346crK2.png', '2018-05-21 16:06:29', '2018-05-21 16:06:29', null);
  5850. INSERT INTO `ibrand_goods_spec_relation` VALUES ('499', '83', '1', '40', '90', '2', '', '2018-05-21 16:06:29', '2018-05-21 16:06:29', null);
  5851. INSERT INTO `ibrand_goods_spec_relation` VALUES ('500', '83', '1', '41', '100', '2', '', '2018-05-21 16:06:29', '2018-05-21 16:06:29', null);
  5852. INSERT INTO `ibrand_goods_spec_relation` VALUES ('501', '83', '1', '42', '110', '2', '', '2018-05-21 16:06:29', '2018-05-21 16:06:29', null);
  5853. INSERT INTO `ibrand_goods_spec_relation` VALUES ('502', '83', '1', '43', '120', '2', '', '2018-05-21 16:06:29', '2018-05-21 16:06:29', null);
  5854. INSERT INTO `ibrand_goods_spec_relation` VALUES ('503', '83', '1', '44', '130', '2', '', '2018-05-21 16:06:29', '2018-05-21 16:06:29', null);
  5855. INSERT INTO `ibrand_goods_spec_relation` VALUES ('504', '84', '2', '4', '粉红色', '1', 'https://cdn.viperky.com/storage/images/20180521/C9h3TmPF6c.png', '2018-05-21 16:14:35', '2018-06-13 15:23:00', null);
  5856. INSERT INTO `ibrand_goods_spec_relation` VALUES ('505', '84', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180521/z2T041DZX1.png', '2018-05-21 16:14:35', '2018-06-13 15:23:00', null);
  5857. INSERT INTO `ibrand_goods_spec_relation` VALUES ('506', '84', '1', '40', '90', '2', '', '2018-05-21 16:14:35', '2018-06-13 15:23:00', null);
  5858. INSERT INTO `ibrand_goods_spec_relation` VALUES ('507', '84', '1', '41', '100', '2', '', '2018-05-21 16:14:35', '2018-06-13 15:23:00', null);
  5859. INSERT INTO `ibrand_goods_spec_relation` VALUES ('508', '84', '1', '42', '110', '2', '', '2018-05-21 16:14:35', '2018-06-13 15:23:00', null);
  5860. INSERT INTO `ibrand_goods_spec_relation` VALUES ('509', '84', '1', '43', '120', '2', '', '2018-05-21 16:14:35', '2018-06-13 15:23:00', null);
  5861. INSERT INTO `ibrand_goods_spec_relation` VALUES ('510', '84', '1', '44', '130', '2', '', '2018-05-21 16:14:35', '2018-06-13 15:23:00', null);
  5862. INSERT INTO `ibrand_goods_spec_relation` VALUES ('525', '87', '2', '4', '粉色', '1', 'https://cdn.viperky.com/storage/images/20180521/CnjKq714xG.png', '2018-05-21 16:19:55', '2018-05-21 16:20:47', null);
  5863. INSERT INTO `ibrand_goods_spec_relation` VALUES ('526', '87', '2', '47', '黄色', '1', 'https://cdn.viperky.com/storage/images/20180521/HDEmFQEod3.png', '2018-05-21 16:19:55', '2018-05-21 16:20:47', null);
  5864. INSERT INTO `ibrand_goods_spec_relation` VALUES ('527', '87', '1', '40', '90', '2', '', '2018-05-21 16:19:55', '2018-05-21 16:20:47', null);
  5865. INSERT INTO `ibrand_goods_spec_relation` VALUES ('528', '87', '1', '41', '100', '2', '', '2018-05-21 16:19:55', '2018-05-21 16:20:47', null);
  5866. INSERT INTO `ibrand_goods_spec_relation` VALUES ('529', '87', '1', '42', '110', '2', '', '2018-05-21 16:19:55', '2018-05-21 16:20:47', null);
  5867. INSERT INTO `ibrand_goods_spec_relation` VALUES ('530', '87', '1', '43', '120', '2', '', '2018-05-21 16:19:55', '2018-05-21 16:20:47', null);
  5868. INSERT INTO `ibrand_goods_spec_relation` VALUES ('531', '87', '1', '44', '130', '2', '', '2018-05-21 16:19:55', '2018-05-21 16:20:47', null);
  5869. INSERT INTO `ibrand_goods_spec_relation` VALUES ('532', '87', '1', '49', '妈妈S码', '2', '', '2018-05-21 16:19:55', '2018-05-21 16:20:47', null);
  5870. INSERT INTO `ibrand_goods_spec_relation` VALUES ('533', '87', '1', '50', '妈妈M码', '2', '', '2018-05-21 16:19:55', '2018-05-21 16:20:47', null);
  5871. INSERT INTO `ibrand_goods_spec_relation` VALUES ('534', '88', '2', '18', '宝蓝', '1', 'https://cdn.viperky.com/storage/images/20180521/BLpYS9JVlN.png', '2018-05-21 16:33:39', '2018-05-21 16:33:39', null);
  5872. INSERT INTO `ibrand_goods_spec_relation` VALUES ('535', '88', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180521/dIXlZ5DHqx.png', '2018-05-21 16:33:39', '2018-05-21 16:33:39', null);
  5873. INSERT INTO `ibrand_goods_spec_relation` VALUES ('536', '88', '1', '40', '90', '2', '', '2018-05-21 16:33:39', '2018-05-21 16:33:39', null);
  5874. INSERT INTO `ibrand_goods_spec_relation` VALUES ('537', '88', '1', '41', '100', '2', '', '2018-05-21 16:33:39', '2018-05-21 16:33:39', null);
  5875. INSERT INTO `ibrand_goods_spec_relation` VALUES ('538', '88', '1', '42', '110', '2', '', '2018-05-21 16:33:39', '2018-05-21 16:33:39', null);
  5876. INSERT INTO `ibrand_goods_spec_relation` VALUES ('539', '88', '1', '43', '120', '2', '', '2018-05-21 16:33:39', '2018-05-21 16:33:39', null);
  5877. INSERT INTO `ibrand_goods_spec_relation` VALUES ('540', '88', '1', '44', '130', '2', '', '2018-05-21 16:33:39', '2018-05-21 16:33:39', null);
  5878. INSERT INTO `ibrand_goods_spec_relation` VALUES ('541', '88', '1', '49', '妈妈S码', '2', '', '2018-05-21 16:33:39', '2018-05-21 16:33:39', null);
  5879. INSERT INTO `ibrand_goods_spec_relation` VALUES ('542', '88', '1', '50', '妈妈M码', '2', '', '2018-05-21 16:33:39', '2018-05-21 16:33:39', null);
  5880. INSERT INTO `ibrand_goods_spec_relation` VALUES ('543', '88', '1', '51', '爸爸L码', '2', '', '2018-05-21 16:33:39', '2018-05-21 16:33:39', null);
  5881. INSERT INTO `ibrand_goods_spec_relation` VALUES ('544', '88', '1', '52', '爸爸XL码', '2', '', '2018-05-21 16:33:39', '2018-05-21 16:33:39', null);
  5882. INSERT INTO `ibrand_goods_spec_relation` VALUES ('545', '89', '2', '6', '猫头鹰', '1', 'https://cdn.viperky.com/storage/images/20180521/LdYZAxJO9P.png', '2018-05-21 16:39:50', '2018-05-21 16:41:08', null);
  5883. INSERT INTO `ibrand_goods_spec_relation` VALUES ('546', '89', '2', '7', '猫咪', '1', 'https://cdn.viperky.com/storage/images/20180521/DqrdFauxXf.png', '2018-05-21 16:39:50', '2018-05-21 16:41:08', null);
  5884. INSERT INTO `ibrand_goods_spec_relation` VALUES ('547', '89', '2', '15', '蓝恐龙', '1', 'https://cdn.viperky.com/storage/images/20180521/7iTPHZ79rP.png', '2018-05-21 16:39:50', '2018-05-21 16:41:08', null);
  5885. INSERT INTO `ibrand_goods_spec_relation` VALUES ('548', '89', '2', '17', '太阳花', '1', 'https://cdn.viperky.com/storage/images/20180521/lAF4SXbPIS.png', '2018-05-21 16:39:50', '2018-05-21 16:41:08', null);
  5886. INSERT INTO `ibrand_goods_spec_relation` VALUES ('549', '89', '2', '22', '云朵', '1', 'https://cdn.viperky.com/storage/images/20180521/oKl9IKqnEK.png', '2018-05-21 16:39:50', '2018-05-21 16:41:08', null);
  5887. INSERT INTO `ibrand_goods_spec_relation` VALUES ('550', '89', '2', '47', '小绿恐龙', '1', 'https://cdn.viperky.com/storage/images/20180521/EYf5czswtK.png', '2018-05-21 16:39:50', '2018-05-21 16:41:08', null);
  5888. INSERT INTO `ibrand_goods_spec_relation` VALUES ('551', '89', '1', '40', '90', '2', '', '2018-05-21 16:39:50', '2018-05-21 16:41:08', null);
  5889. INSERT INTO `ibrand_goods_spec_relation` VALUES ('552', '89', '1', '41', '100', '2', '', '2018-05-21 16:39:50', '2018-05-21 16:41:08', null);
  5890. INSERT INTO `ibrand_goods_spec_relation` VALUES ('553', '89', '1', '42', '110', '2', '', '2018-05-21 16:39:50', '2018-05-21 16:41:08', null);
  5891. INSERT INTO `ibrand_goods_spec_relation` VALUES ('554', '89', '1', '43', '120', '2', '', '2018-05-21 16:39:50', '2018-05-21 16:41:08', null);
  5892. INSERT INTO `ibrand_goods_spec_relation` VALUES ('555', '89', '1', '44', '130', '2', '', '2018-05-21 16:39:50', '2018-05-21 16:41:08', null);
  5893. INSERT INTO `ibrand_goods_spec_relation` VALUES ('556', '90', '2', '16', '军蓝', '1', 'https://cdn.viperky.com/storage/images/20180521/CUchlTAoAl.png', '2018-05-21 16:49:44', '2018-05-21 16:49:44', null);
  5894. INSERT INTO `ibrand_goods_spec_relation` VALUES ('557', '90', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180521/qUB2VPcNZZ.png', '2018-05-21 16:49:44', '2018-05-21 16:49:44', null);
  5895. INSERT INTO `ibrand_goods_spec_relation` VALUES ('558', '90', '1', '40', '90', '2', '', '2018-05-21 16:49:44', '2018-05-21 16:49:44', null);
  5896. INSERT INTO `ibrand_goods_spec_relation` VALUES ('559', '90', '1', '41', '100', '2', '', '2018-05-21 16:49:44', '2018-05-21 16:49:44', null);
  5897. INSERT INTO `ibrand_goods_spec_relation` VALUES ('560', '90', '1', '42', '110', '2', '', '2018-05-21 16:49:44', '2018-05-21 16:49:44', null);
  5898. INSERT INTO `ibrand_goods_spec_relation` VALUES ('561', '90', '1', '43', '120', '2', '', '2018-05-21 16:49:44', '2018-05-21 16:49:44', null);
  5899. INSERT INTO `ibrand_goods_spec_relation` VALUES ('562', '90', '1', '44', '130', '2', '', '2018-05-21 16:49:44', '2018-05-21 16:49:44', null);
  5900. INSERT INTO `ibrand_goods_spec_relation` VALUES ('563', '90', '1', '45', '140', '2', '', '2018-05-21 16:49:44', '2018-05-21 16:49:44', null);
  5901. INSERT INTO `ibrand_goods_spec_relation` VALUES ('564', '91', '2', '37', '男孩蝙蝠(超薄)', '1', 'https://cdn.viperky.com/storage/images/20180521/z6Gz0H9Hzp.png', '2018-05-21 17:03:06', '2018-05-21 17:03:06', null);
  5902. INSERT INTO `ibrand_goods_spec_relation` VALUES ('565', '91', '2', '47', '中性黄色(超薄)', '1', 'https://cdn.viperky.com/storage/images/20180521/FXZtyHtZCl.png', '2018-05-21 17:03:06', '2018-05-21 17:03:06', null);
  5903. INSERT INTO `ibrand_goods_spec_relation` VALUES ('566', '91', '1', '39', '80', '2', '', '2018-05-21 17:03:06', '2018-05-21 17:03:06', null);
  5904. INSERT INTO `ibrand_goods_spec_relation` VALUES ('567', '91', '1', '40', '90', '2', '', '2018-05-21 17:03:06', '2018-05-21 17:03:06', null);
  5905. INSERT INTO `ibrand_goods_spec_relation` VALUES ('568', '91', '1', '41', '100', '2', '', '2018-05-21 17:03:06', '2018-05-21 17:03:06', null);
  5906. INSERT INTO `ibrand_goods_spec_relation` VALUES ('569', '91', '1', '42', '110', '2', '', '2018-05-21 17:03:06', '2018-05-21 17:03:06', null);
  5907. INSERT INTO `ibrand_goods_spec_relation` VALUES ('570', '91', '1', '43', '120', '2', '', '2018-05-21 17:03:06', '2018-05-21 17:03:06', null);
  5908. INSERT INTO `ibrand_goods_spec_relation` VALUES ('571', '91', '1', '44', '130', '2', '', '2018-05-21 17:03:06', '2018-05-21 17:03:06', null);
  5909. INSERT INTO `ibrand_goods_spec_relation` VALUES ('572', '91', '1', '45', '140', '2', '', '2018-05-21 17:03:06', '2018-05-21 17:03:06', null);
  5910. INSERT INTO `ibrand_goods_spec_relation` VALUES ('573', '92', '2', '17', '瀑布绿', '1', 'https://cdn.viperky.com/storage/images/20180521/Wl3BMd2mQR.png', '2018-05-21 17:03:15', '2018-05-21 17:03:15', null);
  5911. INSERT INTO `ibrand_goods_spec_relation` VALUES ('574', '92', '2', '31', '卡其', '1', 'https://cdn.viperky.com/storage/images/20180521/pRsx9lCEhv.png', '2018-05-21 17:03:15', '2018-05-21 17:03:15', null);
  5912. INSERT INTO `ibrand_goods_spec_relation` VALUES ('575', '92', '1', '40', '90', '2', '', '2018-05-21 17:03:15', '2018-05-21 17:03:15', null);
  5913. INSERT INTO `ibrand_goods_spec_relation` VALUES ('576', '92', '1', '41', '100', '2', '', '2018-05-21 17:03:15', '2018-05-21 17:03:15', null);
  5914. INSERT INTO `ibrand_goods_spec_relation` VALUES ('577', '92', '1', '42', '110', '2', '', '2018-05-21 17:03:15', '2018-05-21 17:03:15', null);
  5915. INSERT INTO `ibrand_goods_spec_relation` VALUES ('578', '92', '1', '43', '120', '2', '', '2018-05-21 17:03:15', '2018-05-21 17:03:15', null);
  5916. INSERT INTO `ibrand_goods_spec_relation` VALUES ('579', '92', '1', '44', '130', '2', '', '2018-05-21 17:03:15', '2018-05-21 17:03:15', null);
  5917. INSERT INTO `ibrand_goods_spec_relation` VALUES ('580', '92', '1', '45', '140', '2', '', '2018-05-21 17:03:15', '2018-05-21 17:03:15', null);
  5918. INSERT INTO `ibrand_goods_spec_relation` VALUES ('581', '93', '2', '11', '艾绿', '1', 'https://cdn.viperky.com/storage/images/20180521/1FQyOvkZI4.png', '2018-05-21 17:17:39', '2018-05-21 17:18:12', null);
  5919. INSERT INTO `ibrand_goods_spec_relation` VALUES ('582', '93', '2', '31', '卡其', '1', 'https://cdn.viperky.com/storage/images/20180521/XgHFa4nlnR.png', '2018-05-21 17:17:39', '2018-05-21 17:18:12', null);
  5920. INSERT INTO `ibrand_goods_spec_relation` VALUES ('583', '93', '2', '35', '花灰', '1', 'https://cdn.viperky.com/storage/images/20180521/8YFEp3Q6Uo.png', '2018-05-21 17:17:39', '2018-05-21 17:18:12', null);
  5921. INSERT INTO `ibrand_goods_spec_relation` VALUES ('584', '93', '1', '40', '90', '2', '', '2018-05-21 17:17:39', '2018-05-21 17:18:12', null);
  5922. INSERT INTO `ibrand_goods_spec_relation` VALUES ('585', '93', '1', '41', '100', '2', '', '2018-05-21 17:17:39', '2018-05-21 17:18:12', null);
  5923. INSERT INTO `ibrand_goods_spec_relation` VALUES ('586', '93', '1', '42', '110', '2', '', '2018-05-21 17:17:39', '2018-05-21 17:18:12', null);
  5924. INSERT INTO `ibrand_goods_spec_relation` VALUES ('587', '93', '1', '43', '120', '2', '', '2018-05-21 17:17:39', '2018-05-21 17:18:12', null);
  5925. INSERT INTO `ibrand_goods_spec_relation` VALUES ('588', '93', '1', '44', '130', '2', '', '2018-05-21 17:17:39', '2018-05-21 17:18:12', null);
  5926. INSERT INTO `ibrand_goods_spec_relation` VALUES ('589', '93', '1', '45', '140', '2', '', '2018-05-21 17:17:39', '2018-05-21 17:18:12', null);
  5927. INSERT INTO `ibrand_goods_spec_relation` VALUES ('590', '94', '2', '6', '苹果(超薄纯棉)', '1', 'https://cdn.viperky.com/storage/images/20180521/gjd8HEhdeb.png', '2018-05-21 17:20:47', '2018-05-21 17:20:47', null);
  5928. INSERT INTO `ibrand_goods_spec_relation` VALUES ('591', '94', '2', '7', '草莓(竹节棉)', '1', 'https://cdn.viperky.com/storage/images/20180521/BG32CZ99lV.png', '2018-05-21 17:20:47', '2018-05-21 17:20:47', null);
  5929. INSERT INTO `ibrand_goods_spec_relation` VALUES ('592', '94', '2', '14', '蝙蝠侠(超薄纯棉)', '1', 'https://cdn.viperky.com/storage/images/20180521/NJN7liZNyA.png', '2018-05-21 17:20:47', '2018-05-21 17:20:47', null);
  5930. INSERT INTO `ibrand_goods_spec_relation` VALUES ('593', '94', '2', '38', '恐龙(竹节棉)', '1', 'https://cdn.viperky.com/storage/images/20180521/LmHUTVXNGq.png', '2018-05-21 17:20:47', '2018-05-21 17:20:47', null);
  5931. INSERT INTO `ibrand_goods_spec_relation` VALUES ('594', '94', '1', '40', '90', '2', '', '2018-05-21 17:20:47', '2018-05-21 17:20:47', null);
  5932. INSERT INTO `ibrand_goods_spec_relation` VALUES ('595', '94', '1', '41', '100', '2', '', '2018-05-21 17:20:47', '2018-05-21 17:20:47', null);
  5933. INSERT INTO `ibrand_goods_spec_relation` VALUES ('596', '94', '1', '42', '110', '2', '', '2018-05-21 17:20:47', '2018-05-21 17:20:47', null);
  5934. INSERT INTO `ibrand_goods_spec_relation` VALUES ('597', '94', '1', '43', '120', '2', '', '2018-05-21 17:20:47', '2018-05-21 17:20:47', null);
  5935. INSERT INTO `ibrand_goods_spec_relation` VALUES ('598', '94', '1', '44', '130', '2', '', '2018-05-21 17:20:47', '2018-05-21 17:20:47', null);
  5936. INSERT INTO `ibrand_goods_spec_relation` VALUES ('599', '94', '1', '45', '140', '2', '', '2018-05-21 17:20:47', '2018-05-21 17:20:47', null);
  5937. INSERT INTO `ibrand_goods_spec_relation` VALUES ('600', '95', '2', '4', '粉色', '1', 'https://cdn.viperky.com/storage/images/20180525/N3miPIUi0w.png', '2018-05-25 13:03:57', '2018-05-25 13:03:57', null);
  5938. INSERT INTO `ibrand_goods_spec_relation` VALUES ('601', '95', '2', '31', '米色', '1', 'https://cdn.viperky.com/storage/images/20180525/QdfwyTeJwo.png', '2018-05-25 13:03:57', '2018-05-25 13:03:57', null);
  5939. INSERT INTO `ibrand_goods_spec_relation` VALUES ('602', '95', '2', '36', '深灰', '1', 'https://cdn.viperky.com/storage/images/20180525/MOnmnZN3ay.png', '2018-05-25 13:03:57', '2018-05-25 13:03:57', null);
  5940. INSERT INTO `ibrand_goods_spec_relation` VALUES ('603', '95', '1', '40', '90', '2', '', '2018-05-25 13:03:57', '2018-05-25 13:03:57', null);
  5941. INSERT INTO `ibrand_goods_spec_relation` VALUES ('604', '95', '1', '41', '100', '2', '', '2018-05-25 13:03:57', '2018-05-25 13:03:57', null);
  5942. INSERT INTO `ibrand_goods_spec_relation` VALUES ('605', '95', '1', '42', '110', '2', '', '2018-05-25 13:03:57', '2018-05-25 13:03:57', null);
  5943. INSERT INTO `ibrand_goods_spec_relation` VALUES ('606', '95', '1', '43', '120', '2', '', '2018-05-25 13:03:57', '2018-05-25 13:03:57', null);
  5944. INSERT INTO `ibrand_goods_spec_relation` VALUES ('607', '95', '1', '44', '130', '2', '', '2018-05-25 13:03:57', '2018-05-25 13:03:57', null);
  5945. INSERT INTO `ibrand_goods_spec_relation` VALUES ('608', '96', '2', '16', '蓝色', '1', 'https://cdn.viperky.com/storage/images/20180525/8gWmLGHIgt.png', '2018-05-25 13:12:50', '2018-05-25 13:12:50', null);
  5946. INSERT INTO `ibrand_goods_spec_relation` VALUES ('609', '96', '2', '35', '杏色', '1', 'https://cdn.viperky.com/storage/images/20180525/RpJEGfvJ9O.png', '2018-05-25 13:12:50', '2018-05-25 13:12:50', null);
  5947. INSERT INTO `ibrand_goods_spec_relation` VALUES ('610', '96', '1', '40', '90', '2', '', '2018-05-25 13:12:50', '2018-05-25 13:12:50', null);
  5948. INSERT INTO `ibrand_goods_spec_relation` VALUES ('611', '96', '1', '41', '100', '2', '', '2018-05-25 13:12:50', '2018-05-25 13:12:50', null);
  5949. INSERT INTO `ibrand_goods_spec_relation` VALUES ('612', '96', '1', '42', '110', '2', '', '2018-05-25 13:12:50', '2018-05-25 13:12:50', null);
  5950. INSERT INTO `ibrand_goods_spec_relation` VALUES ('613', '96', '1', '43', '120', '2', '', '2018-05-25 13:12:50', '2018-05-25 13:12:50', null);
  5951. INSERT INTO `ibrand_goods_spec_relation` VALUES ('614', '96', '1', '44', '130', '2', '', '2018-05-25 13:12:50', '2018-05-25 13:12:50', null);
  5952. INSERT INTO `ibrand_goods_spec_relation` VALUES ('615', '97', '2', '11', '绿色', '1', 'https://cdn.viperky.com/storage/images/20180525/EpdjeMzVKE.png', '2018-05-25 13:46:10', '2018-05-25 13:46:10', null);
  5953. INSERT INTO `ibrand_goods_spec_relation` VALUES ('616', '97', '2', '20', '蓝色', '1', 'https://cdn.viperky.com/storage/images/20180525/xEYtIM8tut.png', '2018-05-25 13:46:10', '2018-05-25 13:46:10', null);
  5954. INSERT INTO `ibrand_goods_spec_relation` VALUES ('617', '97', '2', '27', '咖啡色', '1', 'https://cdn.viperky.com/storage/images/20180525/dR3t8Wbdb8.png', '2018-05-25 13:46:10', '2018-05-25 13:46:10', null);
  5955. INSERT INTO `ibrand_goods_spec_relation` VALUES ('618', '97', '1', '40', '90', '2', '', '2018-05-25 13:46:10', '2018-05-25 13:46:10', null);
  5956. INSERT INTO `ibrand_goods_spec_relation` VALUES ('619', '97', '1', '41', '100', '2', '', '2018-05-25 13:46:10', '2018-05-25 13:46:10', null);
  5957. INSERT INTO `ibrand_goods_spec_relation` VALUES ('620', '97', '1', '42', '110', '2', '', '2018-05-25 13:46:10', '2018-05-25 13:46:10', null);
  5958. INSERT INTO `ibrand_goods_spec_relation` VALUES ('621', '97', '1', '43', '120', '2', '', '2018-05-25 13:46:10', '2018-05-25 13:46:10', null);
  5959. INSERT INTO `ibrand_goods_spec_relation` VALUES ('622', '97', '1', '44', '130', '2', '', '2018-05-25 13:46:10', '2018-05-25 13:46:10', null);
  5960. INSERT INTO `ibrand_goods_spec_relation` VALUES ('623', '98', '2', '11', '绿色', '1', 'https://cdn.viperky.com/storage/images/20180525/J3VnugeYwN.png', '2018-05-25 14:00:06', '2018-05-28 15:12:34', null);
  5961. INSERT INTO `ibrand_goods_spec_relation` VALUES ('624', '98', '2', '20', '蓝色', '1', 'https://cdn.viperky.com/storage/images/20180525/ZwcLH7DGpn.png', '2018-05-25 14:00:06', '2018-05-28 15:12:34', null);
  5962. INSERT INTO `ibrand_goods_spec_relation` VALUES ('625', '98', '2', '31', '卡其', '1', 'https://cdn.viperky.com/storage/images/20180525/alAsWHb5vb.png', '2018-05-25 14:00:06', '2018-05-28 15:12:34', null);
  5963. INSERT INTO `ibrand_goods_spec_relation` VALUES ('626', '98', '1', '40', '90', '2', '', '2018-05-25 14:00:06', '2018-05-28 15:12:34', null);
  5964. INSERT INTO `ibrand_goods_spec_relation` VALUES ('627', '98', '1', '41', '100', '2', '', '2018-05-25 14:00:06', '2018-05-28 15:12:34', null);
  5965. INSERT INTO `ibrand_goods_spec_relation` VALUES ('628', '98', '1', '42', '110', '2', '', '2018-05-25 14:00:06', '2018-05-28 15:12:34', null);
  5966. INSERT INTO `ibrand_goods_spec_relation` VALUES ('629', '98', '1', '43', '120', '2', '', '2018-05-25 14:00:06', '2018-05-28 15:12:34', null);
  5967. INSERT INTO `ibrand_goods_spec_relation` VALUES ('630', '98', '1', '44', '130', '2', '', '2018-05-25 14:00:06', '2018-05-28 15:12:34', null);
  5968. INSERT INTO `ibrand_goods_spec_relation` VALUES ('631', '99', '2', '11', '绿色', '1', 'https://cdn.viperky.com/storage/images/20180525/fpgSGKt036.png', '2018-05-25 14:18:24', '2018-05-25 14:29:11', null);
  5969. INSERT INTO `ibrand_goods_spec_relation` VALUES ('632', '99', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180525/JMjU8wQASh.png', '2018-05-25 14:18:24', '2018-05-25 14:29:11', null);
  5970. INSERT INTO `ibrand_goods_spec_relation` VALUES ('633', '99', '1', '40', '90', '2', '', '2018-05-25 14:18:24', '2018-05-25 14:29:11', null);
  5971. INSERT INTO `ibrand_goods_spec_relation` VALUES ('634', '99', '1', '41', '100', '2', '', '2018-05-25 14:18:24', '2018-05-25 14:29:11', null);
  5972. INSERT INTO `ibrand_goods_spec_relation` VALUES ('635', '99', '1', '42', '110', '2', '', '2018-05-25 14:18:24', '2018-05-25 14:29:11', null);
  5973. INSERT INTO `ibrand_goods_spec_relation` VALUES ('636', '99', '1', '43', '120', '2', '', '2018-05-25 14:18:24', '2018-05-25 14:29:11', null);
  5974. INSERT INTO `ibrand_goods_spec_relation` VALUES ('637', '99', '1', '44', '130', '2', '', '2018-05-25 14:18:24', '2018-05-25 14:29:11', null);
  5975. INSERT INTO `ibrand_goods_spec_relation` VALUES ('638', '100', '2', '15', '灰蓝', '1', 'https://cdn.viperky.com/storage/images/20180525/jLbHQsO1Pt.png', '2018-05-25 14:35:25', '2018-05-28 15:10:23', null);
  5976. INSERT INTO `ibrand_goods_spec_relation` VALUES ('639', '100', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180525/WDbdP5rafg.png', '2018-05-25 14:35:25', '2018-05-28 15:10:23', null);
  5977. INSERT INTO `ibrand_goods_spec_relation` VALUES ('640', '100', '1', '40', '90', '2', '', '2018-05-25 14:35:25', '2018-05-28 15:10:23', null);
  5978. INSERT INTO `ibrand_goods_spec_relation` VALUES ('641', '100', '1', '41', '100', '2', '', '2018-05-25 14:35:25', '2018-05-28 15:10:23', null);
  5979. INSERT INTO `ibrand_goods_spec_relation` VALUES ('642', '100', '1', '42', '110', '2', '', '2018-05-25 14:35:25', '2018-05-28 15:10:23', null);
  5980. INSERT INTO `ibrand_goods_spec_relation` VALUES ('643', '100', '1', '43', '120', '2', '', '2018-05-25 14:35:25', '2018-05-28 15:10:23', null);
  5981. INSERT INTO `ibrand_goods_spec_relation` VALUES ('644', '100', '1', '44', '130', '2', '', '2018-05-25 14:35:25', '2018-05-28 15:10:23', null);
  5982. INSERT INTO `ibrand_goods_spec_relation` VALUES ('645', '101', '2', '20', '蓝色', '1', 'https://cdn.viperky.com/storage/images/20180525/Tts2TPirmQ.png', '2018-05-25 14:57:20', '2018-05-25 14:57:20', null);
  5983. INSERT INTO `ibrand_goods_spec_relation` VALUES ('646', '101', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180525/Hh1zZVYV5j.png', '2018-05-25 14:57:20', '2018-05-25 14:57:20', null);
  5984. INSERT INTO `ibrand_goods_spec_relation` VALUES ('647', '101', '1', '40', '90', '2', '', '2018-05-25 14:57:20', '2018-05-25 14:57:20', null);
  5985. INSERT INTO `ibrand_goods_spec_relation` VALUES ('648', '101', '1', '41', '100', '2', '', '2018-05-25 14:57:20', '2018-05-25 14:57:20', null);
  5986. INSERT INTO `ibrand_goods_spec_relation` VALUES ('649', '101', '1', '42', '110', '2', '', '2018-05-25 14:57:20', '2018-05-25 14:57:20', null);
  5987. INSERT INTO `ibrand_goods_spec_relation` VALUES ('650', '101', '1', '43', '120', '2', '', '2018-05-25 14:57:20', '2018-05-25 14:57:20', null);
  5988. INSERT INTO `ibrand_goods_spec_relation` VALUES ('651', '101', '1', '44', '130', '2', '', '2018-05-25 14:57:20', '2018-05-25 14:57:20', null);
  5989. INSERT INTO `ibrand_goods_spec_relation` VALUES ('652', '102', '2', '5', '红色', '1', 'https://cdn.viperky.com/storage/images/20180525/7mxYX1c9S3.png', '2018-05-25 15:13:58', '2018-05-25 15:13:58', null);
  5990. INSERT INTO `ibrand_goods_spec_relation` VALUES ('653', '102', '2', '11', '绿色', '1', 'https://cdn.viperky.com/storage/images/20180525/8uafOwYf0k.png', '2018-05-25 15:13:58', '2018-05-25 15:13:58', null);
  5991. INSERT INTO `ibrand_goods_spec_relation` VALUES ('654', '102', '1', '40', '90', '2', '', '2018-05-25 15:13:58', '2018-05-25 15:13:58', null);
  5992. INSERT INTO `ibrand_goods_spec_relation` VALUES ('655', '102', '1', '41', '100', '2', '', '2018-05-25 15:13:59', '2018-05-25 15:13:59', null);
  5993. INSERT INTO `ibrand_goods_spec_relation` VALUES ('656', '102', '1', '42', '110', '2', '', '2018-05-25 15:13:59', '2018-05-25 15:13:59', null);
  5994. INSERT INTO `ibrand_goods_spec_relation` VALUES ('657', '102', '1', '43', '120', '2', '', '2018-05-25 15:13:59', '2018-05-25 15:13:59', null);
  5995. INSERT INTO `ibrand_goods_spec_relation` VALUES ('658', '102', '1', '44', '130', '2', '', '2018-05-25 15:13:59', '2018-05-25 15:13:59', null);
  5996. INSERT INTO `ibrand_goods_spec_relation` VALUES ('659', '103', '2', '37', '灰色', '1', 'https://cdn.viperky.com/storage/images/20180528/lkSJ1YFBoz.png', '2018-05-28 15:36:29', '2018-05-31 17:01:34', null);
  5997. INSERT INTO `ibrand_goods_spec_relation` VALUES ('660', '103', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180528/R4TRokIkbs.png', '2018-05-28 15:36:29', '2018-05-31 17:01:34', null);
  5998. INSERT INTO `ibrand_goods_spec_relation` VALUES ('661', '103', '1', '40', '90', '2', '', '2018-05-28 15:36:29', '2018-05-31 17:01:34', null);
  5999. INSERT INTO `ibrand_goods_spec_relation` VALUES ('662', '103', '1', '41', '100', '2', '', '2018-05-28 15:36:29', '2018-05-31 17:01:34', null);
  6000. INSERT INTO `ibrand_goods_spec_relation` VALUES ('663', '103', '1', '42', '110', '2', '', '2018-05-28 15:36:29', '2018-05-31 17:01:34', null);
  6001. INSERT INTO `ibrand_goods_spec_relation` VALUES ('664', '103', '1', '43', '120', '2', '', '2018-05-28 15:36:29', '2018-05-31 17:01:34', null);
  6002. INSERT INTO `ibrand_goods_spec_relation` VALUES ('665', '103', '1', '44', '130', '2', '', '2018-05-28 15:36:29', '2018-05-31 17:01:34', null);
  6003. INSERT INTO `ibrand_goods_spec_relation` VALUES ('666', '104', '2', '21', '藏青色', '1', 'https://cdn.viperky.com/storage/images/20180528/8a0uDJKpLV.png', '2018-05-28 15:55:08', '2018-05-31 16:54:23', null);
  6004. INSERT INTO `ibrand_goods_spec_relation` VALUES ('667', '104', '2', '27', '咖啡色', '1', 'https://cdn.viperky.com/storage/images/20180528/QG7323Zkr7.png', '2018-05-28 15:55:08', '2018-05-31 16:54:23', null);
  6005. INSERT INTO `ibrand_goods_spec_relation` VALUES ('668', '104', '2', '37', '灰色', '1', 'https://cdn.viperky.com/storage/images/20180528/mNTnFq4WM0.png', '2018-05-28 15:55:08', '2018-05-31 16:54:23', null);
  6006. INSERT INTO `ibrand_goods_spec_relation` VALUES ('669', '104', '1', '40', '90', '2', '', '2018-05-28 15:55:08', '2018-05-31 16:54:23', null);
  6007. INSERT INTO `ibrand_goods_spec_relation` VALUES ('670', '104', '1', '41', '100', '2', '', '2018-05-28 15:55:08', '2018-05-31 16:54:23', null);
  6008. INSERT INTO `ibrand_goods_spec_relation` VALUES ('671', '104', '1', '42', '110', '2', '', '2018-05-28 15:55:08', '2018-05-31 16:54:23', null);
  6009. INSERT INTO `ibrand_goods_spec_relation` VALUES ('672', '104', '1', '43', '120', '2', '', '2018-05-28 15:55:08', '2018-05-31 16:54:23', null);
  6010. INSERT INTO `ibrand_goods_spec_relation` VALUES ('673', '104', '1', '44', '130', '2', '', '2018-05-28 15:55:08', '2018-05-31 16:54:23', null);
  6011. INSERT INTO `ibrand_goods_spec_relation` VALUES ('674', '105', '2', '7', '焦糖', '1', 'https://cdn.viperky.com/storage/images/20180528/G6tBewrrED.png', '2018-05-28 17:52:27', '2018-05-31 16:53:40', null);
  6012. INSERT INTO `ibrand_goods_spec_relation` VALUES ('675', '105', '2', '19', '蓝色', '1', 'https://cdn.viperky.com/storage/images/20180528/F4g7AKnRop.png', '2018-05-28 17:52:27', '2018-05-31 16:53:40', null);
  6013. INSERT INTO `ibrand_goods_spec_relation` VALUES ('676', '105', '1', '40', '90', '2', '', '2018-05-28 17:52:27', '2018-05-31 16:53:40', null);
  6014. INSERT INTO `ibrand_goods_spec_relation` VALUES ('677', '105', '1', '41', '100', '2', '', '2018-05-28 17:52:27', '2018-05-31 16:53:40', null);
  6015. INSERT INTO `ibrand_goods_spec_relation` VALUES ('678', '105', '1', '42', '110', '2', '', '2018-05-28 17:52:27', '2018-05-31 16:53:40', null);
  6016. INSERT INTO `ibrand_goods_spec_relation` VALUES ('679', '105', '1', '43', '120', '2', '', '2018-05-28 17:52:27', '2018-05-31 16:53:40', null);
  6017. INSERT INTO `ibrand_goods_spec_relation` VALUES ('680', '105', '1', '44', '130', '2', '', '2018-05-28 17:52:27', '2018-05-31 16:53:40', null);
  6018. INSERT INTO `ibrand_goods_spec_relation` VALUES ('681', '106', '2', '22', '米色', '1', 'https://cdn.viperky.com/storage/images/20180528/mDZaqoPDzP.png', '2018-05-28 18:03:05', '2018-05-31 16:53:01', null);
  6019. INSERT INTO `ibrand_goods_spec_relation` VALUES ('682', '106', '2', '36', '深灰', '1', 'https://cdn.viperky.com/storage/images/20180528/VHjA1iFoua.png', '2018-05-28 18:03:05', '2018-05-31 16:53:01', null);
  6020. INSERT INTO `ibrand_goods_spec_relation` VALUES ('683', '106', '1', '40', '90', '2', '', '2018-05-28 18:03:05', '2018-05-31 16:53:01', null);
  6021. INSERT INTO `ibrand_goods_spec_relation` VALUES ('684', '106', '1', '41', '100', '2', '', '2018-05-28 18:03:05', '2018-05-31 16:53:01', null);
  6022. INSERT INTO `ibrand_goods_spec_relation` VALUES ('685', '106', '1', '42', '110', '2', '', '2018-05-28 18:03:05', '2018-05-31 16:53:01', null);
  6023. INSERT INTO `ibrand_goods_spec_relation` VALUES ('686', '106', '1', '43', '120', '2', '', '2018-05-28 18:03:05', '2018-05-31 16:53:01', null);
  6024. INSERT INTO `ibrand_goods_spec_relation` VALUES ('687', '106', '1', '44', '130', '2', '', '2018-05-28 18:03:05', '2018-05-31 16:53:01', null);
  6025. INSERT INTO `ibrand_goods_spec_relation` VALUES ('688', '107', '2', '4', '粉色', '1', 'https://cdn.viperky.com/storage/images/20180528/Jl0zHx0TiT.png', '2018-05-28 18:11:36', '2018-05-31 16:52:47', null);
  6026. INSERT INTO `ibrand_goods_spec_relation` VALUES ('689', '107', '2', '31', '卡其色', '1', 'https://cdn.viperky.com/storage/images/20180528/fipHOAB48q.png', '2018-05-28 18:11:36', '2018-05-31 16:52:47', null);
  6027. INSERT INTO `ibrand_goods_spec_relation` VALUES ('690', '107', '1', '40', '90', '2', '', '2018-05-28 18:11:36', '2018-05-31 16:52:47', null);
  6028. INSERT INTO `ibrand_goods_spec_relation` VALUES ('691', '107', '1', '41', '100', '2', '', '2018-05-28 18:11:36', '2018-05-31 16:52:47', null);
  6029. INSERT INTO `ibrand_goods_spec_relation` VALUES ('692', '107', '1', '42', '110', '2', '', '2018-05-28 18:11:36', '2018-05-31 16:52:47', null);
  6030. INSERT INTO `ibrand_goods_spec_relation` VALUES ('693', '107', '1', '43', '120', '2', '', '2018-05-28 18:11:36', '2018-05-31 16:52:47', null);
  6031. INSERT INTO `ibrand_goods_spec_relation` VALUES ('694', '107', '1', '44', '130', '2', '', '2018-05-28 18:11:36', '2018-05-31 16:52:47', null);
  6032. INSERT INTO `ibrand_goods_spec_relation` VALUES ('695', '108', '2', '4', '花草味', '1', 'https://cdn.viperky.com/storage/images/20180605/cX6CUkgBbt.png', '2018-06-05 16:26:05', '2018-06-07 13:59:29', null);
  6033. INSERT INTO `ibrand_goods_spec_relation` VALUES ('696', '108', '2', '14', '水果味', '1', 'https://cdn.viperky.com/storage/images/20180605/efAPx9Gh6g.png', '2018-06-05 16:26:05', '2018-06-07 13:59:29', null);
  6034. INSERT INTO `ibrand_goods_spec_relation` VALUES ('697', '108', '1', '62', '30个/袋', '2', '', '2018-06-05 16:26:05', '2018-06-07 13:59:29', null);
  6035. INSERT INTO `ibrand_goods_spec_relation` VALUES ('698', '109', '2', '1', '黑兔子', '1', 'https://cdn.viperky.com/storage/images/20180605/F8fMzkC33G.png', '2018-06-05 17:27:18', '2018-06-05 17:49:40', null);
  6036. INSERT INTO `ibrand_goods_spec_relation` VALUES ('699', '109', '2', '4', '少女粉', '1', 'https://cdn.viperky.com/storage/images/20180605/oLKxOCBjhs.png', '2018-06-05 17:27:18', '2018-06-05 17:49:40', null);
  6037. INSERT INTO `ibrand_goods_spec_relation` VALUES ('700', '109', '2', '19', '蓝色', '1', 'https://cdn.viperky.com/storage/images/20180605/qQfXgrrw9t.png', '2018-06-05 17:27:18', '2018-06-05 17:49:40', null);
  6038. INSERT INTO `ibrand_goods_spec_relation` VALUES ('701', '109', '2', '34', '卡其兔子', '1', 'https://cdn.viperky.com/storage/images/20180605/tdDfTLPjNl.png', '2018-06-05 17:27:18', '2018-06-05 17:49:40', null);
  6039. INSERT INTO `ibrand_goods_spec_relation` VALUES ('702', '109', '2', '35', '浅灰色', '1', 'https://cdn.viperky.com/storage/images/20180605/bVHLxejEYy.png', '2018-06-05 17:27:18', '2018-06-05 17:49:40', null);
  6040. INSERT INTO `ibrand_goods_spec_relation` VALUES ('703', '109', '2', '47', '黄色', '1', 'https://cdn.viperky.com/storage/images/20180605/M0D2q2OzfB.png', '2018-06-05 17:27:18', '2018-06-05 17:49:40', null);
  6041. INSERT INTO `ibrand_goods_spec_relation` VALUES ('704', '109', '1', '53', '75*105加绒', '2', '', '2018-06-05 17:27:18', '2018-06-05 17:49:40', null);
  6042. INSERT INTO `ibrand_goods_spec_relation` VALUES ('705', '109', '1', '54', '75*105单层', '2', '', '2018-06-05 17:27:18', '2018-06-05 17:49:40', null);
  6043. INSERT INTO `ibrand_goods_spec_relation` VALUES ('706', '109', '1', '55', '110*130加绒', '2', '', '2018-06-05 17:27:18', '2018-06-05 17:49:40', null);
  6044. INSERT INTO `ibrand_goods_spec_relation` VALUES ('707', '109', '1', '56', '110*130单层', '2', '', '2018-06-05 17:27:18', '2018-06-05 17:49:40', null);
  6045. INSERT INTO `ibrand_goods_spec_relation` VALUES ('708', '109', '1', '57', '75*105羊羔绒', '2', '', '2018-06-05 17:27:18', '2018-06-05 17:49:40', null);
  6046. INSERT INTO `ibrand_goods_spec_relation` VALUES ('709', '110', '2', '7', '60(g/ml)', '1', 'https://cdn.viperky.com/storage/images/20180605/hcBoMVlioh.png', '2018-06-05 18:03:14', '2018-06-05 18:03:14', null);
  6047. INSERT INTO `ibrand_goods_spec_relation` VALUES ('710', '110', '1', '39', '60(g/ml)', '2', '', '2018-06-05 18:03:14', '2018-06-05 18:03:14', null);
  6048. INSERT INTO `ibrand_goods_spec_relation` VALUES ('711', '111', '2', '4', '玫粉色-升级版-顽皮熊', '1', 'https://cdn.viperky.com/storage/images/20180606/Cnyp7UfHmq.png', '2018-06-06 12:43:29', '2018-06-15 13:08:32', null);
  6049. INSERT INTO `ibrand_goods_spec_relation` VALUES ('712', '111', '2', '18', '藏蓝色-升级版-顽皮熊', '1', 'https://cdn.viperky.com/storage/images/20180606/MoteHIkCqm.png', '2018-06-06 12:43:29', '2018-06-15 13:08:32', null);
  6050. INSERT INTO `ibrand_goods_spec_relation` VALUES ('713', '111', '2', '19', '粉蓝色-升级版-顽皮熊', '1', 'https://cdn.viperky.com/storage/images/20180606/zWOSI5WxbL.png', '2018-06-06 12:43:29', '2018-06-15 13:08:32', null);
  6051. INSERT INTO `ibrand_goods_spec_relation` VALUES ('714', '111', '2', '23', '深蓝色-升级版-顽皮熊', '1', 'https://cdn.viperky.com/storage/images/20180606/PYS23pYE4u.png', '2018-06-06 12:43:29', '2018-06-15 13:08:32', null);
  6052. INSERT INTO `ibrand_goods_spec_relation` VALUES ('715', '111', '2', '25', '粉紫色-升级版-顽皮熊', '1', 'https://cdn.viperky.com/storage/images/20180606/ZEpr9pzIld.png', '2018-06-06 12:43:29', '2018-06-15 13:08:32', null);
  6053. INSERT INTO `ibrand_goods_spec_relation` VALUES ('716', '111', '1', '39', '儿童建议头围50-54cm', '2', '', '2018-06-06 12:43:29', '2018-06-15 13:08:32', null);
  6054. INSERT INTO `ibrand_goods_spec_relation` VALUES ('717', '111', '1', '40', '成人建议头围54-57cm', '2', '', '2018-06-06 12:43:29', '2018-06-15 13:08:32', null);
  6055. INSERT INTO `ibrand_goods_spec_relation` VALUES ('718', '111', '1', '41', '小童建议头围48-52cm', '2', '', '2018-06-06 12:43:29', '2018-06-15 13:08:32', null);
  6056. INSERT INTO `ibrand_goods_spec_relation` VALUES ('719', '112', '2', '1', '黑色', '1', 'https://cdn.viperky.com/storage/images/20180606/zmTIlRPJqd.png', '2018-06-06 14:44:43', '2018-06-07 10:38:56', null);
  6057. INSERT INTO `ibrand_goods_spec_relation` VALUES ('720', '112', '2', '2', '卡其色', '1', 'https://cdn.viperky.com/storage/images/20180606/d8kdRFrpHz.png', '2018-06-06 14:44:43', '2018-06-07 10:38:56', null);
  6058. INSERT INTO `ibrand_goods_spec_relation` VALUES ('721', '112', '2', '3', '玫红色', '1', 'https://cdn.viperky.com/storage/images/20180606/H2aygbpLyo.png', '2018-06-06 14:44:43', '2018-06-07 10:38:56', null);
  6059. INSERT INTO `ibrand_goods_spec_relation` VALUES ('722', '112', '2', '4', '粉色', '1', 'https://cdn.viperky.com/storage/images/20180606/Xsak4cCIaH.png', '2018-06-06 14:44:43', '2018-06-07 10:38:56', null);
  6060. INSERT INTO `ibrand_goods_spec_relation` VALUES ('723', '112', '2', '9', '草绿色', '1', 'https://cdn.viperky.com/storage/images/20180606/VyhLMHXW9F.png', '2018-06-06 14:44:43', '2018-06-07 10:38:56', null);
  6061. INSERT INTO `ibrand_goods_spec_relation` VALUES ('724', '112', '2', '21', '藏青色', '1', 'https://cdn.viperky.com/storage/images/20180606/k3M3sYx3xL.png', '2018-06-06 14:44:43', '2018-06-07 10:38:56', null);
  6062. INSERT INTO `ibrand_goods_spec_relation` VALUES ('725', '112', '2', '26', '紫色', '1', 'https://cdn.viperky.com/storage/images/20180606/nCkYTXecQp.png', '2018-06-06 14:44:43', '2018-06-07 10:38:56', null);
  6063. INSERT INTO `ibrand_goods_spec_relation` VALUES ('726', '112', '1', '39', '48-52cm', '2', '', '2018-06-06 14:44:43', '2018-06-07 10:38:56', null);
  6064. INSERT INTO `ibrand_goods_spec_relation` VALUES ('727', '113', '2', '20', '蓝色', '1', 'https://cdn.viperky.com/storage/images/20180607/Lm2uHYeqIq.jpg', '2018-06-07 12:02:47', '2018-06-13 15:19:00', null);
  6065. INSERT INTO `ibrand_goods_spec_relation` VALUES ('728', '113', '1', '39', '237ml', '2', '', '2018-06-07 12:02:47', '2018-06-13 15:19:00', null);
  6066. INSERT INTO `ibrand_goods_spec_relation` VALUES ('729', '114', '2', '17', '款式随机(固态)', '1', 'https://cdn.viperky.com/storage/images/20180607/4xmitUWDg5.png', '2018-06-07 14:50:10', '2018-06-14 11:33:04', null);
  6067. INSERT INTO `ibrand_goods_spec_relation` VALUES ('730', '114', '2', '25', '款式随机(液态)', '1', 'https://cdn.viperky.com/storage/images/20180607/M5zFI4aqFr.png', '2018-06-07 14:50:10', '2018-06-14 11:33:04', null);
  6068. INSERT INTO `ibrand_goods_spec_relation` VALUES ('731', '114', '2', '46', '款式随机(小清新印花)', '1', 'https://cdn.viperky.com/storage/images/20180607/njregfsXLd.png', '2018-06-07 14:50:10', '2018-06-14 11:33:04', null);
  6069. INSERT INTO `ibrand_goods_spec_relation` VALUES ('732', '114', '1', '39', '4*3.5cm', '2', '', '2018-06-07 14:50:10', '2018-06-14 11:33:04', null);
  6070. INSERT INTO `ibrand_goods_spec_relation` VALUES ('733', '115', '2', '2', '2号几何', '1', 'https://cdn.viperky.com/storage/images/20180607/c8CfbrHLUg.png', '2018-06-07 16:09:15', '2018-06-07 16:09:15', null);
  6071. INSERT INTO `ibrand_goods_spec_relation` VALUES ('734', '115', '2', '4', '4号小三角', '1', 'https://cdn.viperky.com/storage/images/20180607/xJGgNxw2Gk.png', '2018-06-07 16:09:15', '2018-06-07 16:09:15', null);
  6072. INSERT INTO `ibrand_goods_spec_relation` VALUES ('735', '115', '2', '6', '6号白格', '1', 'https://cdn.viperky.com/storage/images/20180607/GKofa2jVIG.png', '2018-06-07 16:09:15', '2018-06-07 16:09:15', null);
  6073. INSERT INTO `ibrand_goods_spec_relation` VALUES ('736', '115', '2', '7', '7号黑格', '1', 'https://cdn.viperky.com/storage/images/20180607/i4yzsdocOd.png', '2018-06-07 16:09:15', '2018-06-07 16:09:15', null);
  6074. INSERT INTO `ibrand_goods_spec_relation` VALUES ('737', '115', '2', '13', '13号麦穗', '1', 'https://cdn.viperky.com/storage/images/20180607/HhaRqDBk4a.png', '2018-06-07 16:09:15', '2018-06-07 16:09:15', null);
  6075. INSERT INTO `ibrand_goods_spec_relation` VALUES ('738', '115', '2', '16', '16号纸飞机', '1', 'https://cdn.viperky.com/storage/images/20180607/g2S0ItrKEc.png', '2018-06-07 16:09:15', '2018-06-07 16:09:15', null);
  6076. INSERT INTO `ibrand_goods_spec_relation` VALUES ('739', '115', '2', '20', '20号黑圆点', '1', 'https://cdn.viperky.com/storage/images/20180607/USKodNbCid.png', '2018-06-07 16:09:15', '2018-06-07 16:09:15', null);
  6077. INSERT INTO `ibrand_goods_spec_relation` VALUES ('740', '115', '1', '39', '40*50cm', '2', '', '2018-06-07 16:09:15', '2018-06-07 16:09:15', null);
  6078. INSERT INTO `ibrand_goods_spec_relation` VALUES ('741', '116', '2', '1', '黄条纹', '1', 'https://cdn.viperky.com/storage/images/20180607/IRbmX9pn8R.png', '2018-06-07 17:01:15', '2018-06-11 12:06:18', null);
  6079. INSERT INTO `ibrand_goods_spec_relation` VALUES ('742', '116', '2', '20', '蓝点点', '1', 'https://cdn.viperky.com/storage/images/20180607/QwUDkOI4Fq.png', '2018-06-07 17:01:15', '2018-06-11 12:06:18', null);
  6080. INSERT INTO `ibrand_goods_spec_relation` VALUES ('743', '116', '2', '21', '蓝条纹', '1', 'https://cdn.viperky.com/storage/images/20180607/QNzJmyNAov.png', '2018-06-07 17:01:15', '2018-06-11 12:06:18', null);
  6081. INSERT INTO `ibrand_goods_spec_relation` VALUES ('744', '116', '2', '28', '红条纹', '1', 'https://cdn.viperky.com/storage/images/20180607/3rbMT5LtLz.png', '2018-06-07 17:01:15', '2018-06-11 12:06:18', null);
  6082. INSERT INTO `ibrand_goods_spec_relation` VALUES ('745', '116', '2', '30', '红点点', '1', 'https://cdn.viperky.com/storage/images/20180607/L2xL4KVDuZ.png', '2018-06-07 17:01:15', '2018-06-11 12:06:18', null);
  6083. INSERT INTO `ibrand_goods_spec_relation` VALUES ('746', '116', '2', '47', '黄圆点', '1', 'https://cdn.viperky.com/storage/images/20180607/lvb0fDycbp.png', '2018-06-07 17:01:15', '2018-06-11 12:06:18', null);
  6084. INSERT INTO `ibrand_goods_spec_relation` VALUES ('747', '116', '1', '39', '14*12.5cm', '2', '', '2018-06-07 17:01:15', '2018-06-11 12:06:18', null);
  6085. INSERT INTO `ibrand_goods_spec_relation` VALUES ('748', '117', '2', '18', '蓝盒', '1', 'https://cdn.viperky.com/storage/images/20180607/ABt2IDacuo.png', '2018-06-07 17:19:30', '2018-06-07 17:22:42', null);
  6086. INSERT INTO `ibrand_goods_spec_relation` VALUES ('749', '117', '1', '39', '50ml', '2', '', '2018-06-07 17:19:30', '2018-06-07 17:22:42', null);
  6087. INSERT INTO `ibrand_goods_spec_relation` VALUES ('750', '118', '2', '2', '橘红色', '1', 'https://cdn.viperky.com/storage/images/20180607/cpWeV9LJjU.png', '2018-06-07 18:06:48', '2018-06-15 12:31:05', null);
  6088. INSERT INTO `ibrand_goods_spec_relation` VALUES ('751', '118', '2', '6', '粉色', '1', 'https://cdn.viperky.com/storage/images/20180607/LLEaL0e7bG.png', '2018-06-07 18:06:48', '2018-06-15 12:31:05', null);
  6089. INSERT INTO `ibrand_goods_spec_relation` VALUES ('752', '118', '2', '11', '复古绿', '1', 'https://cdn.viperky.com/storage/images/20180607/AtFph2j8GH.png', '2018-06-07 18:06:48', '2018-06-15 12:31:05', null);
  6090. INSERT INTO `ibrand_goods_spec_relation` VALUES ('753', '118', '2', '17', '浅蓝色', '1', 'https://cdn.viperky.com/storage/images/20180607/d2HdZEM01M.png', '2018-06-07 18:06:48', '2018-06-15 12:31:05', null);
  6091. INSERT INTO `ibrand_goods_spec_relation` VALUES ('754', '118', '2', '25', '巴黎紫', '1', 'https://cdn.viperky.com/storage/images/20180607/QtsGFl4Y9p.png', '2018-06-07 18:06:48', '2018-06-15 12:31:05', null);
  6092. INSERT INTO `ibrand_goods_spec_relation` VALUES ('755', '118', '2', '34', '驼色', '1', 'https://cdn.viperky.com/storage/images/20180607/g4VVdqSWxl.png', '2018-06-07 18:06:48', '2018-06-15 12:31:05', null);
  6093. INSERT INTO `ibrand_goods_spec_relation` VALUES ('756', '118', '2', '37', '月光灰', '1', 'https://cdn.viperky.com/storage/images/20180607/BndkUwYGaO.png', '2018-06-07 18:06:48', '2018-06-15 12:31:05', null);
  6094. INSERT INTO `ibrand_goods_spec_relation` VALUES ('757', '118', '2', '38', '灰色', '1', 'https://cdn.viperky.com/storage/images/20180607/aIIUNOfFdU.png', '2018-06-07 18:06:48', '2018-06-15 12:31:05', null);
  6095. INSERT INTO `ibrand_goods_spec_relation` VALUES ('758', '118', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180607/fE8YjVhJRJ.png', '2018-06-07 18:06:48', '2018-06-15 12:31:05', null);
  6096. INSERT INTO `ibrand_goods_spec_relation` VALUES ('759', '118', '1', '40', '90', '2', '', '2018-06-07 18:06:48', '2018-06-15 12:31:05', null);
  6097. INSERT INTO `ibrand_goods_spec_relation` VALUES ('760', '118', '1', '41', '100', '2', '', '2018-06-07 18:06:48', '2018-06-15 12:31:05', null);
  6098. INSERT INTO `ibrand_goods_spec_relation` VALUES ('761', '118', '1', '42', '110', '2', '', '2018-06-07 18:06:48', '2018-06-15 12:31:05', null);
  6099. INSERT INTO `ibrand_goods_spec_relation` VALUES ('762', '118', '1', '43', '120', '2', '', '2018-06-07 18:06:48', '2018-06-15 12:31:05', null);
  6100. INSERT INTO `ibrand_goods_spec_relation` VALUES ('763', '118', '1', '44', '130', '2', '', '2018-06-07 18:06:48', '2018-06-15 12:31:05', null);
  6101. INSERT INTO `ibrand_goods_spec_relation` VALUES ('764', '118', '1', '45', '140', '2', '', '2018-06-07 18:06:48', '2018-06-15 12:31:05', null);
  6102. INSERT INTO `ibrand_goods_spec_relation` VALUES ('765', '118', '1', '48', '150cm', '2', '', '2018-06-07 18:06:48', '2018-06-15 12:31:05', null);
  6103. INSERT INTO `ibrand_goods_spec_relation` VALUES ('766', '118', '1', '49', '160cm', '2', '', '2018-06-07 18:06:48', '2018-06-15 12:31:05', null);
  6104. INSERT INTO `ibrand_goods_spec_relation` VALUES ('835', '123', '2', '6', '粉色', '1', 'https://cdn.viperky.com/storage/images/20180608/Wd0eR8H2VO.png', '2018-06-08 11:37:46', '2018-06-15 12:21:41', null);
  6105. INSERT INTO `ibrand_goods_spec_relation` VALUES ('836', '123', '2', '17', '复古绿', '1', 'https://cdn.viperky.com/storage/images/20180608/TX3MU7YfGT.png', '2018-06-08 11:37:46', '2018-06-15 12:21:41', null);
  6106. INSERT INTO `ibrand_goods_spec_relation` VALUES ('837', '123', '2', '19', '水蓝', '1', 'https://cdn.viperky.com/storage/images/20180608/pix6FJk6yu.png', '2018-06-08 11:37:46', '2018-06-15 12:21:41', null);
  6107. INSERT INTO `ibrand_goods_spec_relation` VALUES ('838', '123', '2', '24', '巴黎紫', '1', 'https://cdn.viperky.com/storage/images/20180608/iQmrfjfCZ5.png', '2018-06-08 11:37:46', '2018-06-15 12:21:41', null);
  6108. INSERT INTO `ibrand_goods_spec_relation` VALUES ('839', '123', '2', '34', '驼色', '1', 'https://cdn.viperky.com/storage/images/20180608/N9ZfP0MWPi.png', '2018-06-08 11:37:46', '2018-06-15 12:21:41', null);
  6109. INSERT INTO `ibrand_goods_spec_relation` VALUES ('840', '123', '2', '35', '月光灰', '1', 'https://cdn.viperky.com/storage/images/20180608/oiVSPCZWeh.png', '2018-06-08 11:37:46', '2018-06-15 12:21:41', null);
  6110. INSERT INTO `ibrand_goods_spec_relation` VALUES ('841', '123', '2', '38', '灰色', '1', 'https://cdn.viperky.com/storage/images/20180608/VyDgtcOYen.png', '2018-06-08 11:37:46', '2018-06-15 12:21:41', null);
  6111. INSERT INTO `ibrand_goods_spec_relation` VALUES ('842', '123', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180608/u8BZ2c1Bpn.png', '2018-06-08 11:37:46', '2018-06-15 12:21:41', null);
  6112. INSERT INTO `ibrand_goods_spec_relation` VALUES ('843', '123', '1', '40', '90', '2', '', '2018-06-08 11:37:46', '2018-06-15 12:21:41', null);
  6113. INSERT INTO `ibrand_goods_spec_relation` VALUES ('844', '123', '1', '41', '100', '2', '', '2018-06-08 11:37:46', '2018-06-15 12:21:41', null);
  6114. INSERT INTO `ibrand_goods_spec_relation` VALUES ('845', '123', '1', '42', '110', '2', '', '2018-06-08 11:37:46', '2018-06-15 12:21:41', null);
  6115. INSERT INTO `ibrand_goods_spec_relation` VALUES ('846', '123', '1', '43', '120', '2', '', '2018-06-08 11:37:46', '2018-06-15 12:21:41', null);
  6116. INSERT INTO `ibrand_goods_spec_relation` VALUES ('847', '123', '1', '44', '130', '2', '', '2018-06-08 11:37:46', '2018-06-15 12:21:41', null);
  6117. INSERT INTO `ibrand_goods_spec_relation` VALUES ('848', '123', '1', '45', '140', '2', '', '2018-06-08 11:37:46', '2018-06-15 12:21:41', null);
  6118. INSERT INTO `ibrand_goods_spec_relation` VALUES ('849', '123', '1', '48', '150', '2', '', '2018-06-08 11:37:46', '2018-06-15 12:21:41', null);
  6119. INSERT INTO `ibrand_goods_spec_relation` VALUES ('850', '123', '1', '49', '160', '2', '', '2018-06-08 11:37:46', '2018-06-15 12:21:41', null);
  6120. INSERT INTO `ibrand_goods_spec_relation` VALUES ('851', '124', '2', '1', '黑色', '1', 'https://cdn.viperky.com/storage/images/20180608/qDsttxtjFb.png', '2018-06-08 12:09:32', '2018-06-14 11:51:00', null);
  6121. INSERT INTO `ibrand_goods_spec_relation` VALUES ('852', '124', '2', '2', '杏粉', '1', 'https://cdn.viperky.com/storage/images/20180608/msTa6ugjkW.png', '2018-06-08 12:09:32', '2018-06-14 11:51:00', null);
  6122. INSERT INTO `ibrand_goods_spec_relation` VALUES ('853', '124', '2', '4', '粉色', '1', 'https://cdn.viperky.com/storage/images/20180608/9QaNQFD7uv.png', '2018-06-08 12:09:33', '2018-06-14 11:51:00', null);
  6123. INSERT INTO `ibrand_goods_spec_relation` VALUES ('854', '124', '2', '17', '复古绿', '1', 'https://cdn.viperky.com/storage/images/20180608/WWlYqQ7on8.png', '2018-06-08 12:09:33', '2018-06-14 11:51:00', null);
  6124. INSERT INTO `ibrand_goods_spec_relation` VALUES ('855', '124', '2', '24', '巴黎紫', '1', 'https://cdn.viperky.com/storage/images/20180608/nfs472yCcN.png', '2018-06-08 12:09:33', '2018-06-14 11:51:00', null);
  6125. INSERT INTO `ibrand_goods_spec_relation` VALUES ('856', '124', '2', '34', '驼色', '1', 'https://cdn.viperky.com/storage/images/20180608/BJrxiVmPla.png', '2018-06-08 12:09:33', '2018-06-14 11:51:00', null);
  6126. INSERT INTO `ibrand_goods_spec_relation` VALUES ('857', '124', '2', '35', '浅灰色', '1', 'https://cdn.viperky.com/storage/images/20180608/eMVlGWfrTB.png', '2018-06-08 12:09:33', '2018-06-14 11:51:00', null);
  6127. INSERT INTO `ibrand_goods_spec_relation` VALUES ('858', '124', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180608/HklQnij5NB.png', '2018-06-08 12:09:33', '2018-06-14 11:51:00', null);
  6128. INSERT INTO `ibrand_goods_spec_relation` VALUES ('859', '124', '1', '39', 'M', '2', '', '2018-06-08 12:09:33', '2018-06-14 11:51:00', null);
  6129. INSERT INTO `ibrand_goods_spec_relation` VALUES ('860', '124', '1', '40', 'L', '2', '', '2018-06-08 12:09:33', '2018-06-14 11:51:00', null);
  6130. INSERT INTO `ibrand_goods_spec_relation` VALUES ('861', '124', '1', '41', 'XL', '2', '', '2018-06-08 12:09:33', '2018-06-14 11:51:00', null);
  6131. INSERT INTO `ibrand_goods_spec_relation` VALUES ('862', '124', '1', '42', 'XXL', '2', '', '2018-06-08 12:09:33', '2018-06-14 11:51:00', null);
  6132. INSERT INTO `ibrand_goods_spec_relation` VALUES ('863', '125', '2', '1', '黑色', '1', 'https://cdn.viperky.com/storage/images/20180608/eocHhPNCt1.png', '2018-06-08 14:11:14', '2018-06-08 14:15:05', null);
  6133. INSERT INTO `ibrand_goods_spec_relation` VALUES ('864', '125', '2', '4', '粉色', '1', 'https://cdn.viperky.com/storage/images/20180608/oweYMwsorh.png', '2018-06-08 14:11:14', '2018-06-08 14:15:05', null);
  6134. INSERT INTO `ibrand_goods_spec_relation` VALUES ('865', '125', '2', '17', '复古绿', '1', 'https://cdn.viperky.com/storage/images/20180608/xpCyk1xo4Z.png', '2018-06-08 14:11:14', '2018-06-08 14:15:05', null);
  6135. INSERT INTO `ibrand_goods_spec_relation` VALUES ('866', '125', '2', '24', '巴黎紫', '1', 'https://cdn.viperky.com/storage/images/20180608/aR0kLFlDDO.png', '2018-06-08 14:11:14', '2018-06-08 14:15:05', null);
  6136. INSERT INTO `ibrand_goods_spec_relation` VALUES ('867', '125', '2', '34', '驼色', '1', 'https://cdn.viperky.com/storage/images/20180608/bjC79JcfJS.png', '2018-06-08 14:11:14', '2018-06-08 14:15:05', null);
  6137. INSERT INTO `ibrand_goods_spec_relation` VALUES ('868', '125', '2', '35', '灰色', '1', 'https://cdn.viperky.com/storage/images/20180608/nisAQRydks.png', '2018-06-08 14:11:14', '2018-06-08 14:15:05', null);
  6138. INSERT INTO `ibrand_goods_spec_relation` VALUES ('869', '125', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180608/OHuyQXOTal.png', '2018-06-08 14:11:14', '2018-06-08 14:15:05', null);
  6139. INSERT INTO `ibrand_goods_spec_relation` VALUES ('870', '125', '1', '39', 'M', '2', '', '2018-06-08 14:11:14', '2018-06-08 14:15:05', null);
  6140. INSERT INTO `ibrand_goods_spec_relation` VALUES ('871', '125', '1', '40', 'L', '2', '', '2018-06-08 14:11:14', '2018-06-08 14:15:05', null);
  6141. INSERT INTO `ibrand_goods_spec_relation` VALUES ('872', '125', '1', '41', 'XL', '2', '', '2018-06-08 14:11:14', '2018-06-08 14:15:05', null);
  6142. INSERT INTO `ibrand_goods_spec_relation` VALUES ('873', '125', '1', '42', 'XXL', '2', '', '2018-06-08 14:11:14', '2018-06-08 14:15:05', null);
  6143. INSERT INTO `ibrand_goods_spec_relation` VALUES ('874', '125', '1', '43', '120', '2', '', '2018-06-08 14:11:14', '2018-06-08 14:15:05', null);
  6144. INSERT INTO `ibrand_goods_spec_relation` VALUES ('875', '125', '1', '44', '130', '2', '', '2018-06-08 14:11:14', '2018-06-08 14:15:05', null);
  6145. INSERT INTO `ibrand_goods_spec_relation` VALUES ('876', '126', '2', '1', '黑色', '1', 'https://cdn.viperky.com/storage/images/20180608/ypfG4WzdLH.png', '2018-06-08 14:46:08', '2018-06-08 15:15:32', null);
  6146. INSERT INTO `ibrand_goods_spec_relation` VALUES ('877', '126', '2', '8', '酒红色', '1', 'https://cdn.viperky.com/storage/images/20180608/OIbBG5mA7e.png', '2018-06-08 14:46:08', '2018-06-08 15:15:32', null);
  6147. INSERT INTO `ibrand_goods_spec_relation` VALUES ('878', '126', '2', '14', '天蓝色', '1', 'https://cdn.viperky.com/storage/images/20180608/dMQYhi0Dom.png', '2018-06-08 14:46:08', '2018-06-08 15:15:32', null);
  6148. INSERT INTO `ibrand_goods_spec_relation` VALUES ('879', '126', '2', '18', '牛仔蓝', '1', 'https://cdn.viperky.com/storage/images/20180608/Rj8IuoEEm6.png', '2018-06-08 14:46:08', '2018-06-08 15:15:32', null);
  6149. INSERT INTO `ibrand_goods_spec_relation` VALUES ('880', '126', '2', '21', '藏青色', '1', 'https://cdn.viperky.com/storage/images/20180608/bBBEWLTiWp.png', '2018-06-08 14:46:08', '2018-06-08 15:15:32', null);
  6150. INSERT INTO `ibrand_goods_spec_relation` VALUES ('881', '126', '2', '35', '灰色', '1', 'https://cdn.viperky.com/storage/images/20180608/M4kbMZVYmG.png', '2018-06-08 14:46:08', '2018-06-08 15:15:32', null);
  6151. INSERT INTO `ibrand_goods_spec_relation` VALUES ('882', '126', '2', '37', '月光灰', '1', 'https://cdn.viperky.com/storage/images/20180608/x1KlQChVbP.png', '2018-06-08 14:46:08', '2018-06-08 15:15:32', null);
  6152. INSERT INTO `ibrand_goods_spec_relation` VALUES ('883', '126', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180608/qRiWNCON3s.png', '2018-06-08 14:46:08', '2018-06-08 15:15:32', null);
  6153. INSERT INTO `ibrand_goods_spec_relation` VALUES ('884', '126', '1', '39', 'M', '2', '', '2018-06-08 14:46:08', '2018-06-08 15:15:32', null);
  6154. INSERT INTO `ibrand_goods_spec_relation` VALUES ('885', '126', '1', '40', 'L', '2', '', '2018-06-08 14:46:08', '2018-06-08 15:15:32', null);
  6155. INSERT INTO `ibrand_goods_spec_relation` VALUES ('886', '126', '1', '41', 'XL', '2', '', '2018-06-08 14:46:08', '2018-06-08 15:15:32', null);
  6156. INSERT INTO `ibrand_goods_spec_relation` VALUES ('887', '126', '1', '42', 'XXL', '2', '', '2018-06-08 14:46:08', '2018-06-08 15:15:32', null);
  6157. INSERT INTO `ibrand_goods_spec_relation` VALUES ('888', '126', '1', '43', 'XXXL', '2', '', '2018-06-08 14:46:08', '2018-06-08 15:15:32', null);
  6158. INSERT INTO `ibrand_goods_spec_relation` VALUES ('889', '127', '2', '1', '黑色', '1', 'https://cdn.viperky.com/storage/images/20180608/phmsArBsqd.png', '2018-06-08 15:07:42', '2018-06-11 13:07:32', null);
  6159. INSERT INTO `ibrand_goods_spec_relation` VALUES ('890', '127', '2', '8', '酒红色', '1', 'https://cdn.viperky.com/storage/images/20180608/vxj3lfB1yl.png', '2018-06-08 15:07:42', '2018-06-11 13:07:32', null);
  6160. INSERT INTO `ibrand_goods_spec_relation` VALUES ('891', '127', '2', '18', '牛仔蓝', '1', 'https://cdn.viperky.com/storage/images/20180608/n1KnDPF54n.png', '2018-06-08 15:07:42', '2018-06-11 13:07:32', null);
  6161. INSERT INTO `ibrand_goods_spec_relation` VALUES ('892', '127', '2', '21', '藏青色', '1', 'https://cdn.viperky.com/storage/images/20180608/eIVdCFkfFv.png', '2018-06-08 15:07:42', '2018-06-11 13:07:32', null);
  6162. INSERT INTO `ibrand_goods_spec_relation` VALUES ('893', '127', '2', '35', '月光灰', '1', 'https://cdn.viperky.com/storage/images/20180608/3EjJAFpyie.png', '2018-06-08 15:07:42', '2018-06-11 13:07:32', null);
  6163. INSERT INTO `ibrand_goods_spec_relation` VALUES ('894', '127', '2', '37', '灰色', '1', 'https://cdn.viperky.com/storage/images/20180608/PmtjfZK7ai.png', '2018-06-08 15:07:42', '2018-06-11 13:07:32', null);
  6164. INSERT INTO `ibrand_goods_spec_relation` VALUES ('895', '127', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180608/zYezWeaITB.png', '2018-06-08 15:07:42', '2018-06-11 13:07:32', null);
  6165. INSERT INTO `ibrand_goods_spec_relation` VALUES ('896', '127', '1', '39', 'M', '2', '', '2018-06-08 15:07:42', '2018-06-11 13:07:32', null);
  6166. INSERT INTO `ibrand_goods_spec_relation` VALUES ('897', '127', '1', '40', 'L', '2', '', '2018-06-08 15:07:42', '2018-06-11 13:07:32', null);
  6167. INSERT INTO `ibrand_goods_spec_relation` VALUES ('898', '127', '1', '41', 'XL', '2', '', '2018-06-08 15:07:42', '2018-06-11 13:07:32', null);
  6168. INSERT INTO `ibrand_goods_spec_relation` VALUES ('899', '127', '1', '42', 'XXL', '2', '', '2018-06-08 15:07:42', '2018-06-11 13:07:32', null);
  6169. INSERT INTO `ibrand_goods_spec_relation` VALUES ('900', '127', '1', '43', 'XXXL', '2', '', '2018-06-08 15:07:42', '2018-06-11 13:07:32', null);
  6170. INSERT INTO `ibrand_goods_spec_relation` VALUES ('925', '130', '2', '1', '黑色', '1', 'https://cdn.viperky.com/storage/images/20180611/bMJbVAmT6l.png', '2018-06-11 13:21:49', '2018-06-15 11:32:15', null);
  6171. INSERT INTO `ibrand_goods_spec_relation` VALUES ('926', '130', '2', '8', '酒红色', '1', 'https://cdn.viperky.com/storage/images/20180611/E7HPMMx87x.png', '2018-06-11 13:21:49', '2018-06-15 11:32:15', null);
  6172. INSERT INTO `ibrand_goods_spec_relation` VALUES ('927', '130', '2', '18', '牛仔蓝', '1', 'https://cdn.viperky.com/storage/images/20180611/M9px9IZAkK.png', '2018-06-11 13:21:49', '2018-06-15 11:32:15', null);
  6173. INSERT INTO `ibrand_goods_spec_relation` VALUES ('928', '130', '2', '21', '藏青色', '1', 'https://cdn.viperky.com/storage/images/20180611/xZOWcrRGHY.png', '2018-06-11 13:21:49', '2018-06-15 11:32:15', null);
  6174. INSERT INTO `ibrand_goods_spec_relation` VALUES ('929', '130', '2', '35', '月光灰', '1', 'https://cdn.viperky.com/storage/images/20180611/21s60dTBtb.png', '2018-06-11 13:21:49', '2018-06-15 11:32:15', null);
  6175. INSERT INTO `ibrand_goods_spec_relation` VALUES ('930', '130', '2', '37', '灰色', '1', 'https://cdn.viperky.com/storage/images/20180611/Z2KXFPyTpO.png', '2018-06-11 13:21:49', '2018-06-15 11:32:15', null);
  6176. INSERT INTO `ibrand_goods_spec_relation` VALUES ('931', '130', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180611/vSr8NA2hfQ.png', '2018-06-11 13:21:49', '2018-06-15 11:32:15', null);
  6177. INSERT INTO `ibrand_goods_spec_relation` VALUES ('932', '130', '1', '39', 'M', '2', '', '2018-06-11 13:21:49', '2018-06-15 11:32:15', null);
  6178. INSERT INTO `ibrand_goods_spec_relation` VALUES ('933', '130', '1', '40', 'L', '2', '', '2018-06-11 13:21:49', '2018-06-15 11:32:15', null);
  6179. INSERT INTO `ibrand_goods_spec_relation` VALUES ('934', '130', '1', '41', 'XL', '2', '', '2018-06-11 13:21:49', '2018-06-15 11:32:15', null);
  6180. INSERT INTO `ibrand_goods_spec_relation` VALUES ('935', '130', '1', '42', 'XXL', '2', '', '2018-06-11 13:21:49', '2018-06-15 11:32:15', null);
  6181. INSERT INTO `ibrand_goods_spec_relation` VALUES ('936', '130', '1', '43', 'XXXL', '2', '', '2018-06-11 13:21:49', '2018-06-15 11:32:15', null);
  6182. INSERT INTO `ibrand_goods_spec_relation` VALUES ('937', '131', '2', '1', '黑色', '1', 'https://cdn.viperky.com/storage/images/20180611/9hrNeCfHUB.png', '2018-06-11 13:33:45', '2018-06-15 12:34:44', null);
  6183. INSERT INTO `ibrand_goods_spec_relation` VALUES ('938', '131', '2', '8', '酒红色', '1', 'https://cdn.viperky.com/storage/images/20180611/JfBhVUSuhq.png', '2018-06-11 13:33:45', '2018-06-15 12:34:44', null);
  6184. INSERT INTO `ibrand_goods_spec_relation` VALUES ('939', '131', '2', '14', '天蓝色', '1', 'https://cdn.viperky.com/storage/images/20180611/p1grKLqtSB.png', '2018-06-11 13:33:45', '2018-06-15 12:34:44', null);
  6185. INSERT INTO `ibrand_goods_spec_relation` VALUES ('940', '131', '2', '18', '牛仔蓝', '1', 'https://cdn.viperky.com/storage/images/20180611/aytiy4k94H.png', '2018-06-11 13:33:45', '2018-06-15 12:34:44', null);
  6186. INSERT INTO `ibrand_goods_spec_relation` VALUES ('941', '131', '2', '21', '藏青色', '1', 'https://cdn.viperky.com/storage/images/20180611/qTTV9cHucI.png', '2018-06-11 13:33:45', '2018-06-15 12:34:44', null);
  6187. INSERT INTO `ibrand_goods_spec_relation` VALUES ('942', '131', '2', '35', '灰色', '1', 'https://cdn.viperky.com/storage/images/20180611/HSrv6JfAqS.png', '2018-06-11 13:33:45', '2018-06-15 12:34:44', null);
  6188. INSERT INTO `ibrand_goods_spec_relation` VALUES ('943', '131', '2', '37', '月光灰', '1', 'https://cdn.viperky.com/storage/images/20180611/cwz4m11J3s.png', '2018-06-11 13:33:45', '2018-06-15 12:34:44', null);
  6189. INSERT INTO `ibrand_goods_spec_relation` VALUES ('944', '131', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180611/511UV2aWSs.png', '2018-06-11 13:33:45', '2018-06-15 12:34:44', null);
  6190. INSERT INTO `ibrand_goods_spec_relation` VALUES ('945', '131', '1', '39', 'M', '2', '', '2018-06-11 13:33:45', '2018-06-15 12:34:44', null);
  6191. INSERT INTO `ibrand_goods_spec_relation` VALUES ('946', '131', '1', '40', 'L', '2', '', '2018-06-11 13:33:45', '2018-06-15 12:34:44', null);
  6192. INSERT INTO `ibrand_goods_spec_relation` VALUES ('947', '131', '1', '41', 'XL', '2', '', '2018-06-11 13:33:45', '2018-06-15 12:34:44', null);
  6193. INSERT INTO `ibrand_goods_spec_relation` VALUES ('948', '131', '1', '42', 'XXL', '2', '', '2018-06-11 13:33:45', '2018-06-15 12:34:44', null);
  6194. INSERT INTO `ibrand_goods_spec_relation` VALUES ('949', '131', '1', '43', 'XXXL', '2', '', '2018-06-11 13:33:45', '2018-06-15 12:34:44', null);
  6195. INSERT INTO `ibrand_goods_spec_relation` VALUES ('950', '132', '2', '1', '黑色', '1', 'https://cdn.viperky.com/storage/images/20180611/OnQiW3irlq.png', '2018-06-11 13:46:21', '2018-06-15 11:38:03', null);
  6196. INSERT INTO `ibrand_goods_spec_relation` VALUES ('951', '132', '2', '4', '粉色', '1', 'https://cdn.viperky.com/storage/images/20180611/y3Sdt9Ctip.png', '2018-06-11 13:46:21', '2018-06-15 11:38:03', null);
  6197. INSERT INTO `ibrand_goods_spec_relation` VALUES ('952', '132', '2', '17', '复古绿 ', '1', 'https://cdn.viperky.com/storage/images/20180611/JMK3hBmwCM.png', '2018-06-11 13:46:21', '2018-06-15 11:38:03', null);
  6198. INSERT INTO `ibrand_goods_spec_relation` VALUES ('953', '132', '2', '24', '巴黎紫', '1', 'https://cdn.viperky.com/storage/images/20180611/Fxw4qjyATs.png', '2018-06-11 13:46:21', '2018-06-15 11:38:03', null);
  6199. INSERT INTO `ibrand_goods_spec_relation` VALUES ('954', '132', '2', '34', '驼色', '1', 'https://cdn.viperky.com/storage/images/20180611/juC7okyVZ0.png', '2018-06-11 13:46:21', '2018-06-15 11:38:03', null);
  6200. INSERT INTO `ibrand_goods_spec_relation` VALUES ('955', '132', '2', '35', '灰色', '1', 'https://cdn.viperky.com/storage/images/20180611/RkfLK3hKFr.png', '2018-06-11 13:46:21', '2018-06-15 11:38:03', null);
  6201. INSERT INTO `ibrand_goods_spec_relation` VALUES ('956', '132', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180611/bDN93NyKgf.png', '2018-06-11 13:46:21', '2018-06-15 11:38:03', null);
  6202. INSERT INTO `ibrand_goods_spec_relation` VALUES ('957', '132', '1', '39', 'M', '2', '', '2018-06-11 13:46:21', '2018-06-15 11:38:03', null);
  6203. INSERT INTO `ibrand_goods_spec_relation` VALUES ('958', '132', '1', '40', 'L', '2', '', '2018-06-11 13:46:21', '2018-06-15 11:38:03', null);
  6204. INSERT INTO `ibrand_goods_spec_relation` VALUES ('959', '132', '1', '41', 'XL', '2', '', '2018-06-11 13:46:21', '2018-06-15 11:38:03', null);
  6205. INSERT INTO `ibrand_goods_spec_relation` VALUES ('960', '132', '1', '42', 'XXL', '2', '', '2018-06-11 13:46:21', '2018-06-15 11:38:03', null);
  6206. INSERT INTO `ibrand_goods_spec_relation` VALUES ('961', '133', '2', '1', '黑色', '1', 'https://cdn.viperky.com/storage/images/20180611/8spo65Sm40.png', '2018-06-11 13:59:57', '2018-06-15 11:36:48', null);
  6207. INSERT INTO `ibrand_goods_spec_relation` VALUES ('962', '133', '2', '2', '杏粉', '1', 'https://cdn.viperky.com/storage/images/20180611/x6MwYwoSvf.png', '2018-06-11 13:59:57', '2018-06-15 11:36:48', null);
  6208. INSERT INTO `ibrand_goods_spec_relation` VALUES ('963', '133', '2', '4', '粉红色', '1', 'https://cdn.viperky.com/storage/images/20180611/z2aGBbUnrB.png', '2018-06-11 13:59:57', '2018-06-15 11:36:48', null);
  6209. INSERT INTO `ibrand_goods_spec_relation` VALUES ('964', '133', '2', '17', '复古绿', '1', 'https://cdn.viperky.com/storage/images/20180611/RrSORr2A5X.png', '2018-06-11 13:59:57', '2018-06-15 11:36:48', null);
  6210. INSERT INTO `ibrand_goods_spec_relation` VALUES ('965', '133', '2', '24', '巴黎紫', '1', 'https://cdn.viperky.com/storage/images/20180611/izQzzTifY9.png', '2018-06-11 13:59:57', '2018-06-15 11:36:48', null);
  6211. INSERT INTO `ibrand_goods_spec_relation` VALUES ('966', '133', '2', '34', '驼色', '1', 'https://cdn.viperky.com/storage/images/20180611/srsDEOpn5o.png', '2018-06-11 13:59:57', '2018-06-15 11:36:48', null);
  6212. INSERT INTO `ibrand_goods_spec_relation` VALUES ('967', '133', '2', '35', '浅灰色', '1', 'https://cdn.viperky.com/storage/images/20180611/UjCP2l7gRK.png', '2018-06-11 13:59:57', '2018-06-15 11:36:48', null);
  6213. INSERT INTO `ibrand_goods_spec_relation` VALUES ('968', '133', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180611/3nSWJoDJEp.png', '2018-06-11 13:59:57', '2018-06-15 11:36:48', null);
  6214. INSERT INTO `ibrand_goods_spec_relation` VALUES ('969', '133', '1', '39', 'M', '2', '', '2018-06-11 13:59:57', '2018-06-15 11:36:48', null);
  6215. INSERT INTO `ibrand_goods_spec_relation` VALUES ('970', '133', '1', '40', 'L', '2', '', '2018-06-11 13:59:58', '2018-06-15 11:36:48', null);
  6216. INSERT INTO `ibrand_goods_spec_relation` VALUES ('971', '133', '1', '41', 'XL', '2', '', '2018-06-11 13:59:58', '2018-06-15 11:36:48', null);
  6217. INSERT INTO `ibrand_goods_spec_relation` VALUES ('972', '133', '1', '42', 'XXL', '2', '', '2018-06-11 13:59:58', '2018-06-15 11:36:48', null);
  6218. INSERT INTO `ibrand_goods_spec_relation` VALUES ('973', '134', '2', '4', '豆粉', '1', 'https://cdn.viperky.com/storage/images/20180807/cg0mhjeIrx.png', '2018-08-07 21:27:29', '2018-09-11 18:13:06', null);
  6219. INSERT INTO `ibrand_goods_spec_relation` VALUES ('974', '134', '2', '34', '杏色', '1', 'https://cdn.viperky.com/storage/images/20180807/S7PHMJHIU1.png', '2018-08-07 21:27:29', '2018-09-11 18:13:06', null);
  6220. INSERT INTO `ibrand_goods_spec_relation` VALUES ('975', '134', '2', '37', '灰色', '1', 'https://cdn.viperky.com/storage/images/20180807/W6ZmCIVbLP.png', '2018-08-07 21:27:29', '2018-09-11 18:13:06', null);
  6221. INSERT INTO `ibrand_goods_spec_relation` VALUES ('976', '134', '1', '40', '90', '2', '', '2018-08-07 21:27:29', '2018-09-11 18:13:06', null);
  6222. INSERT INTO `ibrand_goods_spec_relation` VALUES ('977', '134', '1', '41', '100', '2', '', '2018-08-07 21:27:29', '2018-09-11 18:13:06', null);
  6223. INSERT INTO `ibrand_goods_spec_relation` VALUES ('978', '134', '1', '42', '110', '2', '', '2018-08-07 21:27:29', '2018-09-11 18:13:06', null);
  6224. INSERT INTO `ibrand_goods_spec_relation` VALUES ('979', '134', '1', '43', '120', '2', '', '2018-08-07 21:27:29', '2018-09-11 18:13:06', null);
  6225. INSERT INTO `ibrand_goods_spec_relation` VALUES ('980', '134', '1', '44', '130', '2', '', '2018-08-07 21:27:29', '2018-09-11 18:13:06', null);
  6226. INSERT INTO `ibrand_goods_spec_relation` VALUES ('981', '135', '2', '21', '藏蓝色', '1', 'https://cdn.viperky.com/storage/images/20180807/FCTgIrVsne.png', '2018-08-07 21:41:32', '2018-09-11 16:49:54', null);
  6227. INSERT INTO `ibrand_goods_spec_relation` VALUES ('982', '135', '1', '40', '90', '2', '', '2018-08-07 21:41:32', '2018-09-11 16:49:54', null);
  6228. INSERT INTO `ibrand_goods_spec_relation` VALUES ('983', '135', '1', '41', '100', '2', '', '2018-08-07 21:41:32', '2018-09-11 16:49:54', null);
  6229. INSERT INTO `ibrand_goods_spec_relation` VALUES ('984', '135', '1', '42', '110', '2', '', '2018-08-07 21:41:32', '2018-09-11 16:49:54', null);
  6230. INSERT INTO `ibrand_goods_spec_relation` VALUES ('985', '135', '1', '43', '120', '2', '', '2018-08-07 21:41:32', '2018-09-11 16:49:54', null);
  6231. INSERT INTO `ibrand_goods_spec_relation` VALUES ('986', '135', '1', '44', '130', '2', '', '2018-08-07 21:41:32', '2018-09-11 16:49:54', null);
  6232. INSERT INTO `ibrand_goods_spec_relation` VALUES ('987', '136', '2', '10', '绿色', '1', 'https://cdn.viperky.com/storage/images/20180808/KqykOeacR7.png', '2018-08-08 21:25:04', '2018-08-20 17:01:55', null);
  6233. INSERT INTO `ibrand_goods_spec_relation` VALUES ('988', '136', '2', '28', '杏色', '1', 'https://cdn.viperky.com/storage/images/20180808/3jB7nLnpbp.png', '2018-08-08 21:25:04', '2018-08-20 17:01:55', null);
  6234. INSERT INTO `ibrand_goods_spec_relation` VALUES ('989', '136', '1', '40', '90', '2', '', '2018-08-08 21:25:04', '2018-08-20 17:01:55', null);
  6235. INSERT INTO `ibrand_goods_spec_relation` VALUES ('990', '136', '1', '41', '100', '2', '', '2018-08-08 21:25:04', '2018-08-20 17:01:55', null);
  6236. INSERT INTO `ibrand_goods_spec_relation` VALUES ('991', '136', '1', '42', '110', '2', '', '2018-08-08 21:25:04', '2018-08-20 17:01:55', null);
  6237. INSERT INTO `ibrand_goods_spec_relation` VALUES ('992', '136', '1', '43', '120', '2', '', '2018-08-08 21:25:04', '2018-08-20 17:01:55', null);
  6238. INSERT INTO `ibrand_goods_spec_relation` VALUES ('993', '136', '1', '44', '130', '2', '', '2018-08-08 21:25:04', '2018-08-20 17:01:55', null);
  6239. INSERT INTO `ibrand_goods_spec_relation` VALUES ('994', '136', '1', '45', '140', '2', '', '2018-08-08 21:25:04', '2018-08-20 17:01:55', null);
  6240. INSERT INTO `ibrand_goods_spec_relation` VALUES ('995', '137', '2', '34', '米色', '1', 'https://cdn.viperky.com/storage/images/20180808/I49N9FukN4.png', '2018-08-08 21:38:02', '2018-09-11 16:50:17', null);
  6241. INSERT INTO `ibrand_goods_spec_relation` VALUES ('996', '137', '1', '40', '90', '2', '', '2018-08-08 21:38:02', '2018-09-11 16:50:17', null);
  6242. INSERT INTO `ibrand_goods_spec_relation` VALUES ('997', '137', '1', '41', '100', '2', '', '2018-08-08 21:38:02', '2018-09-11 16:50:17', null);
  6243. INSERT INTO `ibrand_goods_spec_relation` VALUES ('998', '137', '1', '42', '110', '2', '', '2018-08-08 21:38:02', '2018-09-11 16:50:17', null);
  6244. INSERT INTO `ibrand_goods_spec_relation` VALUES ('999', '137', '1', '43', '120', '2', '', '2018-08-08 21:38:02', '2018-09-11 16:50:17', null);
  6245. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1000', '137', '1', '44', '130', '2', '', '2018-08-08 21:38:02', '2018-09-11 16:50:17', null);
  6246. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1001', '138', '2', '4', '玫粉', '1', 'https://cdn.viperky.com/storage/images/20180808/COuT27q8vR.png', '2018-08-08 22:04:04', '2018-08-10 16:58:11', null);
  6247. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1002', '138', '2', '18', '蓝色', '1', 'https://cdn.viperky.com/storage/images/20180808/eDElBJqkEa.png', '2018-08-08 22:04:04', '2018-08-10 16:58:11', null);
  6248. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1003', '138', '2', '34', '杏色', '1', 'https://cdn.viperky.com/storage/images/20180808/nv0HjU8nzb.png', '2018-08-08 22:04:04', '2018-08-10 16:58:11', null);
  6249. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1004', '138', '2', '47', '姜黄', '1', 'https://cdn.viperky.com/storage/images/20180808/41Ji59ptQg.png', '2018-08-08 22:04:04', '2018-08-10 16:58:11', null);
  6250. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1005', '138', '1', '39', '80', '2', '', '2018-08-08 22:04:04', '2018-08-10 16:58:11', null);
  6251. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1006', '138', '1', '40', '90', '2', '', '2018-08-08 22:04:04', '2018-08-10 16:58:11', null);
  6252. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1007', '138', '1', '41', '100', '2', '', '2018-08-08 22:04:04', '2018-08-10 16:58:11', null);
  6253. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1008', '138', '1', '42', '110', '2', '', '2018-08-08 22:04:04', '2018-08-10 16:58:11', null);
  6254. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1009', '138', '1', '43', '120', '2', '', '2018-08-08 22:04:04', '2018-08-10 16:58:11', null);
  6255. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1010', '138', '1', '44', '130', '2', '', '2018-08-08 22:04:04', '2018-08-10 16:58:11', null);
  6256. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1011', '139', '2', '1', '黑细格', '1', 'https://cdn.viperky.com/storage/images/20180809/jAcOj4rmzc.png', '2018-08-09 10:37:53', '2018-08-23 10:24:26', null);
  6257. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1012', '139', '2', '5', '红细格', '1', 'https://cdn.viperky.com/storage/images/20180809/G7oXX7jS57.png', '2018-08-09 10:37:53', '2018-08-23 10:24:26', null);
  6258. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1013', '139', '1', '40', '90', '2', '', '2018-08-09 10:37:53', '2018-08-23 10:24:26', null);
  6259. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1014', '139', '1', '41', '100', '2', '', '2018-08-09 10:37:53', '2018-08-23 10:24:26', null);
  6260. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1015', '139', '1', '42', '110', '2', '', '2018-08-09 10:37:53', '2018-08-23 10:24:26', null);
  6261. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1016', '139', '1', '43', '120', '2', '', '2018-08-09 10:37:53', '2018-08-23 10:24:26', null);
  6262. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1017', '139', '1', '44', '130', '2', '', '2018-08-09 10:37:53', '2018-08-23 10:24:26', null);
  6263. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1018', '140', '2', '1', '黑色', '1', 'https://cdn.viperky.com/storage/images/20180809/QN4KIlhjwU.png', '2018-08-09 10:56:21', '2018-08-10 16:57:14', null);
  6264. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1019', '140', '2', '7', '锈红', '1', 'https://cdn.viperky.com/storage/images/20180809/nBovv0rwYY.png', '2018-08-09 10:56:21', '2018-08-10 16:57:14', null);
  6265. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1020', '140', '2', '22', '米色', '1', 'https://cdn.viperky.com/storage/images/20180809/CL4WxjqheO.png', '2018-08-09 10:56:21', '2018-08-10 16:57:14', null);
  6266. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1021', '140', '2', '34', '驼色', '1', 'https://cdn.viperky.com/storage/images/20180809/JcmUjd3ldp.png', '2018-08-09 10:56:21', '2018-08-10 16:57:14', null);
  6267. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1022', '140', '2', '37', '灰色', '1', 'https://cdn.viperky.com/storage/images/20180809/MFvA5Srzlc.png', '2018-08-09 10:56:21', '2018-08-10 16:57:14', null);
  6268. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1023', '140', '1', '40', '90', '2', '', '2018-08-09 10:56:21', '2018-08-10 16:57:14', null);
  6269. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1024', '140', '1', '41', '100', '2', '', '2018-08-09 10:56:21', '2018-08-10 16:57:14', null);
  6270. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1025', '140', '1', '42', '110', '2', '', '2018-08-09 10:56:21', '2018-08-10 16:57:14', null);
  6271. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1026', '140', '1', '43', '120', '2', '', '2018-08-09 10:56:21', '2018-08-10 16:57:14', null);
  6272. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1027', '140', '1', '44', '130', '2', '', '2018-08-09 10:56:21', '2018-08-10 16:57:14', null);
  6273. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1028', '141', '2', '2', '橘粉', '1', 'https://cdn.viperky.com/storage/images/20180810/uALNRrO3B3.png', '2018-08-10 10:53:53', '2018-08-20 17:01:28', null);
  6274. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1029', '141', '2', '9', '军绿', '1', 'https://cdn.viperky.com/storage/images/20180810/uALNRrO3B3.png', '2018-08-10 10:53:53', '2018-08-20 17:01:28', null);
  6275. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1030', '141', '1', '40', '90', '2', '', '2018-08-10 10:53:53', '2018-08-20 17:01:28', null);
  6276. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1031', '141', '1', '41', '100', '2', '', '2018-08-10 10:53:53', '2018-08-20 17:01:28', null);
  6277. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1032', '141', '1', '42', '110', '2', '', '2018-08-10 10:53:53', '2018-08-20 17:01:28', null);
  6278. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1033', '141', '1', '43', '120', '2', '', '2018-08-10 10:53:54', '2018-08-20 17:01:28', null);
  6279. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1034', '141', '1', '44', '130', '2', '', '2018-08-10 10:53:54', '2018-08-20 17:01:28', null);
  6280. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1035', '141', '1', '45', '140', '2', '', '2018-08-10 10:53:54', '2018-08-20 17:01:28', null);
  6281. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1036', '142', '2', '34', '卡其', '1', 'https://cdn.viperky.com/storage/images/20180810/InsiGNqilu.png', '2018-08-10 11:04:09', '2018-08-20 17:01:19', null);
  6282. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1037', '142', '2', '37', '灰色', '1', 'https://cdn.viperky.com/storage/images/20180810/Ke42CobgUL.png', '2018-08-10 11:04:09', '2018-08-20 17:01:19', null);
  6283. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1038', '142', '1', '40', '90', '2', '', '2018-08-10 11:04:09', '2018-08-20 17:01:19', null);
  6284. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1039', '142', '1', '41', '100', '2', '', '2018-08-10 11:04:09', '2018-08-20 17:01:19', null);
  6285. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1040', '142', '1', '42', '110', '2', '', '2018-08-10 11:04:09', '2018-08-20 17:01:19', null);
  6286. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1041', '142', '1', '43', '120', '2', '', '2018-08-10 11:04:09', '2018-08-20 17:01:19', null);
  6287. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1042', '142', '1', '44', '130', '2', '', '2018-08-10 11:04:09', '2018-08-20 17:01:19', null);
  6288. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1043', '143', '2', '2', '桔色', '1', 'https://cdn.viperky.com/storage/images/20180810/4ovGN5xQQQ.png', '2018-08-10 16:19:09', '2018-08-20 17:00:27', null);
  6289. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1044', '143', '2', '9', '绿色', '1', 'https://cdn.viperky.com/storage/images/20180810/vgc6zZAQqz.png', '2018-08-10 16:19:09', '2018-08-20 17:00:27', null);
  6290. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1045', '143', '1', '40', '90', '2', '', '2018-08-10 16:19:09', '2018-08-20 17:00:27', null);
  6291. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1046', '143', '1', '41', '100', '2', '', '2018-08-10 16:19:09', '2018-08-20 17:00:27', null);
  6292. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1047', '143', '1', '42', '110', '2', '', '2018-08-10 16:19:09', '2018-08-20 17:00:27', null);
  6293. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1048', '143', '1', '43', '120', '2', '', '2018-08-10 16:19:09', '2018-08-20 17:00:27', null);
  6294. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1049', '143', '1', '44', '130', '2', '', '2018-08-10 16:19:09', '2018-08-20 17:00:27', null);
  6295. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1050', '144', '2', '9', '军绿色', '1', 'https://cdn.viperky.com/storage/images/20180810/snkyhGlEqx.png', '2018-08-10 16:49:29', '2018-08-16 16:51:16', null);
  6296. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1051', '144', '2', '34', '驼色', '1', 'https://cdn.viperky.com/storage/images/20180810/TFslEXOIVF.png', '2018-08-10 16:49:29', '2018-08-16 16:51:16', null);
  6297. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1052', '144', '1', '40', '90', '2', '', '2018-08-10 16:49:29', '2018-08-16 16:51:16', null);
  6298. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1053', '144', '1', '41', '100', '2', '', '2018-08-10 16:49:29', '2018-08-16 16:51:16', null);
  6299. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1054', '144', '1', '42', '110', '2', '', '2018-08-10 16:49:29', '2018-08-16 16:51:16', null);
  6300. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1055', '144', '1', '44', '130', '2', '', '2018-08-10 16:49:29', '2018-08-16 16:51:16', null);
  6301. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1056', '145', '2', '9', '军绿色', '1', 'https://cdn.viperky.com/storage/images/20180810/dTeurVZk4b.png', '2018-08-10 17:24:45', '2018-08-16 16:57:05', null);
  6302. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1057', '145', '2', '34', '驼色', '1', 'https://cdn.viperky.com/storage/images/20180810/xqwAezk5X6.png', '2018-08-10 17:24:45', '2018-08-16 16:57:05', null);
  6303. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1058', '145', '1', '40', '90', '2', '', '2018-08-10 17:24:45', '2018-08-16 16:57:05', null);
  6304. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1059', '145', '1', '41', '100', '2', '', '2018-08-10 17:24:45', '2018-08-16 16:57:05', null);
  6305. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1060', '145', '1', '42', '110', '2', '', '2018-08-10 17:24:45', '2018-08-16 16:57:05', null);
  6306. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1061', '145', '1', '43', '120', '2', '', '2018-08-10 17:24:45', '2018-08-16 16:57:05', null);
  6307. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1062', '145', '1', '44', '130', '2', '', '2018-08-10 17:24:45', '2018-08-16 16:57:05', null);
  6308. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1063', '146', '2', '35', '浅灰', '1', 'https://cdn.viperky.com/storage/images/20180813/YALOsk1L8O.png', '2018-08-13 14:28:02', '2018-08-16 16:54:00', null);
  6309. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1064', '146', '2', '38', '杏色', '1', 'https://cdn.viperky.com/storage/images/20180813/iciNZAmAoV.png', '2018-08-13 14:28:02', '2018-08-16 16:54:00', null);
  6310. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1065', '146', '1', '40', '90', '2', '', '2018-08-13 14:28:02', '2018-08-16 16:54:00', null);
  6311. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1066', '146', '1', '41', '100', '2', '', '2018-08-13 14:28:02', '2018-08-16 16:54:00', null);
  6312. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1067', '146', '1', '42', '110', '2', '', '2018-08-13 14:28:02', '2018-08-16 16:54:00', null);
  6313. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1068', '146', '1', '43', '120', '2', '', '2018-08-13 14:28:02', '2018-08-16 16:54:00', null);
  6314. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1069', '146', '1', '44', '130', '2', '', '2018-08-13 14:28:02', '2018-08-16 16:54:00', null);
  6315. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1070', '147', '2', '16', '宝蓝色', '1', 'https://cdn.viperky.com/storage/images/20180813/g1BgCopwtL.png', '2018-08-13 14:37:18', '2018-08-20 17:01:05', null);
  6316. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1071', '147', '2', '27', '咖啡色', '1', 'https://cdn.viperky.com/storage/images/20180813/Jhgi5R0eUO.png', '2018-08-13 14:37:18', '2018-08-20 17:01:05', null);
  6317. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1072', '147', '1', '40', '90', '2', '', '2018-08-13 14:37:18', '2018-08-20 17:01:05', null);
  6318. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1073', '147', '1', '41', '100', '2', '', '2018-08-13 14:37:18', '2018-08-20 17:01:05', null);
  6319. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1074', '147', '1', '42', '110', '2', '', '2018-08-13 14:37:18', '2018-08-20 17:01:05', null);
  6320. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1075', '147', '1', '43', '120', '2', '', '2018-08-13 14:37:18', '2018-08-20 17:01:05', null);
  6321. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1076', '147', '1', '44', '130', '2', '', '2018-08-13 14:37:18', '2018-08-20 17:01:05', null);
  6322. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1077', '147', '1', '45', '140', '2', '', '2018-08-13 14:37:18', '2018-08-20 17:01:05', null);
  6323. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1078', '148', '2', '8', '暗红色', '1', 'https://cdn.viperky.com/storage/images/20180813/9b5mVdrHGV.png', '2018-08-13 15:00:20', '2018-09-11 16:49:33', null);
  6324. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1079', '148', '2', '27', '咖啡色', '1', 'https://cdn.viperky.com/storage/images/20180813/qkj4lnbcgs.png', '2018-08-13 15:00:20', '2018-09-11 16:49:33', null);
  6325. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1080', '148', '1', '40', '90', '2', '', '2018-08-13 15:00:20', '2018-09-11 16:49:33', null);
  6326. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1081', '148', '1', '41', '100', '2', '', '2018-08-13 15:00:20', '2018-09-11 16:49:33', null);
  6327. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1082', '148', '1', '42', '110', '2', '', '2018-08-13 15:00:20', '2018-09-11 16:49:33', null);
  6328. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1083', '148', '1', '43', '120', '2', '', '2018-08-13 15:00:20', '2018-09-11 16:49:33', null);
  6329. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1084', '148', '1', '44', '130', '2', '', '2018-08-13 15:00:20', '2018-09-11 16:49:33', null);
  6330. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1085', '149', '2', '11', '绿色', '1', 'https://cdn.viperky.com/storage/images/20180813/IF3v3q87yp.png', '2018-08-13 15:30:58', '2018-08-16 17:00:34', null);
  6331. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1086', '149', '2', '37', '深灰色', '1', 'https://cdn.viperky.com/storage/images/20180813/MBbOcYU3EY.png', '2018-08-13 15:30:58', '2018-08-16 17:00:34', null);
  6332. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1087', '149', '2', '47', '黄色', '1', 'https://cdn.viperky.com/storage/images/20180813/fwirLY3Oyt.png', '2018-08-13 15:30:58', '2018-08-16 17:00:34', null);
  6333. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1088', '149', '1', '40', '90', '2', '', '2018-08-13 15:30:58', '2018-08-16 17:00:34', null);
  6334. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1089', '149', '1', '41', '100', '2', '', '2018-08-13 15:30:58', '2018-08-16 17:00:34', null);
  6335. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1090', '149', '1', '42', '110', '2', '', '2018-08-13 15:30:58', '2018-08-16 17:00:34', null);
  6336. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1091', '149', '1', '43', '120', '2', '', '2018-08-13 15:30:58', '2018-08-16 17:00:34', null);
  6337. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1092', '149', '1', '44', '130', '2', '', '2018-08-13 15:30:58', '2018-08-16 17:00:34', null);
  6338. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1093', '149', '1', '45', '140', '2', '', '2018-08-13 15:30:59', '2018-08-16 17:00:34', null);
  6339. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1094', '150', '2', '9', '军绿色', '1', 'https://cdn.viperky.com/storage/images/20180813/r6n7N1G40Z.png', '2018-08-13 15:40:15', '2018-08-28 09:06:39', null);
  6340. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1095', '150', '2', '31', '土黄色', '1', 'https://cdn.viperky.com/storage/images/20180813/OkJUPR6Wxp.png', '2018-08-13 15:40:15', '2018-08-28 09:06:39', null);
  6341. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1096', '150', '1', '40', '90', '2', '', '2018-08-13 15:40:15', '2018-08-28 09:06:39', null);
  6342. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1097', '150', '1', '41', '100', '2', '', '2018-08-13 15:40:15', '2018-08-28 09:06:39', null);
  6343. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1098', '150', '1', '42', '110', '2', '', '2018-08-13 15:40:15', '2018-08-28 09:06:39', null);
  6344. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1099', '150', '1', '43', '120', '2', '', '2018-08-13 15:40:15', '2018-08-28 09:06:39', null);
  6345. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1100', '150', '1', '44', '130', '2', '', '2018-08-13 15:40:15', '2018-08-28 09:06:39', null);
  6346. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1101', '151', '2', '37', '灰色', '1', 'https://cdn.viperky.com/storage/images/20180813/zjdpk2oK4z.png', '2018-08-13 16:00:04', '2018-08-16 16:56:22', null);
  6347. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1102', '151', '1', '40', '90', '2', '', '2018-08-13 16:00:04', '2018-08-16 16:56:22', null);
  6348. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1103', '151', '1', '41', '100', '2', '', '2018-08-13 16:00:04', '2018-08-16 16:56:22', null);
  6349. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1104', '151', '1', '42', '110', '2', '', '2018-08-13 16:00:04', '2018-08-16 16:56:22', null);
  6350. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1105', '151', '1', '43', '120', '2', '', '2018-08-13 16:00:04', '2018-08-16 16:56:22', null);
  6351. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1106', '151', '1', '44', '130', '2', '', '2018-08-13 16:00:04', '2018-08-16 16:56:22', null);
  6352. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1107', '152', '2', '1', '黑色', '1', 'https://cdn.viperky.com/storage/images/20180813/fIsQDqeg8V.png', '2018-08-13 16:44:41', '2018-09-11 18:11:11', null);
  6353. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1108', '152', '2', '2', '橘色', '1', 'https://cdn.viperky.com/storage/images/20180813/DtGEJZIZ9F.png', '2018-08-13 16:44:41', '2018-09-11 18:11:11', null);
  6354. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1109', '152', '2', '11', '绿色', '1', 'https://cdn.viperky.com/storage/images/20180813/nbyYlW3Tku.png', '2018-08-13 16:44:41', '2018-09-11 18:11:11', null);
  6355. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1110', '152', '2', '19', '湖蓝色', '1', 'https://cdn.viperky.com/storage/images/20180813/Sr9A1bePYq.png', '2018-08-13 16:44:41', '2018-09-11 18:11:11', null);
  6356. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1111', '152', '2', '26', '紫色', '1', 'https://cdn.viperky.com/storage/images/20180813/xkDXKpvuOE.png', '2018-08-13 16:44:41', '2018-09-11 18:11:11', null);
  6357. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1112', '152', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180813/dqxlrM9BoJ.png', '2018-08-13 16:44:41', '2018-09-11 18:11:11', null);
  6358. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1113', '152', '1', '40', '90', '2', '', '2018-08-13 16:44:41', '2018-09-11 18:11:11', null);
  6359. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1114', '152', '1', '41', '100', '2', '', '2018-08-13 16:44:41', '2018-09-11 18:11:11', null);
  6360. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1115', '152', '1', '42', '110', '2', '', '2018-08-13 16:44:41', '2018-09-11 18:11:11', null);
  6361. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1116', '152', '1', '43', '120', '2', '', '2018-08-13 16:44:41', '2018-09-11 18:11:11', null);
  6362. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1117', '152', '1', '44', '130', '2', '', '2018-08-13 16:44:41', '2018-09-11 18:11:11', null);
  6363. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1118', '152', '1', '45', '140', '2', '', '2018-08-13 16:44:41', '2018-09-11 18:11:11', null);
  6364. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1119', '153', '2', '1', '黑色', '1', 'https://cdn.viperky.com/storage/images/20180813/wM0lsjC1u6.png', '2018-08-13 17:16:09', '2018-09-11 16:48:52', null);
  6365. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1120', '153', '1', '40', '90', '2', '', '2018-08-13 17:16:09', '2018-09-11 16:48:52', null);
  6366. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1121', '153', '1', '41', '100', '2', '', '2018-08-13 17:16:09', '2018-09-11 16:48:52', null);
  6367. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1122', '153', '1', '42', '110', '2', '', '2018-08-13 17:16:09', '2018-09-11 16:48:52', null);
  6368. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1123', '153', '1', '43', '120', '2', '', '2018-08-13 17:16:09', '2018-09-11 16:48:52', null);
  6369. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1124', '153', '1', '44', '130', '2', '', '2018-08-13 17:16:09', '2018-09-11 16:48:52', null);
  6370. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1125', '153', '1', '45', '140', '2', '', '2018-08-13 17:16:09', '2018-09-11 16:48:52', null);
  6371. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1126', '154', '2', '4', '粉色', '1', 'https://cdn.viperky.com/storage/images/20180816/0fBZncQVlK.png', '2018-08-16 14:34:30', '2018-09-06 16:59:47', null);
  6372. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1127', '154', '2', '31', '米色', '1', 'https://cdn.viperky.com/storage/images/20180816/6z7z8YS7A9.png', '2018-08-16 14:34:30', '2018-09-06 16:59:47', null);
  6373. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1128', '154', '1', '40', '90', '2', '', '2018-08-16 14:34:30', '2018-09-06 16:59:47', null);
  6374. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1129', '154', '1', '41', '100', '2', '', '2018-08-16 14:34:30', '2018-09-06 16:59:47', null);
  6375. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1130', '154', '1', '42', '110', '2', '', '2018-08-16 14:34:30', '2018-09-06 16:59:47', null);
  6376. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1131', '154', '1', '43', '120', '2', '', '2018-08-16 14:34:30', '2018-09-06 16:59:47', null);
  6377. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1132', '154', '1', '44', '130', '2', '', '2018-08-16 14:34:30', '2018-09-06 16:59:47', null);
  6378. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1133', '155', '2', '31', '杏色', '1', 'https://cdn.viperky.com/storage/images/20180816/Y578APiQ2d.png', '2018-08-16 14:43:49', '2018-08-16 16:58:50', null);
  6379. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1134', '155', '2', '34', '驼色', '1', 'https://cdn.viperky.com/storage/images/20180816/zdCZf4Ag4x.png', '2018-08-16 14:43:49', '2018-08-16 16:58:50', null);
  6380. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1135', '155', '1', '40', '90', '2', '', '2018-08-16 14:43:49', '2018-08-16 16:58:50', null);
  6381. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1136', '155', '1', '41', '100', '2', '', '2018-08-16 14:43:49', '2018-08-16 16:58:50', null);
  6382. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1137', '155', '1', '42', '110', '2', '', '2018-08-16 14:43:49', '2018-08-16 16:58:50', null);
  6383. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1138', '155', '1', '43', '120', '2', '', '2018-08-16 14:43:49', '2018-08-16 16:58:50', null);
  6384. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1139', '155', '1', '44', '130', '2', '', '2018-08-16 14:43:49', '2018-08-16 16:58:50', null);
  6385. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1140', '156', '2', '8', '锈红', '1', 'https://cdn.viperky.com/storage/images/20180816/jVN3mDSAyL.png', '2018-08-16 15:00:34', '2018-09-11 16:48:28', null);
  6386. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1141', '156', '2', '28', '芥黄', '1', 'https://cdn.viperky.com/storage/images/20180816/KhtwlEN1TI.png', '2018-08-16 15:00:34', '2018-09-11 16:48:28', null);
  6387. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1142', '156', '1', '40', '90', '2', '', '2018-08-16 15:00:34', '2018-09-11 16:48:28', null);
  6388. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1143', '156', '1', '41', '100', '2', '', '2018-08-16 15:00:34', '2018-09-11 16:48:28', null);
  6389. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1144', '156', '1', '42', '110', '2', '', '2018-08-16 15:00:34', '2018-09-11 16:48:28', null);
  6390. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1145', '156', '1', '43', '120', '2', '', '2018-08-16 15:00:34', '2018-09-11 16:48:28', null);
  6391. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1146', '156', '1', '44', '130', '2', '', '2018-08-16 15:00:34', '2018-09-11 16:48:28', null);
  6392. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1147', '157', '2', '21', '牛仔蓝', '1', 'https://cdn.viperky.com/storage/images/20180816/yDJj8HWPfM.png', '2018-08-16 15:11:31', '2018-08-20 17:00:55', null);
  6393. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1148', '157', '1', '40', '90', '2', '', '2018-08-16 15:11:31', '2018-08-20 17:00:55', null);
  6394. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1149', '157', '1', '41', '100', '2', '', '2018-08-16 15:11:31', '2018-08-20 17:00:55', null);
  6395. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1150', '157', '1', '42', '110', '2', '', '2018-08-16 15:11:31', '2018-08-20 17:00:55', null);
  6396. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1151', '157', '1', '43', '120', '2', '', '2018-08-16 15:11:31', '2018-08-20 17:00:55', null);
  6397. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1152', '157', '1', '44', '130', '2', '', '2018-08-16 15:11:31', '2018-08-20 17:00:55', null);
  6398. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1153', '157', '1', '45', '140', '2', '', '2018-08-16 15:11:31', '2018-08-20 17:00:55', null);
  6399. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1154', '158', '2', '1', '黑色', '1', 'https://cdn.viperky.com/storage/images/20180816/Wk23CRQU7E.png', '2018-08-16 15:38:29', '2018-08-16 15:38:29', null);
  6400. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1155', '158', '2', '5', '红色', '1', 'https://cdn.viperky.com/storage/images/20180816/CQwxax7Kjq.png', '2018-08-16 15:38:29', '2018-08-16 15:38:29', null);
  6401. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1156', '158', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180816/VXLyG0o5M0.png', '2018-08-16 15:38:29', '2018-08-16 15:38:29', null);
  6402. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1157', '158', '2', '47', '黄色', '1', 'https://cdn.viperky.com/storage/images/20180816/QZYBrVed4y.png', '2018-08-16 15:38:29', '2018-08-16 15:38:29', null);
  6403. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1158', '158', '1', '39', '(48-54cm)仅参考', '2', '', '2018-08-16 15:38:29', '2018-08-16 15:38:29', null);
  6404. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1159', '159', '2', '27', '咖啡色', '1', 'https://cdn.viperky.com/storage/images/20180816/bsNNrRkRCL.png', '2018-08-16 16:18:30', '2018-08-16 16:18:30', null);
  6405. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1160', '159', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180816/RoKLcUSx8E.png', '2018-08-16 16:18:30', '2018-08-16 16:18:30', null);
  6406. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1161', '159', '2', '47', '黄色', '1', 'https://cdn.viperky.com/storage/images/20180816/ha6H3CiLQf.png', '2018-08-16 16:18:30', '2018-08-16 16:18:30', null);
  6407. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1162', '159', '1', '39', '3-10岁', '2', '', '2018-08-16 16:18:30', '2018-08-16 16:18:30', null);
  6408. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1163', '160', '2', '1', '黑色', '1', 'https://cdn.viperky.com/storage/images/20180816/gGEaKOJX3c.png', '2018-08-16 16:29:29', '2018-08-16 16:29:29', null);
  6409. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1164', '160', '2', '28', '焦糖色', '1', 'https://cdn.viperky.com/storage/images/20180816/OGs6xnm898.png', '2018-08-16 16:29:29', '2018-08-16 16:29:29', null);
  6410. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1165', '160', '2', '46', '米色', '1', 'https://cdn.viperky.com/storage/images/20180816/lq7rNXtE4q.png', '2018-08-16 16:29:29', '2018-08-16 16:29:29', null);
  6411. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1166', '160', '2', '47', '黄色', '1', 'https://cdn.viperky.com/storage/images/20180816/BNwvx6kix1.png', '2018-08-16 16:29:29', '2018-08-16 16:29:29', null);
  6412. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1167', '160', '1', '39', '儿童款53cm左右', '2', '', '2018-08-16 16:29:29', '2018-08-16 16:29:29', null);
  6413. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1168', '161', '2', '8', '深红色', '1', 'https://cdn.viperky.com/storage/images/20180816/gh1HdzM6Pm.png', '2018-08-16 16:40:48', '2018-09-12 08:56:06', null);
  6414. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1169', '161', '2', '47', '黄色', '1', 'https://cdn.viperky.com/storage/images/20180816/nwlYVaEIrg.png', '2018-08-16 16:40:48', '2018-09-12 08:56:06', null);
  6415. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1170', '161', '1', '39', '儿童52CM', '2', '', '2018-08-16 16:40:48', '2018-09-12 08:56:06', null);
  6416. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1171', '162', '2', '1', '黑色', '1', 'https://cdn.viperky.com/storage/images/20180816/ga7tuxzVpA.png', '2018-08-16 16:48:46', '2018-08-16 16:48:46', null);
  6417. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1172', '162', '2', '8', '酒红色', '1', 'https://cdn.viperky.com/storage/images/20180816/SHx7LtFFZc.png', '2018-08-16 16:48:46', '2018-08-16 16:48:46', null);
  6418. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1173', '162', '1', '39', '儿童款47-54cm', '2', '', '2018-08-16 16:48:46', '2018-08-16 16:48:46', null);
  6419. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1174', '162', '1', '40', '大人款55-60cm', '2', '', '2018-08-16 16:48:46', '2018-08-16 16:48:46', null);
  6420. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1175', '163', '2', '18', '牛仔蓝', '1', 'https://cdn.viperky.com/storage/images/20180827/rctyT0mhZS.png', '2018-08-27 14:10:50', '2018-08-27 14:10:50', null);
  6421. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1176', '163', '1', '42', '110', '2', '', '2018-08-27 14:10:50', '2018-08-27 14:10:50', null);
  6422. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1177', '163', '1', '43', '120', '2', '', '2018-08-27 14:10:50', '2018-08-27 14:10:50', null);
  6423. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1178', '163', '1', '44', '130', '2', '', '2018-08-27 14:10:50', '2018-08-27 14:10:50', null);
  6424. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1179', '163', '1', '45', '140', '2', '', '2018-08-27 14:10:50', '2018-08-27 14:10:50', null);
  6425. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1180', '164', '2', '4', '豆粉色', '1', 'https://cdn.viperky.com/storage/images/20180827/JLC5xrU98s.png', '2018-08-27 14:22:16', '2018-09-11 16:47:51', null);
  6426. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1181', '164', '2', '33', '咖啡色', '1', 'https://cdn.viperky.com/storage/images/20180827/4MJcqNmTvR.png', '2018-08-27 14:22:16', '2018-09-11 16:47:51', null);
  6427. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1182', '164', '1', '40', '90', '2', '', '2018-08-27 14:22:16', '2018-09-11 16:47:51', null);
  6428. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1183', '164', '1', '41', '100', '2', '', '2018-08-27 14:22:16', '2018-09-11 16:47:51', null);
  6429. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1184', '164', '1', '42', '110', '2', '', '2018-08-27 14:22:16', '2018-09-11 16:47:51', null);
  6430. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1185', '164', '1', '43', '120', '2', '', '2018-08-27 14:22:16', '2018-09-11 16:47:51', null);
  6431. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1186', '164', '1', '44', '130', '2', '', '2018-08-27 14:22:16', '2018-09-11 16:47:51', null);
  6432. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1187', '165', '2', '8', '暗红色', '1', 'https://cdn.viperky.com/storage/images/20180827/J6hqHS5HDo.png', '2018-08-27 14:39:45', '2018-08-27 14:39:45', null);
  6433. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1188', '165', '2', '11', '绿色', '1', 'https://cdn.viperky.com/storage/images/20180827/ggur6Qh4wY.png', '2018-08-27 14:39:45', '2018-08-27 14:39:45', null);
  6434. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1189', '165', '1', '40', '90', '2', '', '2018-08-27 14:39:45', '2018-08-27 14:39:45', null);
  6435. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1190', '165', '1', '41', '100', '2', '', '2018-08-27 14:39:45', '2018-08-27 14:39:45', null);
  6436. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1191', '165', '1', '42', '110', '2', '', '2018-08-27 14:39:45', '2018-08-27 14:39:45', null);
  6437. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1192', '165', '1', '43', '120', '2', '', '2018-08-27 14:39:45', '2018-08-27 14:39:45', null);
  6438. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1193', '165', '1', '44', '130', '2', '', '2018-08-27 14:39:45', '2018-08-27 14:39:45', null);
  6439. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1194', '166', '2', '1', '黑色', '1', 'https://cdn.viperky.com/storage/images/20180903/fKJl4QWcWM.png', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  6440. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1195', '166', '2', '4', '粉色', '1', 'https://cdn.viperky.com/storage/images/20180903/SpNjeBjGMV.png', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  6441. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1196', '166', '2', '14', '蓝色', '1', 'https://cdn.viperky.com/storage/images/20180903/U1DQvazsBQ.png', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  6442. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1197', '166', '2', '37', '灰色', '1', 'https://cdn.viperky.com/storage/images/20180903/eAtL5N92lV.png', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  6443. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1198', '166', '2', '46', '白色', '1', 'https://cdn.viperky.com/storage/images/20180903/xjLPe3CnSb.png', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  6444. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1199', '166', '1', '39', '21', '2', '', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  6445. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1200', '166', '1', '40', '22', '2', '', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  6446. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1201', '166', '1', '41', '23', '2', '', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  6447. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1202', '166', '1', '42', '24', '2', '', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  6448. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1203', '166', '1', '43', '25', '2', '', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  6449. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1204', '166', '1', '44', '26', '2', '', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  6450. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1205', '166', '1', '45', '27', '2', '', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  6451. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1206', '166', '1', '48', '28', '2', '', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  6452. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1207', '166', '1', '49', '29', '2', '', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  6453. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1208', '166', '1', '50', '30', '2', '', '2018-09-03 15:23:09', '2018-09-03 15:23:09', null);
  6454. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1209', '167', '2', '6', '粉色', '1', 'https://cdn.viperky.com/storage/images/20180903/QUyW00BfpV.png', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  6455. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1210', '167', '2', '21', '蓝色', '1', 'https://cdn.viperky.com/storage/images/20180903/PveMFlA7SR.png', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  6456. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1211', '167', '2', '35', '奶白色', '1', 'https://cdn.viperky.com/storage/images/20180903/IHgEPthEqk.png', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  6457. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1212', '167', '2', '36', '深灰色', '1', 'https://cdn.viperky.com/storage/images/20180903/oUfNwHIXcw.png', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  6458. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1213', '167', '1', '39', '21', '2', '', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  6459. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1214', '167', '1', '40', '22', '2', '', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  6460. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1215', '167', '1', '41', '23', '2', '', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  6461. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1216', '167', '1', '42', '24', '2', '', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  6462. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1217', '167', '1', '43', '25', '2', '', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  6463. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1218', '167', '1', '44', '26', '2', '', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  6464. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1219', '167', '1', '45', '27', '2', '', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  6465. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1220', '167', '1', '48', '28', '2', '', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  6466. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1221', '167', '1', '49', '29', '2', '', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  6467. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1222', '167', '1', '50', '30', '2', '', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  6468. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1223', '167', '1', '51', '31', '2', '', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  6469. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1224', '167', '1', '52', '32', '2', '', '2018-09-03 15:59:21', '2018-09-03 15:59:21', null);
  6470. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1225', '168', '2', '6', '藕粉色', '1', 'https://cdn.viperky.com/storage/images/20180903/7FwtCjc9qZ.png', '2018-09-03 16:16:41', '2018-09-03 16:16:41', null);
  6471. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1226', '168', '2', '36', '深灰色', '1', 'https://cdn.viperky.com/storage/images/20180903/JAVISj2oTI.png', '2018-09-03 16:16:41', '2018-09-03 16:16:41', null);
  6472. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1227', '168', '1', '39', '80', '2', '', '2018-09-03 16:16:41', '2018-09-03 16:16:41', null);
  6473. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1228', '168', '1', '40', '90', '2', '', '2018-09-03 16:16:41', '2018-09-03 16:16:41', null);
  6474. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1229', '168', '1', '41', '100', '2', '', '2018-09-03 16:16:41', '2018-09-03 16:16:41', null);
  6475. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1230', '168', '1', '42', '110', '2', '', '2018-09-03 16:16:41', '2018-09-03 16:16:41', null);
  6476. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1231', '168', '1', '43', '120', '2', '', '2018-09-03 16:16:41', '2018-09-03 16:16:41', null);
  6477. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1232', '168', '1', '44', '130', '2', '', '2018-09-03 16:16:41', '2018-09-03 16:16:41', null);
  6478. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1233', '168', '1', '45', '140', '2', '', '2018-09-03 16:16:41', '2018-09-03 16:16:41', null);
  6479. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1234', '169', '2', '1', '黑色', '1', 'https://cdn.viperky.com/storage/images/20180904/JbeC0QUpSA.jpg', '2018-09-04 19:07:50', '2018-09-06 12:04:17', null);
  6480. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1235', '169', '1', '39', '23', '2', '', '2018-09-04 19:07:50', '2018-09-06 12:04:17', null);
  6481. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1236', '169', '1', '40', '24', '2', '', '2018-09-04 19:07:50', '2018-09-06 12:04:17', null);
  6482. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1237', '169', '1', '41', '25', '2', '', '2018-09-04 19:07:50', '2018-09-06 12:04:17', null);
  6483. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1238', '169', '1', '42', '26', '2', '', '2018-09-04 19:07:50', '2018-09-06 12:04:17', null);
  6484. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1239', '169', '1', '43', '27', '2', '', '2018-09-04 19:07:50', '2018-09-06 12:04:17', null);
  6485. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1240', '169', '1', '44', '28', '2', '', '2018-09-04 19:07:50', '2018-09-06 12:04:17', null);
  6486. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1241', '169', '1', '45', '29', '2', '', '2018-09-04 19:07:50', '2018-09-06 12:04:17', null);
  6487. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1242', '169', '1', '48', '30', '2', '', '2018-09-04 19:07:50', '2018-09-06 12:04:17', null);
  6488. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1243', '170', '2', '1', '黑色', '1', 'https://cdn.viperky.com/storage/images/20180904/y9bgi2zoQq.jpg', '2018-09-04 19:36:48', '2018-09-11 16:46:59', null);
  6489. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1244', '170', '2', '4', '粉色', '1', 'https://cdn.viperky.com/storage/images/20180906/t1ZlACdicX.jpg', '2018-09-04 19:36:48', '2018-09-11 16:46:59', null);
  6490. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1245', '170', '2', '5', '红色', '1', 'https://cdn.viperky.com/storage/images/20180904/wb0PHHXZO7.jpg', '2018-09-04 19:36:48', '2018-09-11 16:46:59', null);
  6491. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1246', '170', '2', '18', '深蓝色', '1', 'https://cdn.viperky.com/storage/images/20180904/ak3jToL9NB.jpg', '2018-09-04 19:36:48', '2018-09-11 16:46:59', null);
  6492. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1247', '170', '2', '26', '紫色', '1', 'https://cdn.viperky.com/storage/images/20180906/4J4I0ZgkE8.jpg', '2018-09-04 19:36:48', '2018-09-11 16:46:59', null);
  6493. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1248', '170', '2', '27', '咖啡色', '1', 'https://cdn.viperky.com/storage/images/20180904/uyerswb1MF.jpg', '2018-09-04 19:36:48', '2018-09-11 16:46:59', null);
  6494. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1249', '170', '2', '35', '浅灰色', '1', 'https://cdn.viperky.com/storage/images/20180904/I0ofTMxBPw.jpg', '2018-09-04 19:36:48', '2018-09-11 16:46:59', null);
  6495. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1250', '170', '2', '36', '深灰色', '1', 'https://cdn.viperky.com/storage/images/20180904/OXoH1ONvNw.jpg', '2018-09-04 19:36:48', '2018-09-11 16:46:59', null);
  6496. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1251', '170', '1', '39', '1-4岁(小童款)', '2', '', '2018-09-04 19:36:48', '2018-09-11 16:46:59', null);
  6497. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1252', '170', '1', '40', '3-8岁(中童款)', '2', '', '2018-09-04 19:36:48', '2018-09-11 16:46:59', null);
  6498. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1253', '171', '2', '4', '白+粉(女童)', '1', 'https://cdn.viperky.com/storage/images/20180904/Nehd7t9F4O.jpg', '2018-09-04 20:03:02', '2018-09-04 20:03:02', null);
  6499. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1254', '171', '2', '10', '粉+绿(女童)', '1', 'https://cdn.viperky.com/storage/images/20180904/2xRPAlw3nK.jpg', '2018-09-04 20:03:02', '2018-09-04 20:03:02', null);
  6500. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1255', '171', '2', '46', '黄+黑(男童)', '1', 'https://cdn.viperky.com/storage/images/20180904/JtQyoOYvut.jpg', '2018-09-04 20:03:02', '2018-09-04 20:03:02', null);
  6501. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1256', '171', '1', '41', '100', '2', '', '2018-09-04 20:03:02', '2018-09-04 20:03:02', null);
  6502. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1257', '171', '1', '42', '110', '2', '', '2018-09-04 20:03:02', '2018-09-04 20:03:02', null);
  6503. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1258', '171', '1', '43', '120', '2', '', '2018-09-04 20:03:02', '2018-09-04 20:03:02', null);
  6504. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1259', '171', '1', '44', '130', '2', '', '2018-09-04 20:03:02', '2018-09-04 20:03:02', null);
  6505. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1260', '172', '2', '2', '橘夹蓝', '1', 'https://cdn.viperky.com/storage/images/20180905/knVUrCyrJ5.jpg', '2018-09-05 14:27:18', '2018-09-11 09:51:12', null);
  6506. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1261', '172', '2', '3', '玫红夹黑', '1', 'https://cdn.viperky.com/storage/images/20180905/NXECbxu5OR.jpg', '2018-09-05 14:27:18', '2018-09-11 09:51:12', null);
  6507. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1262', '172', '2', '4', '粉夹棕', '1', 'https://cdn.viperky.com/storage/images/20180905/OxvIe98CwP.jpg', '2018-09-05 14:27:18', '2018-09-11 09:51:12', null);
  6508. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1263', '172', '2', '8', '酒红色', '1', 'https://cdn.viperky.com/storage/images/20180905/5rOYiwemyU.jpg', '2018-09-05 14:27:18', '2018-09-11 09:51:12', null);
  6509. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1264', '172', '2', '11', '灰夹绿色', '1', 'https://cdn.viperky.com/storage/images/20180905/se32mGlySX.jpg', '2018-09-05 14:27:18', '2018-09-11 09:51:12', null);
  6510. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1265', '172', '2', '16', '蓝夹棕', '1', 'https://cdn.viperky.com/storage/images/20180905/j3wYTIsP5U.jpg', '2018-09-05 14:27:18', '2018-09-11 09:51:12', null);
  6511. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1266', '172', '2', '29', '栗夹蓝', '1', 'https://cdn.viperky.com/storage/images/20180905/Ow9liHp79N.jpg', '2018-09-05 14:27:18', '2018-09-11 09:51:12', null);
  6512. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1267', '172', '2', '31', '黄夹棕', '1', 'https://cdn.viperky.com/storage/images/20180905/Tm2n23JLjX.jpg', '2018-09-05 14:27:18', '2018-09-11 09:51:12', null);
  6513. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1268', '172', '2', '34', '棕夹红', '1', 'https://cdn.viperky.com/storage/images/20180905/fda5OHS80K.jpg', '2018-09-05 14:27:18', '2018-09-11 09:51:12', null);
  6514. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1269', '172', '2', '36', '灰夹玫红', '1', 'https://cdn.viperky.com/storage/images/20180905/ahzT9bet0k.jpg', '2018-09-05 14:27:18', '2018-09-11 09:51:12', null);
  6515. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1270', '172', '2', '47', '黄夹灰', '1', 'https://cdn.viperky.com/storage/images/20180905/zDd08dYnuX.jpg', '2018-09-05 14:27:18', '2018-09-11 09:51:12', null);
  6516. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1271', '172', '1', '39', '1-3岁', '2', '', '2018-09-05 14:27:18', '2018-09-11 09:51:12', null);
  6517. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1272', '172', '1', '40', '3-5岁', '2', '', '2018-09-05 14:27:18', '2018-09-11 09:51:12', null);
  6518. INSERT INTO `ibrand_goods_spec_relation` VALUES ('1273', '172', '1', '41', '5-8岁', '2', '', '2018-09-05 14:27:18', '2018-09-11 09:51:12', null);
  6519. -- ----------------------------
  6520. -- Table structure for ibrand_goods_spec_value
  6521. -- ----------------------------
  6522. DROP TABLE IF EXISTS `ibrand_goods_spec_value`;
  6523. CREATE TABLE `ibrand_goods_spec_value` (
  6524. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  6525. `spec_id` int(10) unsigned NOT NULL,
  6526. `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  6527. `rgb` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  6528. `color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  6529. `status` tinyint(4) NOT NULL DEFAULT '1',
  6530. `created_at` timestamp NULL DEFAULT NULL,
  6531. `updated_at` timestamp NULL DEFAULT NULL,
  6532. `deleted_at` timestamp NULL DEFAULT NULL,
  6533. PRIMARY KEY (`id`)
  6534. ) ENGINE=InnoDB AUTO_INCREMENT=69 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
  6535. -- ----------------------------
  6536. -- Records of ibrand_goods_spec_value
  6537. -- ----------------------------
  6538. INSERT INTO `ibrand_goods_spec_value` VALUES ('1', '2', '黑色', '000000', null, '1', null, null, null);
  6539. INSERT INTO `ibrand_goods_spec_value` VALUES ('2', '2', '橘红色', 'ff7500', null, '1', null, null, null);
  6540. INSERT INTO `ibrand_goods_spec_value` VALUES ('3', '2', '玫红色', 'df1b76', null, '1', null, null, null);
  6541. INSERT INTO `ibrand_goods_spec_value` VALUES ('4', '2', '粉红色', 'ffb6c1', null, '1', null, null, null);
  6542. INSERT INTO `ibrand_goods_spec_value` VALUES ('5', '2', '红色', 'ff0000', null, '1', null, null, null);
  6543. INSERT INTO `ibrand_goods_spec_value` VALUES ('6', '2', '藕色', 'eed0d8', null, '1', null, null, null);
  6544. INSERT INTO `ibrand_goods_spec_value` VALUES ('7', '2', '西瓜红', 'f05654', null, '1', null, null, null);
  6545. INSERT INTO `ibrand_goods_spec_value` VALUES ('8', '2', '酒红色', '990000', null, '1', null, null, null);
  6546. INSERT INTO `ibrand_goods_spec_value` VALUES ('9', '2', '军绿色', '5d762a', null, '1', null, null, null);
  6547. INSERT INTO `ibrand_goods_spec_value` VALUES ('10', '2', '浅绿色', '98fb98', null, '1', null, null, null);
  6548. INSERT INTO `ibrand_goods_spec_value` VALUES ('11', '2', '绿色', '008000', null, '1', null, null, null);
  6549. INSERT INTO `ibrand_goods_spec_value` VALUES ('12', '2', '翠绿色', '0aa344', null, '1', null, null, null);
  6550. INSERT INTO `ibrand_goods_spec_value` VALUES ('13', '2', '青色', '00e09e', null, '1', null, null, null);
  6551. INSERT INTO `ibrand_goods_spec_value` VALUES ('14', '2', '天蓝色', '44cef6', null, '1', null, null, null);
  6552. INSERT INTO `ibrand_goods_spec_value` VALUES ('15', '2', '孔雀蓝', '00a4c5', null, '1', null, null, null);
  6553. INSERT INTO `ibrand_goods_spec_value` VALUES ('16', '2', '宝蓝色', '4b5cc4', null, '1', null, null, null);
  6554. INSERT INTO `ibrand_goods_spec_value` VALUES ('17', '2', '浅蓝色', 'd2f0f4', null, '1', null, null, null);
  6555. INSERT INTO `ibrand_goods_spec_value` VALUES ('18', '2', '深蓝色', '041690', null, '1', null, null, null);
  6556. INSERT INTO `ibrand_goods_spec_value` VALUES ('19', '2', '湖蓝色', '30dff3', null, '1', null, null, null);
  6557. INSERT INTO `ibrand_goods_spec_value` VALUES ('20', '2', '蓝色', '0000fe', null, '1', null, null, null);
  6558. INSERT INTO `ibrand_goods_spec_value` VALUES ('21', '2', '藏青色', '2e4e7e', null, '1', null, null, null);
  6559. INSERT INTO `ibrand_goods_spec_value` VALUES ('22', '2', '浅紫色', 'ede0e6', null, '1', null, null, null);
  6560. INSERT INTO `ibrand_goods_spec_value` VALUES ('23', '2', '深紫色', '430653', null, '1', null, null, null);
  6561. INSERT INTO `ibrand_goods_spec_value` VALUES ('24', '2', '紫红色', '8b0062', null, '1', null, null, null);
  6562. INSERT INTO `ibrand_goods_spec_value` VALUES ('25', '2', '紫罗兰', 'b7ace4', null, '1', null, null, null);
  6563. INSERT INTO `ibrand_goods_spec_value` VALUES ('26', '2', '紫色', '800080', null, '1', null, null, null);
  6564. INSERT INTO `ibrand_goods_spec_value` VALUES ('27', '2', '咖啡色', '603912', null, '1', null, null, null);
  6565. INSERT INTO `ibrand_goods_spec_value` VALUES ('28', '2', '巧克力色', 'd2691e', null, '1', null, null, null);
  6566. INSERT INTO `ibrand_goods_spec_value` VALUES ('29', '2', '栗色', '60281e', null, '1', null, null, null);
  6567. INSERT INTO `ibrand_goods_spec_value` VALUES ('30', '2', '浅棕色', 'b35c44', null, '1', null, null, null);
  6568. INSERT INTO `ibrand_goods_spec_value` VALUES ('31', '2', '深卡其布色', 'bdb76b', null, '1', null, null, null);
  6569. INSERT INTO `ibrand_goods_spec_value` VALUES ('32', '2', '深棕色', '7c4b00', null, '1', null, null, null);
  6570. INSERT INTO `ibrand_goods_spec_value` VALUES ('33', '2', '褐色', '855b00', null, '1', null, null, null);
  6571. INSERT INTO `ibrand_goods_spec_value` VALUES ('34', '2', '驼色', 'a88462', null, '1', null, null, null);
  6572. INSERT INTO `ibrand_goods_spec_value` VALUES ('35', '2', '浅灰色', 'e4e4e4', null, '1', null, null, null);
  6573. INSERT INTO `ibrand_goods_spec_value` VALUES ('36', '2', '深灰色', '666666', null, '1', null, null, null);
  6574. INSERT INTO `ibrand_goods_spec_value` VALUES ('37', '2', '灰色', '808080', null, '1', null, null, null);
  6575. INSERT INTO `ibrand_goods_spec_value` VALUES ('38', '2', '银色', 'c0c0c0', null, '1', null, null, null);
  6576. INSERT INTO `ibrand_goods_spec_value` VALUES ('39', '1', '80', null, null, '1', '2017-05-11 11:28:33', '2017-05-11 11:28:33', null);
  6577. INSERT INTO `ibrand_goods_spec_value` VALUES ('40', '1', '90', null, null, '1', '2017-05-11 11:28:33', '2017-05-11 11:28:33', null);
  6578. INSERT INTO `ibrand_goods_spec_value` VALUES ('41', '1', '100', null, null, '1', '2017-05-11 11:28:33', '2017-05-11 11:28:33', null);
  6579. INSERT INTO `ibrand_goods_spec_value` VALUES ('42', '1', '110', null, null, '1', '2017-05-11 11:28:33', '2017-05-11 11:28:33', null);
  6580. INSERT INTO `ibrand_goods_spec_value` VALUES ('43', '1', '120', null, null, '1', '2017-05-11 11:28:33', '2017-05-11 11:28:33', null);
  6581. INSERT INTO `ibrand_goods_spec_value` VALUES ('44', '1', '130', null, null, '1', '2017-05-11 11:28:33', '2017-05-11 11:28:33', null);
  6582. INSERT INTO `ibrand_goods_spec_value` VALUES ('45', '1', '140', null, null, '1', '2017-05-11 11:28:33', '2017-05-11 11:28:33', null);
  6583. INSERT INTO `ibrand_goods_spec_value` VALUES ('46', '2', '白色', null, null, '1', '2017-05-15 15:18:24', '2017-05-15 15:18:24', null);
  6584. INSERT INTO `ibrand_goods_spec_value` VALUES ('47', '2', '黄色', null, null, '1', '2017-05-15 16:47:59', '2017-05-15 16:47:59', null);
  6585. INSERT INTO `ibrand_goods_spec_value` VALUES ('48', '1', '通用', null, null, '1', '2017-09-22 13:18:08', '2017-09-22 13:18:08', null);
  6586. INSERT INTO `ibrand_goods_spec_value` VALUES ('49', '1', '妈妈S码', null, null, '1', '2018-05-15 10:23:53', '2018-05-15 10:23:53', null);
  6587. INSERT INTO `ibrand_goods_spec_value` VALUES ('50', '1', '妈妈M码', null, null, '1', '2018-05-15 10:23:53', '2018-05-15 10:23:53', null);
  6588. INSERT INTO `ibrand_goods_spec_value` VALUES ('51', '1', '爸爸L码', null, null, '1', '2018-05-15 10:23:53', '2018-05-15 10:23:53', null);
  6589. INSERT INTO `ibrand_goods_spec_value` VALUES ('52', '1', '爸爸XL码', null, null, '1', '2018-05-15 10:23:53', '2018-05-15 10:23:53', null);
  6590. INSERT INTO `ibrand_goods_spec_value` VALUES ('53', '1', '5码【90CM】套装', null, null, '1', '2018-05-15 10:26:12', '2018-05-15 10:26:12', null);
  6591. INSERT INTO `ibrand_goods_spec_value` VALUES ('54', '1', '7码【100CM】套装', null, null, '1', '2018-05-15 10:26:12', '2018-05-15 10:26:12', null);
  6592. INSERT INTO `ibrand_goods_spec_value` VALUES ('55', '1', '9码【110CM】套装', null, null, '1', '2018-05-15 10:26:12', '2018-05-15 10:26:12', null);
  6593. INSERT INTO `ibrand_goods_spec_value` VALUES ('56', '1', '11码【120CM】套装', null, null, '1', '2018-05-15 10:26:12', '2018-05-15 10:26:12', null);
  6594. INSERT INTO `ibrand_goods_spec_value` VALUES ('57', '1', '13码【130CM】套装', null, null, '1', '2018-05-15 10:26:12', '2018-05-15 10:26:12', null);
  6595. INSERT INTO `ibrand_goods_spec_value` VALUES ('58', '1', '妈妈S码 套装', null, null, '1', '2018-05-15 10:26:12', '2018-05-15 10:26:12', null);
  6596. INSERT INTO `ibrand_goods_spec_value` VALUES ('59', '1', '妈妈M码 套装 ', null, null, '1', '2018-05-15 10:26:12', '2018-05-15 10:26:12', null);
  6597. INSERT INTO `ibrand_goods_spec_value` VALUES ('60', '1', '妈妈均码', null, null, '1', '2018-05-15 10:27:18', '2018-05-15 10:27:18', null);
  6598. INSERT INTO `ibrand_goods_spec_value` VALUES ('61', '1', '爸爸均码', null, null, '1', '2018-05-15 16:31:59', '2018-05-15 16:31:59', null);
  6599. INSERT INTO `ibrand_goods_spec_value` VALUES ('62', '1', '30个/袋', null, null, '1', '2018-06-05 15:57:45', '2018-06-05 15:57:45', null);
  6600. INSERT INTO `ibrand_goods_spec_value` VALUES ('63', '1', '75*105加绒', null, null, '1', '2018-06-05 16:37:09', '2018-06-05 16:37:09', null);
  6601. INSERT INTO `ibrand_goods_spec_value` VALUES ('64', '1', '75*105单层', null, null, '1', '2018-06-05 16:37:09', '2018-06-05 16:37:09', null);
  6602. INSERT INTO `ibrand_goods_spec_value` VALUES ('65', '1', '110*130加绒', null, null, '1', '2018-06-05 16:37:09', '2018-06-05 16:37:09', null);
  6603. INSERT INTO `ibrand_goods_spec_value` VALUES ('66', '1', '110*130单层', null, null, '1', '2018-06-05 16:37:10', '2018-06-05 16:37:10', null);
  6604. INSERT INTO `ibrand_goods_spec_value` VALUES ('67', '1', '75*105羊羔绒', null, null, '1', '2018-06-05 16:37:10', '2018-06-05 16:37:10', null);
  6605. INSERT INTO `ibrand_goods_spec_value` VALUES ('68', '1', '110*130羊羔绒', null, null, '1', '2018-06-05 16:37:10', '2018-06-05 16:37:10', null);